/* Custom Properties */
:root {
    --primary: #0a0b23;
    /* Logo Navy */
    --secondary: #c29d5b;
    /* Logo Metallic Gold */
    --accent: #e5c17d;
    --bg-light: #fdfdfb;
    --bg-gray: #f8f9fa;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --glass: rgba(10, 11, 35, 0.92);
    --border: rgba(194, 157, 91, 0.2);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-gray);
}

/* Typography Helpers */
.center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 80px;
}

.mb-4 {
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Navbar with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
    border-radius: 4px;
}

.navbar.scrolled .logo-img {
    height: 50px;
    filter: none;
}

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

.nav-links a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: #fff;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-text {
    padding: 0;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-transform: none;
    font-size: 1.1rem;
    font-style: italic;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    border-color: var(--secondary);
    letter-spacing: 0.5px;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 11, 35, 0.8), rgba(10, 11, 35, 0.3));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s ease-in-out infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.about-image-container {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 700px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

/* Room Cards with Modern Layout */
.rooms-grid {
    display: grid;
    gap: 60px;
}

.room-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.room-card:nth-child(even) {
    direction: rtl;
}

.room-card:nth-child(even) .room-details {
    direction: ltr;
}

.room-img-container {
    height: 500px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.room-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.room-info {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.room-features li {
    background: var(--bg-gray);
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 2px;
    color: var(--text-muted);
}

/* Experience Section */
.experience {
    background-color: var(--primary);
    color: #fff;
    overflow: hidden;
}

.experience .section-title {
    color: #fff;
}

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

.exp-item {
    margin-top: 40px;
    padding-left: 32px;
    border-left: 2px solid var(--secondary);
}

.exp-item h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.exp-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.experience-visuals {
    position: relative;
    height: 600px;
}

.visual-stack {
    position: relative;
    height: 100%;
}

.visual-item {
    position: absolute;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    background-image: url('../images/hero.jpg');
    z-index: 1;
}

.v2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    background-image: url('../images/about.jpg');
    z-index: 2;
    border: 8px solid var(--primary);
}

/* Amenities with Hover Effects */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-item {
    padding: 48px;
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition-base);
}

.amenity-item:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.amenity-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Contact & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item strong {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-form-container {
    background: #fff;
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

input,
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    background: var(--bg-gray);
    font-family: inherit;
    transition: var(--transition-base);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: #fff;
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-footer-img {
    height: 80px;
    margin-bottom: 24px;
    filter: brightness(1.2);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    color: var(--secondary);
}

.footer ul li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-slow);
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
    }

    .about-grid,
    .experience-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

    .hero-title {
        font-size: 3.5rem;
    }

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

    .room-details {
        padding: 40px 30px;
    }

    .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}