/* =====================================================
   THE ORCHID by FLAT06 - Main Stylesheet
   Brand Colors: Gold (#C9A962), Black (#1A1A1A), White (#FFFFFF)
   ===================================================== */

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A962;
    --gold-light: #D4B978;
    --gold-dark: #A68B4B;
    --black: #1A1A1A;
    --black-light: #2D2D2D;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #888888;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--black);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-subtext {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--gold);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 15px;
    color: var(--gold);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* =====================================================
   Section Styles
   ===================================================== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 25px;
}

.section-description {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* =====================================================
   Location Highlight Section
   ===================================================== */
.location-highlight {
    padding: 120px 20px;
    text-align: center;
    background: var(--gray-light);
}

/* =====================================================
   Features Grid
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-image {
    height: 500px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-link:hover {
    color: var(--gold-light);
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* =====================================================
   Amenities Section
   ===================================================== */
.amenities-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    padding: 30px 20px;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.amenity-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.amenity-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* =====================================================
   Rooftop Section
   ===================================================== */
.rooftop-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.rooftop-images {
    overflow: hidden;
}

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

.rooftop-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--black);
    color: var(--white);
}

.rooftop-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.rooftop-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--black);
    color: var(--gold);
}

.cta-section .btn-primary:hover {
    background: var(--black-light);
}

.cta-section .btn-secondary {
    border-color: var(--black);
    color: var(--black);
}

.cta-section .btn-secondary:hover {
    background: var(--black);
    color: var(--gold);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

/* =====================================================
   Page Header (for inner pages)
   ===================================================== */
.page-header {
    padding: 180px 20px 80px;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 5px;
}

/* =====================================================
   Room Cards (Hotel & Long Stay pages)
   ===================================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.room-card-image {
    height: 300px;
    overflow: hidden;
}

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

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

.room-card-content {
    padding: 30px;
}

.room-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
}

.room-features li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features li i {
    color: var(--gold);
    width: 20px;
}

/* =====================================================
   Long Stay Room Card
   ===================================================== */
.longstay-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.longstay-card:nth-child(even) > * {
    direction: ltr;
}

.longstay-image {
    height: 400px;
    overflow: hidden;
}

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

.longstay-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.longstay-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.longstay-content .room-tagline {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
}

/* =====================================================
   Facilities Page
   ===================================================== */
.facilities-intro {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.facility-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.facility-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
    background: var(--gray-light);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 30px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.contact-item a:hover {
    color: var(--gold);
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   Gallery Grid
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 0 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .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-title {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 350px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooftop-section {
        grid-template-columns: 1fr;
    }
    
    .rooftop-content {
        padding: 50px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .longstay-card {
        grid-template-columns: 1fr;
    }
    
    .longstay-card:nth-child(even) {
        direction: ltr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}


/* =====================================================
   Hero Logo Image Styles
   ===================================================== */
.hero-logo {
    max-width: 550px;
    width: 90%;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

/* =====================================================
   Footer Managed By Section
   ===================================================== */
.footer-managed-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    margin-top: 20px;
}

.footer-managed-by p {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.managed-by-logo {
    max-width: 80px;
    height: auto;
}

/* =====================================================
   Room Carousel Styles
   ===================================================== */
.room-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--gold);
}

/* =====================================================
   Booking Button Placeholder
   ===================================================== */
.booking-btn {
    cursor: pointer;
}


/* =====================================================
   Hotel Intro Section
   ===================================================== */
.hotel-intro {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--gray-light);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black-light);
}


/* =====================================================
   House Rules Agreement Modal (Long Stay Page)
   ===================================================== */
.rules-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.rules-modal-content {
    background: var(--white);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rules-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

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

.rules-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rules-modal-content h2 i {
    color: var(--gold);
}

.modal-subtitle {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal-subtitle strong {
    color: var(--gold);
}

.rules-summary {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.rules-summary h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 15px;
}

.rules-summary ul {
    list-style: none;
}

.rules-summary li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--black-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rules-summary li:last-child {
    border-bottom: none;
}

.rules-summary li i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rules-summary li strong {
    color: var(--black);
}

.rules-full-link {
    text-align: center;
    margin-bottom: 25px;
}

.rules-full-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    transition: var(--transition);
}

.rules-full-link a:hover {
    background: var(--gold);
    color: var(--white);
}

.rules-agreement {
    margin-bottom: 25px;
    padding: 15px;
    background: #FFF9E6;
    border: 2px solid var(--gold);
    border-radius: 8px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.agreement-text {
    color: var(--black);
}

.agreement-text a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}

.agreement-text a:hover {
    color: var(--gold-dark);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-buttons .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.modal-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.modal-buttons .btn-secondary:hover {
    border-color: var(--black);
    color: var(--black);
}

.modal-buttons .btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.modal-buttons .btn-primary:disabled:hover {
    background: #ccc;
    transform: none;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .rules-modal-content {
        padding: 25px 20px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .rules-modal-content h2 {
        font-size: 1.4rem;
        padding-right: 30px;
    }
    
    .rules-summary {
        padding: 15px;
    }
    
    .rules-summary li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .rules-full-link a {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}
