/* ===== Variables ===== */
:root {
    --navy: #1B2141;
    --orange: #E8943A;
    --purple: #8B6BAE;
    --bg-warm: #FFF9F5;
    --white: #ffffff;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --font-heading: 'Bevan', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--navy);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: #d4812e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 148, 58, 0.35);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy) 0%, #2a2f5a 50%, #3d2e5a 100%);
    border-bottom: 2px solid var(--orange);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(27, 33, 65, 0.3);
}

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

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-btn.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(232, 148, 58, 0.3);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--navy);
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.hero-location {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    color: var(--text-light);
}

.hero .btn-primary {
    background: var(--orange);
    font-size: 1.1rem;
    padding: 16px 44px;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-img {
    width: min(450px, 40vw);
    height: min(450px, 40vw);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(27, 33, 65, 0.15), 0 0 0 8px var(--bg-warm), 0 0 0 10px rgba(232, 148, 58, 0.3);
    transition: transform 0.15s ease-out;
}

/* Decorative floating bubbles */
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.hero-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Bubble 1: top-right corner */
.hero-bubble-1 {
    width: 300px;
    height: 300px;
    top: 1%;
    right: 0%;
    box-shadow: 0 12px 45px rgba(27, 33, 65, 0.14);
    animation: float1 8s ease-in-out infinite;
    opacity: 0.92;
}

/* Bubble 2: top-left of main circle */
.hero-bubble-2 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 38%;
    box-shadow: 0 10px 35px rgba(139, 107, 174, 0.15);
    animation: float2 10s ease-in-out infinite;
    opacity: 0.9;
}

/* Bubble 3: bottom-right */
.hero-bubble-3 {
    width: 230px;
    height: 230px;
    bottom: 2%;
    right: 0%;
    box-shadow: 0 10px 35px rgba(232, 148, 58, 0.15);
    animation: float3 7s ease-in-out infinite;
    opacity: 0.9;
}

/* Bubble 4: bottom-left of main circle */
.hero-bubble-4 {
    width: 270px;
    height: 270px;
    bottom: 1%;
    right: 35%;
    box-shadow: 0 12px 40px rgba(27, 33, 65, 0.12);
    animation: float1 9s ease-in-out infinite 1s;
    opacity: 0.9;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(6px, -10px); }
    50% { transform: translate(-4px, -18px); }
    75% { transform: translate(8px, -8px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-8px, 12px); }
    66% { transform: translate(10px, -6px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(10px, 6px); }
    50% { transform: translate(-6px, 14px); }
    80% { transform: translate(4px, -8px); }
}

/* ===== About ===== */
.about {
    background: var(--white);
}

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

.about-text p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--navy);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-warm);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 33, 65, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--orange);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27, 33, 65, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.gallery-item:hover::after {
    background: rgba(27, 33, 65, 0.1);
}


/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 2rem;
    padding: 16px;
    transition: opacity 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Surroundings ===== */
.surroundings {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-warm);
    padding: 36px 32px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 33, 65, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--purple);
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.card ul {
    list-style: none;
}

.card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #4a5568;
    font-size: 0.95rem;
}

.card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
}

/* ===== Guest Info ===== */
.guest-info {
    background: var(--bg-warm);
    padding: 60px 0;
}

.info-box {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--orange);
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
    margin-top: 24px;
}

.info-box h3:first-child {
    margin-top: 0;
}

.info-box p {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
    background: var(--white);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--navy);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 148, 58, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.map-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-bubble-1 { width: 220px; height: 220px; }
    .hero-bubble-2 { width: 180px; height: 180px; right: 30%; }
    .hero-bubble-3 { width: 165px; height: 165px; }
    .hero-bubble-4 { width: 200px; height: 200px; right: 25%; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-container {
        height: 70px;
    }

    .nav-logo {
        order: 1;
    }

    .nav-logo img {
        height: 45px;
        max-width: 120px;
    }

    .lang-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--navy) 0%, #2a2f5a 50%, #3d2e5a 100%);
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        border-bottom: 2px solid var(--orange);
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    html {
        scroll-padding-top: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 90px 20px 40px;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-image-wrap {
        order: 1;
    }

    .hero-circle-img {
        width: min(300px, 70vw);
        height: min(300px, 70vw);
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-bubble-1 { width: 140px; height: 140px; }
    .hero-bubble-2 { width: 120px; height: 120px; right: 15%; }
    .hero-bubble-3 { width: 105px; height: 105px; }
    .hero-bubble-4 { width: 130px; height: 130px; right: 8%; }

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

    .section {
        padding: 60px 0;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }

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

    .nav-container {
        height: 60px;
        padding: 0 10px;
    }

    .nav-logo img {
        height: 38px;
        max-width: 100px;
    }

    html {
        scroll-padding-top: 68px;
    }

    .nav-links {
        top: 60px;
    }

    .lang-switcher {
        margin-right: 8px;
        gap: 2px;
        padding: 3px;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 0.7rem;
    }

    .hero-circle-img {
        width: min(250px, 65vw);
        height: min(250px, 65vw);
    }

    .hero-tagline {
        font-size: 1.3rem;
    }
}
