:root {
    --primary-color: #eec213;
    --bg-sand: #f0ebe0e0;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

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

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Inter', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
    pointer-events: none;
    cursor: pointer;
}

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

.logo-text-compact {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.logo-accent {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-style: normal;
    text-transform: uppercase;
    margin-left: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

#navbar.scrolled .logo-accent {
    background: var(--primary-color);
}


#navbar.scrolled .logo-text-compact {
    color: var(--text-dark);
}

#navbar.scrolled .logo-accent {
    background: var(--primary-color);
}



#navbar.scrolled .logo-compact {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

#navbar.scrolled .logo-text-compact {
    color: var(--text-dark);
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

#navbar.scrolled .nav-links {
    background: rgba(0, 0, 0, 0.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

#navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.btn-cta-small {
    background: var(--primary-color);
    color: var(--text-dark) !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 40px;
}

.hero-col-left {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.hero-col-right {
    display: flex;
    justify-content: center;
}

.hero-content-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}


.hero-col-left {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 35vw;
    max-width: 500px;
    height: auto;
}

.hero-col-right {
    display: flex;
    justify-content: center;
}

.hero-content-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .accent {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}


#navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .accent {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yellow {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 i {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-yellow {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Announcement Section */
.announcement {
    padding: 80px 0;
    background: var(--bg-sand);
    color: var(--text-dark);
}

.announcement-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.announcement-col-left {
    padding-right: 20px;
}

.announcement-col-right {
    padding-left: 20px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.announcement-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
    line-height: 1.1;
}

.announcement-date {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.announcement-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.announcement-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.announcement-list {
    list-style: none;
}

.announcement-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.announcement-list li:last-child {
    border-bottom: none;
}

.announcement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.announcement-closing {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 15px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Services Section */
.services {
    background: var(--bg-sand);
    padding: 0 0 100px 0;
}

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

.service-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    height: 100%;
}

.gallery-mini .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 15px;
}

.service-features li {
    position: relative;
    padding: 5px 0 5px 24px;
    font-size: 0.95rem;
    color: #555;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-block;
}

.long-stay {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.service-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50px;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-gallery-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.highlight {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 100px 0;
    background: #fcfcfc;
}

.gallery-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.gallery-timeline::before {
    content: '';
    position: absolute;
    left: 99px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.08);
}

.gallery-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.gallery-label {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gallery-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.gallery-label h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    background: #fcfcfc;
    padding: 12px 16px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.2;
}

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-photos img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-photos img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    pointer-events: auto;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Location Section */
.location {
    background: #f0f2f5;
    text-align: center;
    padding: 60px 0 0 0;
}

.location-address {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.map-full-width {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.footer-cta {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.contact-item {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 1px solid #444;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-item:hover {
    background: white;
    color: black;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

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

@media (max-width: 768px) {
    /* Navbar — safe layout for small screens */
    .nav-left {
        flex: 1;
        min-width: 0;
    }

    .logo-compact {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        gap: 8px;
    }

    .logo-img-compact {
        width: 36px;
        height: auto;
    }

    .logo-text-compact {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Burger */
    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1100;
        flex-shrink: 0;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-light);
        transition: var(--transition);
    }

    #navbar.scrolled .burger span {
        background: var(--text-dark);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .burger.active {
        visibility: hidden;
    }

    /* Mobile menu — full-screen off-canvas */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--text-dark) !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1050;
        padding: 0 !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .mobile-logo {
        width: 150px;
        height: auto;
        max-height: 120px;
        object-fit: contain;
        margin-bottom: 30px;
    }

    .mobile-phone {
        margin-top: auto;
        padding-top: 30px;
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        opacity: 0.8;
    }

    .mobile-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1060;
    }

    .nav-links a {
        color: white !important;
        padding: 14px 0;
        font-size: 1.3rem;
        border-bottom: none;
    }

    .btn-cta-small {
        background: var(--primary-color);
        color: var(--text-dark) !important;
        margin-top: 10px;
        padding: 12px 24px !important;
        border-radius: 50px;
        text-align: center;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero-logo {
        width: 50vw;
        max-width: 250px;
    }

    .hero-content-box {
        padding: 30px 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    /* Announcement */
    .announcement {
        padding: 40px 0;
    }

    .announcement-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .announcement-col-left,
    .announcement-col-right {
        padding: 0;
    }

    .announcement-col-right {
        padding: 25px 20px;
    }

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

    /* Services */
    .services {
        padding: 0 0 50px 0;
    }

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

    h1 {
        font-size: 2rem;
    }

    .service-footer {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Gallery */
    .photo-gallery {
        padding: 50px 0;
    }

    .gallery-timeline {
        gap: 30px;
    }

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

    .gallery-timeline::before {
        display: none;
    }

    .gallery-label {
        flex-direction: row;
        position: static;
        gap: 12px;
    }

    .gallery-label h3 {
        background: #fcfcfc;
        padding: 4px 12px;
    }

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

    .gallery-photos img {
        height: 160px;
    }

    /* Footer */
    footer {
        padding: 50px 0 30px;
    }

    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (min-width: 769px) {
    .burger,
    .mobile-close,
    .mobile-logo,
    .mobile-phone {
        display: none;
    }
}

/* Tablets and small laptops (769–1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-grid {
        gap: 20px;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-content-box {
        padding: 30px;
    }

    .announcement-card {
        gap: 30px;
    }

    .announcement-title {
        font-size: 2rem;
    }

    .gallery-row {
        grid-template-columns: 160px 1fr;
        gap: 25px;
    }

    .gallery-photos {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .gallery-photos img {
        height: 180px;
    }
}

/* Large phones / small tablets (481–768px) */
@media (max-width: 768px) {
    /* existing mobile styles */
}
