:root {

    --c-dark: #0a0f1c;
    --c-dark-light: #162032;


    --c-gold: #c6a355;
    --c-gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa842d 100%);
    --c-gold-hover: #e5c567;

    --c-text-main: #2c3e50;
    --c-text-muted: #64748b;
    --c-bg-light: #f8fafc;
    --c-white: #ffffff;


    --c-error: #ef4444;
    --c-success: #10b981;


    --container-width: 1240px;
    --header-height: 90px;
    --radius-sm: 4px;
    --radius-md: 12px;


    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--c-text-main);
    background-color: var(--c-bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--c-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--c-gold-gradient);
    color: var(--c-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(198, 163, 85, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5c567 0%, #d4af37 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 163, 85, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-dark);
    border-color: var(--c-white);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: #0a0f1c;
}


header.scrolled {
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 80px;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--c-white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

header.scrolled .logo {
    color: var(--c-gold);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--c-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--c-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--c-white);
    font-size: 1.8rem;
    cursor: pointer;
}


.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero.png') center/cover no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    color: var(--c-white);
    max-width: 900px;
}

.hero h1 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

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


.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--c-white);
    padding: 50px 30px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #aa842d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}


.room-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--c-text-muted);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--c-dark);
    color: var(--c-white);
    border-color: var(--c-dark);
}

.room-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.room-img img {
    transition: transform 0.8s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.room-details p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

.room-amenities {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    color: var(--c-gold);
    font-size: 1.1rem;
}

.room-price {
    font-size: 1.3rem;
    color: var(--c-dark);
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 20px;
    display: block;
    font-family: 'Playfair Display', serif;
}


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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
}

.form-control {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background: var(--c-white);
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(198, 163, 85, 0.1);
}

.input-error {
    border-color: var(--c-error);
    background: #fef2f2;
}

.error-msg {
    color: var(--c-error);
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

.success-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    display: none;
    text-align: center;
}


footer {
    background: var(--c-dark);
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-grid h4 {
    color: #fff;
}

.footer h4 {
    color: var(--c-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer a {
    color: #cbd5e1;
}

.footer a:hover {
    color: var(--c-gold);
    padding-left: 5px;
}

.legal-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.age-limit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-white);
    font-weight: 600;
}

.age-icon {
    background: var(--c-error);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--c-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .hamburger {
        display: block;
        z-index: 1002;
        position: relative;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--c-white);
        margin-bottom: 20px;
    }

    .hero {
        background-attachment: scroll;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}


.modal-content {
    background: var(--c-white);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-md);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: var(--c-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--c-error);
}

.modal-body {
    padding: 30px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--c-dark);
}

.modal-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}

.modal-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--c-text-main);
}

.modal-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-sm);
}

.modal-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.modal-amenities i {
    color: var(--c-gold);
    width: 20px;
    text-align: center;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc;
}

.modal-price {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--c-dark);
}

.map-container {
    width: 100%;
    height: 450px;
    background: #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(90%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(100%);
}

.contact-card {
    background: var(--c-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--c-gold);
    font-size: 1.2rem;
    margin-top: 5px;
    margin-right: 20px;
    width: 20px;
    text-align: center;
}

.contact-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--c-dark);
}

.contact-item p,
.contact-item a {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

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


.policy-nav {
    position: sticky;
    top: 120px;
    background: var(--c-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-nav h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.policy-nav ul li {
    margin-bottom: 10px;
}

.policy-nav a {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    display: block;
    padding: 5px 0;
}

.policy-nav a:hover {
    color: var(--c-gold);
    transform: translateX(5px);
}


.policy-content {
    background: var(--c-white);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--c-dark-light);
    font-family: 'Manrope', sans-serif;
}

.policy-content p {
    margin-bottom: 15px;
    color: #475569;
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #475569;
}

.policy-content li {
    margin-bottom: 8px;
}

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

    .policy-nav {
        display: none;
    }

    .policy-content {
        padding: 30px;
    }
}

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


.terms-nav {
    position: sticky;
    top: 120px;
    background: var(--c-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.terms-nav h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.terms-nav ul li {
    margin-bottom: 10px;
}

.terms-nav a {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.terms-nav a:hover {
    color: var(--c-gold);
}


.terms-content {
    background: var(--c-white);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.terms-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    scroll-margin-top: 100px;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--c-dark);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
    color: #475569;
    text-align: justify;
}

.terms-content ul,
.terms-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #475569;
}

.terms-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.highlight-box {
    background: #f8fafc;
    border-left: 4px solid var(--c-gold);
    padding: 20px;
    margin: 20px 0;
    font-size: 0.95rem;
}

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

    .terms-nav {
        display: none;
    }

    .terms-content {
        padding: 30px;
    }
}