/* ==========================================================================
   RESET & GLOBAL CONFIG
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

:root {
    --primary-color: #e5a913; 
    --dark-bg: rgba(0, 0, 0, 0.65);
    --text-white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reusable Components */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.btn-primary:hover {
    background-color: #cc940e;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem;
    color: #222;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}
.section-title p {
    color: #777;
    margin-top: 10px;
}

/* ==========================================================================
   PREVIOUS BLOCKS (Top Bar, Header, Hero, Features)
   ========================================================================== */
.top-bar { background-color: var(--primary-color); color: var(--text-white); padding: 10px 0; font-size: 0.85rem; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.social-links a { color: var(--text-white); margin: 0 6px; transition: var(--transition-smooth); }
.social-links a:hover { opacity: 0.7; }
.main-header { background-color: var(--text-white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo a { font-size: 1.8rem; font-weight: 700; color: #222; text-decoration: none; }
.navbar { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #555; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; transition: var(--transition-smooth); position: relative; padding-bottom: 5px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: var(--transition-smooth); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

.hero-section { background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=1920') no-repeat center center/cover; height: 80vh; min-height: 550px; }
.hero-overlay { background-color: rgba(0,0,0,0.45); width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.hero-content { background-color: var(--dark-bg); color: var(--text-white); padding: 40px; max-width: 650px; text-align: center; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(2px); }
.hero-content h1 { font-size: 2.8rem; letter-spacing: 4px; margin-bottom: 10px; }
.hero-content h3 { font-size: 1.2rem; font-weight: 300; text-transform: uppercase; }
.hero-content .divider { width: 60px; height: 2px; background-color: var(--primary-color); margin: 15px auto; }

.features-section { padding: 60px 0; background-color: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { display: flex; align-items: flex-start; }
.feature-icon-wrapper { color: var(--primary-color); font-size: 2rem; margin-right: 20px; position: relative; min-width: 50px; }
.feature-icon-wrapper .small-star { font-size: 1rem; position: absolute; top: -5px; }
.feature-icon-wrapper .small-star:nth-child(2) { right: 10px; }
.feature-icon-wrapper .small-star:nth-child(3) { right: 0; }
.feature-text h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 5px; }
.feature-text p { color: #777; font-size: 0.88rem; }

/* ==========================================================================
   NEW: ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 20px;
}
.about-text p {
    color: #666;
    margin-bottom: 15px;
}
.about-features {
    margin-top: 25px;
}
.about-f-item {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}
.about-f-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}
.img-frame-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    top: 20px;
    left: 20px;
    z-index: 1;
}

/* ==========================================================================
   NEW: ROOM SHOWCASE SECTION
   ========================================================================== */
.rooms-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.room-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.room-img-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.room-card:hover .room-img-container img {
    transform: scale(1.1);
}
.room-price {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}
.room-info {
    padding: 25px;
}
.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}
.room-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 65px; /* Ensures text alignment parity */
}

/* ==========================================================================
   NEW: STATS COUNTER BAR
   ========================================================================== */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?q=80&w=1200') no-repeat center center/cover;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ==========================================================================
   NEW: FOOTER & NEWSLETTER SECTION
   ========================================================================== */
.footer-section {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3, .footer-links h4, .footer-newsletter h4 {
    color: #fff;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.subscribe-form {
    display: flex;
    margin-top: 15px;
}
.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    background: #2a2a2a;
    color: #fff;
}
.subscribe-form button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.subscribe-form button:hover {
    background-color: #cc940e;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpRegulate 1s forwards cubic-bezier(0.1, 1, 0.1, 1) 0.2s;
}
@keyframes fadeInUpRegulate { to { opacity: 1; transform: translateY(0); } }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSES
   ========================================================================== */
@media (max-width: 992px) {
    .about-section { grid-template-columns: 1fr; gap: 40px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; left: -100%; width: 100%; background-color: #fff; flex-direction: column; padding: 20px 0; box-shadow: 0 10px 15px rgba(0,0,0,0.1); transition: var(--transition-smooth); z-index: 999; }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 12px 0; text-align: center; width: 100%; }
    .features-grid, .rooms-grid { grid-template-columns: 1fr; }
}