/* CSS Variables */
:root {
    --primary-color: #772150;
    --primary-light: #8a2a5e;
    --primary-lighter: #a33a6e;
    --primary-lightest: #f8f0f5;
    --secondary-color: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(119, 33, 80, 0.1);
    --shadow-hover: 0 8px 15px rgba(119, 33, 80, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--white) 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(119, 33, 80, 0.2));
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-light);
    padding-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.hero-description {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-image-img,
.location-image-img,
.menu-image-img,
.catering-image-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-mobile {
    display: none;
    margin: 2rem 0;
    text-align: center;
}

.about-image-mobile img {
    width: 100%;
    max-width: 400px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
} 

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--primary-lightest);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.8;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Locations Section */
.locations {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.location-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-image {
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 2rem;
}

.location-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-address {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    margin-bottom: 0.5rem;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.location-buttons .btn {
    flex: none;
    min-width: auto;
}

/* Menus Section */
.menus {
    padding: 6rem 0;
    background-color: var(--white);
}

.menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-card-catering {
    display: none;
}

.menu-image {
    height: 200px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-content {
    padding: 2rem;
    text-align: center;
}

.menu-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.menu-content p {
    margin-bottom: 1.5rem;
}

/* Catering Section */
.catering {
    padding: 6rem 0;
    background-color: var(--primary-lightest);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.catering-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.catering-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.catering-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.catering-feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--primary-lightest);
    transition: var(--transition);
}

.catering-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.catering-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.8;
}

.catering-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.catering-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.catering-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.catering-buttons .btn {
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.catering-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catering-image-mobile {
    display: none;
    margin: 2rem 0;
    text-align: center;
}

.catering-image-mobile img {
    width: 100%;
    max-width: 400px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--primary-lightest);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.social-links {
    text-align: center;
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    width: 3rem;
    height: 3rem;
    justify-content: center;
}

.social-link:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.e-font-icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.e-fab-instagram {
    width: 1.5rem;
    height: 1.5rem;
}

.e-fab-facebook {
    width: 1.5rem;
    height: 1.5rem;
}

/* Navigation Social Links */
.nav-menu .social-link {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    justify-content: flex-start;
}

.nav-menu .social-link:hover {
    background-color: transparent;
    transform: none;
    color: var(--primary-light);
}

.nav-menu .social-link svg {
    fill: currentColor;
    width: 1.5rem;
    height: 1.5rem;
}

.nav-menu .social-icon svg {
    fill: currentColor;
}
.nav-menu .social-link .nav-link-mobile-text {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    align-items: center;
}

.footer-logo .logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-lightest);
}

.footer-info {
    text-align: center;
}
.footer-info p {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 2rem 4rem;
    }
    
    .hero-logo-image {
        max-width: 250px;
    }
    
    .about-content,
    .catering-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-desktop {
        display: none;
    }
    
    .about-image-mobile {
        display: block;
    }
    
    .catering-image-desktop {
        display: none;
    }
    
    .catering-image-mobile {
        display: block;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .social-link .nav-link-mobile-text {
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero {
        padding: 80px 1rem 3rem;
    }
    
    .hero-logo-image {
        max-width: 200px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .locations-grid,
    .menus-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-catering {
        display: block;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catering-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .location-buttons .btn {
        flex: none;
        min-width: auto;
    }
    
    .catering-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .catering-buttons .btn {
        flex: none;
        min-width: auto;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .hero-logo-image {
        max-width: 180px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}
