:root {
    --primary-color: #ff6b00;
    /* Orange Theme */
    --secondary-color: #1a1a1a;
    --text-color: #666;
    --light-bg: #f9f9f9;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Utility Classes */
.text-orange {
    color: var(--primary-color) !important;
}

.bg-orange {
    background-color: var(--primary-color) !important;
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 2rem;
    color: var(--primary-color) !important;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Features / About */
.feature-box {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Menu Section */
.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.menu-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.price-tag {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    float: right;
}

/* Parallax Offer */
.offer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?q=80&w=1470&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

/* Team */
.chef-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    margin-bottom: 20px;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Reservation Form */
.reservation-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-control,
.form-select {
    padding: 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 70px 0 30px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #222;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background: var(--primary-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }
}