* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Mixed theme colors */
    --primary-dark: #33271e;
    --secondary-dark: #473a2a;
    --light-bg: #f5f6fa;
    --light-section: #ffffff;
    --gold: #d4af37;
    --gold-light: #f4cf47;
    --text-light: #ffffff;
    --text-dark: #2a3447;
    --text-gray: #c4d1e4;
    --gradient: linear-gradient(135deg, #d4af37 0%, #f4cf47 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --logo-font: 'Outfit', sans-serif;
    --primary-color: #8B4513;     /* Warm brown - adjust to match logo */
    --secondary-color: #D2691E;   /* Darker orange-brown */
    --accent-color: #FFA500;      /* Orange accent */
    --background-color: #FFF9F2;  /* Warm white */
    --text-color: #2C1810;        /* Dark brown text */
    --light-text: #666;           /* Lighter text for subtitles */
    --card-bg: #FFFFFF;           /* Pure white for cards */
    --hover-color: #F4E4D4;       /* Light beige for hover states */
    --border-color: #E8D5C4;      /* Light brown borders */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Add elegant scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: var(--secondary-dark);
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* Modern Header */
header {
    position: fixed;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a i.fab.fa-instagram {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: brightness(1.2);
}

.nav-links a:hover i.fab.fa-instagram {
    transform: scale(1.2);
    filter: brightness(1.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-links a i.fab.fa-instagram {
        font-size: 1.4rem;  /* Slightly larger on mobile */
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(65px + 4rem);
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background: linear-gradient(rgba(10, 15, 28, 0.8), rgba(10, 15, 28, 0.8)),
                url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=2000&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--primary-dark) 100%);
    opacity: 0.7;
}

.hero-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    background: #33271e66;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
}

.hero h1 {
    font-family: var(--logo-font);
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

.hero p {
    font-family: var(--logo-font);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--primary-color);
    color: white;
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.2);
}

/* Menu Button */
.cta-button:first-child {
    background: var(--gradient);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Phone Button */
.phone-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.phone-button:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Directions Button */
.directions-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.directions-button:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(65px + 2rem);
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        width: 95%;
        padding: 2rem 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Delivery Platforms Enhancement */
.delivery-platforms {
    background: var(--light-section);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
}

.delivery-platforms p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Delivery Platform Buttons */
.platform-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.5rem;
    max-width: 600px;  /* Reduced from 900px */
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

/* Platform buttons and delivery links */
.platform-button {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

/* Coming soon badge styling */
.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--text-dark);
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.platform-button.disabled {
    opacity: 0.85;
    cursor: not-allowed;
    position: relative;
}

.platform-button.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 50%;
}

.platform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-button i {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.platform-button span {
    position: absolute;
    bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

/* Hover Effects */
.platform-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background-color: var(--hover-color);
}

.platform-button:hover::before {
    opacity: 1;
}

.platform-button:hover i {
    transform: scale(1.15) translateY(-5px);
}

.platform-button:hover span {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
    font-weight: 600;
}

/* Platform specific styles */
.platform-button.yemeksepeti {
    background: linear-gradient(45deg, #ff1a1a, #ff4d4d);
}

.platform-button.getir {
    background: linear-gradient(45deg, #5d3ebc, #7857d4);
}

.platform-button.trendyol {
    background: linear-gradient(45deg, #f27a1a, #ff9142);
}

.platform-button.migros {
    background: linear-gradient(45deg, #ff7f00, #ffa64d);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .platform-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 300px;  /* Adjusted for 2 columns */
    }
}

@media (max-width: 768px) {
    .platform-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }

    .platform-button {
        width: 110px;
        height: 110px;
    }

    .platform-button i {
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }

    .platform-button span {
        font-size: 0.8rem;
        bottom: 0.8rem;
    }
}

/* Additional Mobile Adjustments for very small screens */
@media (max-width: 480px) {
    .platform-links {
        transform: scale(0.9);
        transform-origin: center;
        margin: -1rem auto;
        /* width: 110%; */
        max-width: 280px;  /* Added max-width for small screens */
        gap: 0.75rem;  /* Reduced gap */
    }
}

/* Even smaller screens */
@media (max-width: 360px) {
    .platform-links {
        transform: scale(0.8);
        margin: -1.5rem auto;
        /* width: 120%; */
        max-width: 260px;  /* Even smaller max-width */
        gap: 0.5rem;  /* Further reduced gap */
    }
}

/* Campaigns Section */
.campaigns-section {
    background: var(--light-bg);
    padding: 8rem 2rem;
}

.campaigns-section h2 {
    color: var(--primary-dark);
    font-family: var(--logo-font);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.campaign-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-dark);
}

.campaign-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.campaign-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.campaign-price {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.campaign-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--logo-font);
    font-weight: 600;
}

.campaign-details {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.campaign-items {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-items li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.campaign-items li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Menu Section */
.menu-section {
    background: var(--primary-dark);
    padding: 8rem 2rem 2rem;  /* Added horizontal padding */
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;  /* Reduced margin */
    padding: 0 2rem;
    position: relative;
}

.section-header h2 {
    color: var(--gold);
    font-family: var(--logo-font);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;  /* Add padding to the grid */
}

.menu-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    padding: 0;
}

.menu-item:hover {
    transform: translateY(-5px);
}

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

.menu-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 15, 28, 0.3) 50%,
        rgba(10, 15, 28, 0.8) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

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

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-item:hover .menu-image::before {
    opacity: 1;
}

.menu-item h3 {
    color: var(--gold);
    margin: 1.5rem 1.5rem 0.5rem;
    font-family: var(--logo-font);
    font-size: 1.4rem;
    font-weight: 600;
}

.menu-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.menu-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    margin: 0 1.5rem 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 155, 48, 0.2);
}

