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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #0c1a0f;
    color: #e8f0e6;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.section {
    padding: 80px 0;
}

/* ===== GLASS / LIQUID GLASS ===== */
.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-liquid {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass:hover,
.glass-liquid:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

/* ===== NOTICE OVERLAY ===== */
.notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.notice-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.notice-modal {
    max-width: 540px;
    width: 90%;
    padding: 48px 36px;
    text-align: center;
    border-radius: 40px;
    background: rgba(12, 26, 15, 0.8);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    opacity: 0;
}

.notice-overlay.active .notice-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.notice-icon {
    font-size: 3rem;
    color: #c8a86e;
    margin-bottom: 16px;
}

.notice-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #c8a86e, #e8d5a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notice-modal p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 16px;
}

.notice-modal .notice-sub {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 28px;
}

.notice-modal .btn {
    margin-top: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 30px;
    z-index: 1000;
    border-radius: 60px;
    background: rgba(12, 26, 15, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #c8a86e;
}

.logo span {
    color: #c8a86e;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
    color: #c8a86e;
}

.nav-cta {
    background: #c8a86e;
    color: #0c1a0f !important;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600 !important;
    opacity: 1 !important;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: #dbb97e;
    transform: scale(1.03);
    color: #0c1a0f !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #e8f0e6;
    border-radius: 4px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    background: 
        radial-gradient(ellipse at 20% 50%, #1a3a1f 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, #0f2a14 0%, transparent 60%),
        #0c1a0f;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(200, 168, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(200, 168, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #c8a86e, #e8d5a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn.primary {
    background: #c8a86e;
    color: #0c1a0f;
}

.btn.primary:hover {
    background: #dbb97e;
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(200, 168, 110, 0.3);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8f0e6;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.03);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: bob 2s infinite;
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.tag {
    display: inline-block;
    background: rgba(200, 168, 110, 0.15);
    color: #c8a86e;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-header p {
    opacity: 0.7;
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.about-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: 32px;
}

.about-card i {
    font-size: 2.4rem;
    color: #c8a86e;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ===== AMENITIES ===== */
.amenities {
    background: rgba(255, 255, 255, 0.02);
}

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

.amenity-item {
    text-align: center;
    padding: 20px;
}

.amenity-item i {
    font-size: 2.2rem;
    color: #c8a86e;
    margin-bottom: 12px;
}

.amenity-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.amenity-item p {
    opacity: 0.65;
    font-size: 0.9rem;
}

/* ===== ATTRACTIONS ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.attraction-card {
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
}

.attraction-card i {
    font-size: 2.4rem;
    color: #c8a86e;
    margin-bottom: 16px;
}

.attraction-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.attraction-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 260px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    padding: 36px 30px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 14px 20px;
    font-size: 1rem;
    color: #e8f0e6;
    font-family: inherit;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c8a86e;
}

.contact-form button {
    align-self: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 110, 0.12);
    border-radius: 50%;
    color: #c8a86e;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer p {
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.3s, transform 0.3s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: rgba(200, 168, 110, 0.15);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: 94%;
        padding: 10px 20px;
        border-radius: 40px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(12, 26, 15, 0.92);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        border-radius: 30px;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

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

    .hero h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .about-grid,
    .amenities-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .notice-modal {
        padding: 32px 20px;
    }

    .notice-modal h2 {
        font-size: 1.6rem;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}