/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF9B42;
    --secondary-teal: #6EC5B8;
    --accent-yellow: #FFD166;
    --bg-cream: #FFF9F5;
    --bg-white: #FFFFFF;
    --bg-light: #FFF5ED;
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --text-light: #95A5A6;
    --border-light: #E8E8E8;
    --success-green: #26C281;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   Language Selector
   =========================== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.lang-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.lang-btn.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 110px;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 155, 66, 0.15) 0%, rgba(110, 197, 184, 0.15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 72px;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(255, 155, 66, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.badge {
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===========================
   Announcement Banner
   =========================== */
.announcement {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8329 100%);
    padding: 30px 0;
    text-align: center;
}

.announcement-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.announcement-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-teal) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===========================
   Reservations Section
   =========================== */
.reservations {
    background: white;
}

.reservation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.reservation-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 155, 66, 0.1) 0%, rgba(110, 197, 184, 0.1) 100%);
    transform: scale(1.05);
}

.reservation-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 155, 66, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reservation-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reservation-card p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #FF8329;
    box-shadow: 0 6px 20px rgba(255, 155, 66, 0.4);
    transform: translateY(-2px);
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 155, 66, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 155, 66, 0.2);
    border-color: var(--secondary-teal);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 155, 66, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 155, 66, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 155, 66, 0.15);
}

.faq-item summary {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    padding-right: 30px;
    position: relative;
    font-family: 'Fredoka', sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--secondary-teal);
    box-shadow: 0 8px 25px rgba(110, 197, 184, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 32px;
}

.contact-details h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-orange);
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    background: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: white;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 3px solid var(--border-light);
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

footer small,
.pensanta-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
    white-space: nowrap;
}

footer small:hover,
.pensanta-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

footer small svg,
.pensanta-credit svg {
    flex-shrink: 0;
    opacity: 0.8;
    color: var(--primary-orange);
}

footer small a,
.pensanta-credit a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer small a:hover,
.pensanta-credit a:hover {
    color: var(--primary-orange);
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .language-selector {
        top: 70px;
        right: 10px;
        padding: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 18px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-content {
        padding-right: 20px;
    }

    .logo {
        font-size: 24px;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-light);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-logo {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reservation-options {
        grid-template-columns: 1fr;
    }

    .reservation-card.featured {
        transform: scale(1);
    }

    section {
        padding: 60px 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}