/* Order Banner Styles */
.order-banner {
    text-align: center;
    background: var(--secondary-dark);
    padding: 1rem;
    border-radius: 16px;
    margin: -1rem auto 1rem;
    border: 1px solid var(--glass-border);
    max-width: 1200px;  /* Reduced from 1200px */
    width: 90%;  /* Reduced from 90% */
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-call {
    color: var(--text-light);
    font-size: 1.2rem;
    display: block;
}

.order-call strong {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .order-banner {
        width: 90%;  /* Slightly wider on mobile */
        padding: 1.5rem;
        margin: -0.5rem auto 3rem;
    }

    .order-call {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .order-call strong {
        display: block;
        margin: 0.5rem 0;
        font-size: 1.2rem;
    }

    .menu-section {
        padding: 6rem 0 2rem;
    }

    .menu-grid {
        padding: 1rem;
    }
}

.about-section {
    text-align: center;
    padding: 8rem 2rem 0rem 2rem;
    background: var(--light-bg);
}

.about-section h2 {
    color: var(--primary-dark);
    font-family: var(--logo-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
    padding: 8rem 2rem;
}

.contact-section h2 {
    color: var(--primary-dark);
    font-family: var(--logo-font);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section Layout */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    min-height: 130px;
    transition: all 0.3s ease;
}

.contact-card.clickable {
    padding: 0;
    cursor: pointer;
}

.contact-card.clickable:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card .card-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.contact-card.full-width {
    grid-column: 1 / -1;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card.clickable:hover i {
    transform: scale(1.1);
}

.contact-card .card-content {
    flex-grow: 1;
}

.contact-card h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card.clickable:hover h3 {
    color: var(--gold-light);
}

.contact-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    filter: grayscale(0.3) contrast(1.2);
    transition: all 0.3s ease;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card.full-width {
        grid-column: auto;
    }
    
    .map-container {
        height: 300px;  /* Shorter height on mobile */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .menu-image {
        height: 200px;
    }
    
    .menu-item h3 {
        margin: 1rem 1rem 0.5rem;
        font-size: 1.2rem;
    }
    
    .menu-item p {
        margin: 0 1rem 1rem;
    }
    
    .menu-button {
        margin: 0 1rem 1rem;
        padding: 0.7rem 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .platform-button {
        transform: scale(0.98);
    }
    
    .platform-button:active {
        transform: scale(0.95);
    }
}

/* Footer */
footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--light-text);
    font-family: var(--logo-font);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 2rem;
    }

    .campaign-items {
        text-align: center;
    }

    .campaign-items li {
        padding-left: 0;
    }

    .campaign-items li::before {
        display: none;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item, .campaign-card, .contact-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.4s; }
.menu-item:nth-child(4) { animation-delay: 0.6s; }

/* Add hero logo styles */
.hero-logo {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    height: 150px;
    width: auto;
    max-width: 100%;  /* Prevent overflow */
    object-fit: contain;  /* Maintain aspect ratio */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-logo img {
        height: auto;  /* Let height adjust automatically */
        width: 80%;  /* Control width relative to container */
        max-height: 100px;  /* Maximum height on mobile */
    }

    .hero p {
        font-size: 1.1rem;  /* Smaller font on mobile */
        margin-bottom: 2rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--logo-font);
    font-weight: 600;
}

/* Remove decorative lines from HTML */
.decorative-line {
    display: none;
}

/* Update existing contact card styles */
.contact-card i {
    transition: transform 0.3s ease;
}

.contact-card .card-content h3 {
    transition: color 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

/* Update Nav Links for Mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 100;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        padding: 0;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.1);
    }
}

/* Add styles for clickable phone numbers */
.phone-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin: -0.4rem;
}

/* .phone-link:hover {
    color: var(--gold-light);
} */

/* .phone-link:hover strong {
    color: var(--gold-light);
} */

/* Style for order banner phone link */
.order-banner .phone-link {
    display: inline-block;
    padding: 0rem 0rem;
    border-radius: 4px;
}

/* .order-banner .phone-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .order-banner .phone-link {
        display: block;
        
    }
} 

/* Campaign Button Styles */
.campaign-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.campaign-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.campaign-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.campaign-button:hover i {
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .campaign-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Social Media Section */
.social-section {
    background: var(--primary-dark);
    padding: 8rem 2rem;
    text-align: center;
}

.social-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.social-subtitle a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.social-subtitle a:hover {
    color: var(--gold-light);
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insta-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i.fab {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.insta-stats {
    display: flex;
    gap: 1.5rem;
    color: white;
}

.insta-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insta-stats i {
    font-size: 1.2rem;
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .social-section {
        padding: 4rem 1rem;
    }

    .social-section h2 {
        font-size: 2rem;
    }

    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}