* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

:root {
    /* ======= Brand Color System ======= */
    --primary-color: #ff7b00;         /* Vibrant food orange */
    --secondary-color: #b34700;       /* Dark roasted orange (contrast) */
    --accent-color: #ffb347;          /* Light orange accent for highlights */
    
    /* ======= Text & Background ======= */
    --background-color: #fffaf3;      /* Warm creamy white background */
    --text-color: #2b2b2b;            /* Deep neutral text for readability */
    --text-warning: #ff3b3b;          /* Bold red for alerts */
    --text-success: #2ecc71;          /* Fresh green for success messages */

    /* ======= Borders & Cards ======= */
    --border-color: #e6d5c3;          /* Soft beige border */
    --card-background: #ffffff;       /* Clean card background */
    --card-shadow: rgba(255, 123, 0, 0.2); /* Subtle orange-tinted shadow */

    /* ======= Buttons ======= */
    --button-text: #fff;              /* White text for contrast */
    --button-cancel: #ff4d4d;         /* Strong cancel red */
    --button-active: #ffa41b;         /* Highlighted orange active button */
    --button-hover: #e56700;          /* Slightly darker hover state */

    /* ======= Button Sizes ======= */
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}

/* ===== Hero / Banner ===== */
.add-restaurant-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 5%;
    border-radius: 0 0 80px 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons a {
    margin-right: 15px;
}

.btn-primary {
    background: var(--button-active);
    color: var(--button-text);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--button-hover);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--button-text);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

.hero-image img {
    max-width: 450px;
    width: 100%;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 80px 5%;
    background: var(--background-color);
    text-align: center;
}

.benefits-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-background);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--card-shadow);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--card-shadow);
}

.benefit-card img {
    width: 80px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
