/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e9ecef;
    background: #0d1b2a;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --deep-teal: #0d1b2a;
    --dark-teal: #1b263b;
    --medium-teal: #415a77;
    --light-teal: #778da9;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --orange-accent: #e76f51;
    --warm-orange: #f4a261;
    --cream: #e9c46a;
    --off-white: #f8f9fa;
    --text-light: #e9ecef;
    --text-muted: #adb5bd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep-teal);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--deep-teal);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-teal);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gold);
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.cta-button {
    background: var(--gold);
    color: var(--deep-teal);
    padding: 8px 16px;
    border: 2px solid var(--gold);
    margin-left: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-link.cta-button:hover {
    background: var(--gold-light);
    color: var(--deep-teal);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(27, 38, 59, 0.9)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 100px 0 80px;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
    color: var(--gold-light);
}

/* Order Information Section */
.order-info {
    background: var(--gold);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.order-info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.order-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(13, 27, 42, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 100px;
    height: 100%;
}

.order-info-item:hover {
    background: rgba(13, 27, 42, 0.2);
    transform: translateY(-2px);
}

.order-info-item i {
    font-size: 1.5rem;
    color: var(--deep-teal);
    flex-shrink: 0;
}

.order-info-item p {
    margin: 0;
    color: var(--deep-teal);
    font-weight: 500;
    line-height: 1.4;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .order-info-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .order-info-item {
        padding: 1.25rem;
        text-align: center;
        min-height: 80px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .order-info-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Services Section */
.services {
    background: var(--deep-teal);
    position: relative;
    z-index: 2;
}

.services .section-header {
    padding: 2rem 0 1.5rem;
    text-align: center;
    background: var(--deep-teal);
}

.services .section-header .container {
    max-width: 1200px;
    padding: 0 24px;
}

.services .section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.services .section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services .container {
    max-width: none;
    padding: 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-card {
    display: flex;
    background: var(--dark-teal);
    border: 1px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.service-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: var(--dark-teal);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.emoji-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 500px;
}

/* Menu Variants Styling */
.menu-variants {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
}

.menu-variant {
    background: linear-gradient(135deg, var(--deep-teal), var(--dark-teal));
    border: 1px solid var(--medium-teal);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.menu-variant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-variant:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark-teal), var(--medium-teal));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.menu-variant:hover::before {
    opacity: 1;
}

.menu-variant h4 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.menu-variant p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.feature {
    background: transparent;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border: none;
    border-bottom: 1px solid var(--medium-teal);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.feature::before {
    content: '—';
    margin-right: 1rem;
    color: var(--gold);
}

/* SoulFood Delights Section */
.soulfood-delights {
    padding: 5rem 0;
    background: var(--dark-teal);
    position: relative;
    z-index: 2;
}

.soulfood-delights .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.soulfood-delights .section-title {
    color: var(--gold);
    margin-bottom: 1rem;
}

.soulfood-delights .section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.delights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.delight-card {
    background: var(--deep-teal);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.delight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.delight-card:hover::before {
    opacity: 1;
}

.delight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--deep-teal);
    transition: all 0.3s ease;
}

.delight-card:hover .delight-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold-light), var(--cream));
}

.delight-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.delight-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.delight-features li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.delight-features li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.delight-features li:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--deep-teal);
    position: relative;
    z-index: 2;
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery .section-title {
    color: var(--gold);
    margin-bottom: 1rem;
}

.gallery .section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    max-width: 350px;
    background: var(--dark-teal);
    border: 1px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* First 3 items take 2 columns each */
.gallery-item:nth-child(1) { grid-column: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 3 / 5; }
.gallery-item:nth-child(3) { grid-column: 5 / 7; }

/* Last 2 items centered */
.gallery-item:nth-child(4) { grid-column: 2 / 4; }
.gallery-item:nth-child(5) { grid-column: 4 / 6; }

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
    background: var(--dark-teal);
}

.gallery-caption h4 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.gallery-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        grid-column: auto !important;
        max-width: 400px;
        justify-self: center;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 1.25rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.125rem;
    }
    
    .gallery-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 3 / 5; }
    .gallery-item:nth-child(3) { grid-column: 2 / 4; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 3 / 5; grid-row: 3; }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--deep-teal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: var(--dark-teal);
    padding: 1.5rem;
    border: 1px solid var(--gold);
    flex: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
}

.stat h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat p {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-social {
    margin-top: 2rem;
}

.about-social h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-social .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--dark-teal);
}

.contact .section-title {
    color: var(--gold);
}

.contact .section-subtitle {
    color: var(--text-muted);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--deep-teal);
    padding: 1.5rem;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    font-size: 1rem;
    flex-shrink: 0;
    border-radius: 8px;
}

.contact-details h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-details p {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-form {
    background: var(--deep-teal);
    padding: 2rem;
    border: 1px solid var(--gold);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-teal);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--dark-teal);
    color: var(--text-light);
    font-family: inherit;
    border-radius: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--medium-teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--deep-teal);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 8px;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--deep-teal);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-teal);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 27, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services .section-header {
        padding: 3rem 0 2rem;
    }

    .services .section-title {
        font-size: 2rem;
    }

    .services .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        gap: 2rem;
        padding: 1rem;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card:nth-child(even) {
        flex-direction: column !important;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .menu-variants {
        gap: 1.5rem;
        max-width: 100%;
    }

    .menu-variant {
        padding: 2rem;
        border-radius: 8px;
    }

    .menu-variant h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .menu-variant p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .delights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .delight-card {
        padding: 1.5rem;
        min-height: 320px;
    }

    .delight-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .delight-features li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services .section-header {
        padding: 2rem 0 1.5rem;
    }

    .services .section-title {
        font-size: 1.75rem;
    }

    .services .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .service-image {
        min-height: 250px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .delights-grid {
        gap: 1rem;
    }

    .delight-card {
        padding: 1.5rem;
    }

    .delight-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .delight-features li {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
}

/* Removed custom scrollbar styling */
