:root {
    --primary: #483c34;
    --secondary: #c1a173;
    --bg: #fbfbfb;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Floating Style */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1300px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 30px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

nav.scrolled {
    top: 10px;
    height: 60px;
    width: calc(100% - 40px);
}

.logo {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #444;
    transition: var(--transition);
}

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

.nav-cta .btn {
    background: #2d7a58;
    color: var(--white);
    padding: 0 25px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-cta .btn:hover {
    background: #225c42;
    transform: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-page {
    height: 60vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.3s;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple Page Header */
.page-header {
    padding: 150px 0 100px;
    background: var(--bg);
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

/* Welcome Section */
.welcome {
    padding: 150px 0;
    background: var(--bg);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.welcome-images {
    position: relative;
    display: flex;
    gap: 20px;
}

.img-stack-1 {
    width: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.img-stack-2 {
    width: 50%;
    margin-top: 100px;
    margin-left: -20%;
    border: 15px solid var(--white);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    font-weight: 600;
}

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

.room-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    padding-bottom: 60px;
}

.room-overlay h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
}

.room-overlay .price {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Amenities Section */
.amenities {
    padding: 150px 0;
    background: var(--bg);
}

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

.amenity-item {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.amenity-img {
    width: 250px;
    flex-shrink: 0;
}

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

.amenity-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenity-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.amenity-info p {
    color: var(--text-muted);
    font-size: 15px;
}

/* CTA Section */
.cta {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin: 100px 0;
    border-radius: 20px;
    margin-left: 40px;
    margin-right: 40px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta h2 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-block;
}

.btn-white:hover {
    transform: scale(1.05);
    background: var(--secondary);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
    font-size: 14px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

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

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

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

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

@media (max-width: 900px) {
    .welcome-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        width: calc(100% - 20px);
    }

    .logo {
        font-size: 20px;
    }

    .logo img {
        height: 28px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: -120%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        text-align: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .mobile-cta {
        display: inline-block !important;
        margin-top: 10px;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .welcome,
    .rooms,
    .amenities {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2,
    .welcome-text h2 {
        font-size: 36px;
    }

    .img-stack-1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .img-stack-2 {
        width: 70%;
        margin-top: 0;
        margin-left: 0;
        position: absolute;
        bottom: -30px;
        right: -10px;
        border-width: 10px;
    }

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

    .room-card {
        height: 450px;
    }

    .amenity-item {
        flex-direction: column;
    }

    .amenity-img {
        width: 100%;
        height: 250px;
    }

    .cta {
        margin: 60px 20px;
        height: auto;
        padding: 80px 20px;
        border-radius: 12px;
    }

    .cta h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-content div {
        flex-direction: column;
        gap: 16px;
    }

    .btn-white {
        padding: 16px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .img-stack-2 {
        display: none;
    }

    .cta {
        margin: 40px 10px;
    }
}