@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    overflow-x: hidden !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.164);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-link,
.nav-link:hover,
.dropdown-toggle {
    color: white !important;
}

.logo {
    width: 100px;
}

.active {
    color: #c9a96e !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.666);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.navbar.scrolled .nav-link {
    color: black !important;
}

.navbar.scrolled .book2 {
    color: black;
    border-color: black;
}

.scrolled .active {
    color: #c9a96e !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #1F3A34;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
}

.hero-text {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 60px;
}

.sub-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c9a96e;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sub-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #c9a96e;
}

.hero-title {
    color: #f5f0e8;
    font-size: 64px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hero-title span {
    font-style: italic;
    color: #c9a96e;
}

.hero-tagline {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(245, 240, 232, 0.5);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.butona {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-class {
    border-radius: 20px;
}

.book1 {
    background: #c9a96e;
    color: #0a1f1a;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 0;
    border: none;
    width: fit-content;
    transition: background 0.3s ease, transform 0.2s ease;
}

.book1:hover {
    background: #dbbe87;
    transform: translateY(-1px);
}

.book2 {
    background: transparent;
    color: #f5f0e8;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 32px;
    border: 1px solid rgba(245, 240, 232, 0.35);
    border-radius: 0;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.book2:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.hero-corner-ornament {
    position: absolute;

    top: 100px;
    right: 28px;
    z-index: 2;
    opacity: 0.3;
}

.hero-badge {
    position: absolute;
    right: 60px;
    bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.badge-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-num {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #c9a96e;
    line-height: 1;
}

.badge-label {
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    text-align: center;
    line-height: 1.4;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-label {
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
    animation: scrollDrop 1.8s ease infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

.sector {
    padding: 100px 0;
}

.detalis {
    color: #1F3A34;
    line-height: 2;
    letter-spacing: 4px;
    font-weight: 650;
}

p {
    color: #555555;
}

.sector img {
    border-radius: 15px;
}

.about-sector {
    background-color: #E6F0ED;
}

.title {
    color: #0f0d0a;
    font-size: 44px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.sub-headline {
    color: #1F3A34;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
}

.list-text {
    list-style-position: inside;
    list-style-type: disc;
}

.list-text li {
    color: #555555;
}

.gallery-img {
    aspect-ratio: 4/2;
    object-fit: cover;
}

.rooms {
    background-color: #1F3A34;
}

.room-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
}

.room-title {
    color: #1F3A34;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: 2px;
}

.facilities-card {
    border: solid 1px #1F3A34;
    border-radius: 16px;
    padding: 20px;
}

.testimonials-header {
    color: #ad863d;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.author {
    font-size: 16px;
    color: #0a1f1a;
}

.maps {
    width: 100%;
    height: 180px;
}

.footer {
    background-color: #1F3A34;
    padding: 40px 0 20px 0;
    color: white;
}

.footer p,
.footer a {
    color: white;
    text-decoration: none;
}

.footer-title {
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Hero Section about */
.about-hero-section {
    position: relative;
    background: linear-gradient(160deg, #12100e 0%, #1c1712 45%, #0e1a14 100%);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, #c9a96e 0px, #c9a96e 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, #c9a96e 0px, #c9a96e 1px, transparent 1px, transparent 60px);
}

.about-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, transparent 20%, rgba(0, 0, 0, 0.6) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 48px;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-eyebrow-line {
    width: 50px;
    height: 1px;
    background: #c9a96e;
    opacity: 0.6;
    display: block;
}

.about-eyebrow-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a96e;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 400;
    color: #f5f0e8;
    line-height: 1.0;
    margin: 0 0 6px;
    letter-spacing: -1px;
}

.about-title em {
    font-style: italic;
    color: #c9a96e;
}

.about-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 3px;
    color: rgba(245, 240, 232, 0.45);
    text-transform: uppercase;
    margin: 18px 0 40px;
}

.about-divider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.about-divider-line {
    width: 80px;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
    display: block;
}

.about-divider-diamond {
    width: 8px;
    height: 8px;
    border: 1px solid #c9a96e;
    transform: rotate(45deg);
    opacity: 0.7;
    display: block;
}

.contact-card {
    border: solid 1px #c9a96e;
    padding: 20px;
}

.map-contact {
    width: 100%;
    height: 500px;
    border: solid 1px #c9a96e;
}

.room-row {
    background-color: #E6F0ED;
    border: 1px solid #c9a96e;

}


@media(max-width:500px) {
    .butona {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .sub-title {
        margin-top: 80px;
    }

    .about-eyebrow {
        margin-top: 100px;
    }

    .room-row {
        margin: 0 10px;
    }

    .hero-text {
        padding: 0 20px;
    }

    .hero-corner-ornament {
        top: 126px;
    }

    .title {
        font-size: 35px;
    }

    .about-title {
        font-size: 59px;
    }
}