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

:root {
    /* Sherwin Williams Color Palette */
    --extra-white: #f7f3e9;      /* SW 7006 Extra White */
    --cooled-blue: #9bb5a6;      /* SW 6759 Cooled Blue */
    --real-red: #d73027;         /* SW 6868 Real Red */
    --tricorn-black: #2c2c2c;    /* SW 6258 Tricorn Black */
    --grapy: #8b8680;            /* SW 7629 Grapy */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--tricorn-black);
    background-color: var(--extra-white);
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 10px 15px;
    border: 3px solid var(--real-red);
    background: var(--extra-white);
    color: var(--real-red);
    cursor: pointer;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(215, 48, 39, 0.2);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--real-red);
    color: var(--extra-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(215, 48, 39, 0.3);
}

/* Header */
.header {
    background: var(--cooled-blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid var(--real-red);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    color: var(--tricorn-black);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.logo .location {
    font-size: 1rem;
    color: var(--real-red);
    font-style: italic;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--tricorn-black);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(247, 243, 233, 0.8);
    border: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--extra-white);
    background: var(--real-red);
    border-color: var(--tricorn-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(215, 48, 39, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--extra-white);
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(155, 181, 166, 0.1) 20px,
            rgba(155, 181, 166, 0.1) 40px
        );
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--real-red);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--tricorn-black);
    margin-bottom: 2rem;
    line-height: 1.7;
    background: rgba(155, 181, 166, 0.2);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid var(--cooled-blue);
    font-weight: 500;
}

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

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
    border: 3px solid transparent;
}

.btn-primary {
    background: var(--real-red);
    color: var(--extra-white);
    border-color: var(--tricorn-black);
    box-shadow: 0 6px 20px rgba(215, 48, 39, 0.3);
}

.btn-primary:hover {
    background: var(--tricorn-black);
    color: var(--extra-white);
    border-color: var(--real-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.4);
}

.btn-secondary {
    background: var(--cooled-blue);
    color: var(--tricorn-black);
    border-color: var(--tricorn-black);
    box-shadow: 0 6px 20px rgba(155, 181, 166, 0.3);
}

.btn-secondary:hover {
    background: var(--tricorn-black);
    color: var(--extra-white);
    border-color: var(--cooled-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--cooled-blue);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--cooled-blue);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(247, 243, 233, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(247, 243, 233, 0.3) 3px, transparent 3px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.about-text {
    background: var(--extra-white);
    padding: 40px;
    border-radius: 25px;
    border: 4px solid var(--real-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--real-red);
    margin-bottom: 2rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--tricorn-black);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--extra-white);
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: var(--extra-white);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(155, 181, 166, 0.1) 25px,
            rgba(155, 181, 166, 0.1) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(155, 181, 166, 0.1) 25px,
            rgba(155, 181, 166, 0.1) 50px
        );
    pointer-events: none;
}

.menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--real-red);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.menu-item {
    background: var(--extra-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 4px solid var(--cooled-blue);
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--real-red);
}

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

.menu-placeholder {
    width: 100%;
    height: 250px;
    background: var(--grapy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(247, 243, 233, 0.3),
            rgba(247, 243, 233, 0.3) 15px,
            transparent 15px,
            transparent 30px
        );
}

.menu-placeholder i {
    font-size: 4rem;
    color: var(--extra-white);
    z-index: 2;
    position: relative;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--real-red);
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.menu-item p {
    padding: 0 2rem 2rem;
    color: var(--tricorn-black);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: var(--real-red);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            rgba(247, 243, 233, 0.2) 0deg 60deg,
            transparent 60deg 120deg
        );
    background-size: 80px 80px;
    pointer-events: none;
}

.experience h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--extra-white);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.experience-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: var(--extra-white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 5px solid var(--cooled-blue);
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed var(--grapy);
    border-radius: 20px;
    pointer-events: none;
}

.experience-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--real-red);
}

.experience-icon {
    width: 100px;
    height: 100px;
    background: var(--real-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 4px solid var(--cooled-blue);
    box-shadow: 0 8px 20px rgba(215, 48, 39, 0.3);
}

.experience-icon i {
    font-size: 2.5rem;
    color: var(--extra-white);
}

.experience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--real-red);
    margin-bottom: 1.5rem;
}

.experience-card p {
    color: var(--tricorn-black);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.2rem;
    font-weight: 500;
}

.experience-card ul {
    list-style: none;
    text-align: left;
}

.experience-card li {
    padding: 0.8rem 0;
    color: var(--tricorn-black);
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.experience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--real-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--tricorn-black);
    color: var(--extra-white);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(155, 181, 166, 0.1),
            rgba(155, 181, 166, 0.1) 30px,
            transparent 30px,
            transparent 60px
        );
    pointer-events: none;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--extra-white);
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--extra-white);
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 4px solid var(--cooled-blue);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    border-color: var(--real-red);
}

.whatsapp-btn i {
    font-size: 2rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    background: rgba(155, 181, 166, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid var(--cooled-blue);
}

.contact-item i {
    color: var(--cooled-blue);
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--grapy);
    color: var(--extra-white);
    padding: 50px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(155, 181, 166, 0.2),
            rgba(155, 181, 166, 0.2) 3px,
            transparent 3px,
            transparent 25px
        );
    pointer-events: none;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cooled-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--extra-white);
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.social-link {
    color: var(--extra-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 20px;
    background: rgba(155, 181, 166, 0.3);
    border: 2px solid var(--cooled-blue);
}

.social-link:hover {
    color: var(--tricorn-black);
    background: var(--cooled-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 3px solid var(--cooled-blue);
    padding-top: 25px;
    text-align: center;
    color: var(--extra-white);
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-options {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .language-toggle {
        top: 10px;
        right: 10px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .experience-card {
        padding: 2rem;
    }
    
    .about h2,
    .menu h2,
    .experience h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}

