:root {
    --primary: #c5a059; /* Gold */
    --secondary: #0a1128; /* Midnight Blue */
    --accent: #fefcf3; /* Off White */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-dark: #050a18;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--secondary);
}

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

.section-title.center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: var(--secondary);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.logo img {
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

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

.nav-links li a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-book {
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    color: white !important;
}

.btn-book:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu.is-active i::before {
    content: "\f00d"; /* FontAwesome X icon */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 17, 40, 0.6), rgba(10, 17, 40, 0.6)), 
                url('hotels photo/WhatsApp Image 2026-04-30 at 12.40.24 PM (1).jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
}

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

.btn-outline {
    border: 2px solid white;
    color: white;
}

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
}

/* Restaurant Section */
.restaurant {
    padding: 100px 0;
    background: #fff;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.restaurant-text h2 {
    margin-bottom: 25px;
}

.restaurant-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.r-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .restaurant-features {
        align-items: center;
    }
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: var(--accent);
}

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

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.room-img {
    position: relative;
    height: 250px;
}

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

.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.room-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #777;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-sm:hover {
    background: var(--primary);
    color: white;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.amenities .section-title {
    color: var(--primary);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

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

.amenity-item h3 {
    margin-bottom: 10px;
}

.amenity-item p {
    color: #aaa;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover {
    filter: brightness(0.7);
    transform: scale(1.02);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3, .footer-links h3, .footer-contact h3 {
    color: var(--primary);
    margin-bottom: 25px;
}

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

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 40px;
        text-align: center;
        gap: 20px;
        box-shadow: var(--shadow);
    }
}

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

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

/* Delay for hero content */
.hero-content h1 { transition-delay: 0.2s; }
.hero-content p { transition-delay: 0.4s; }
/* Guest Counter Styles */
.guest-counter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding: 10px 0;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
}

.counter-row:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
}

.counter-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    display: flex;
    flex-direction: column;
}

.counter-label span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.counter-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.counter-btn:active:not(:disabled) {
    transform: translateY(0);
}

.counter-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.counter-value {
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
    color: var(--secondary);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .mobile-menu {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 1000;
    }
    .nav-links.active {
        left: 0;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .details-grid {
        grid-template-columns: 1fr !important;
    }
    .booking-card {
        position: static !important;
        margin-top: 40px;
    }
    .amenities-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .counter-row {
        padding: 12px 15px;
    }
    .counter-controls {
        gap: 12px;
    }
    .counter-btn {
        width: 32px;
        height: 32px;
    }
    .room-info-content h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Sticky Booking Bar */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .mobile-booking-bar {
        display: flex;
    }
    body {
        padding-bottom: 80px; /* Space for the bar */
    }
}

.mobile-booking-bar .price-info {
    display: flex;
    flex-direction: column;
}

.mobile-booking-bar .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.mobile-booking-bar .price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
}

.btn-mobile-book {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}
/* Pricing Table Styles */
.pricing-table-container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: white;
}

.pricing-table th, .pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #f8f9fa;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table td {
    color: #444;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td small {
    color: #888;
    display: block;
    margin-top: 4px;
}

/* Prominent Pricing Section */
.room-pricing-prominent {
    margin-top: 50px;
    background: #fdfcf3;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.room-pricing-prominent h3 {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.8rem;
    text-align: center;
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.price-box .plan {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-box .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.price-box .period {
    font-size: 0.9rem;
    color: #888;
}

.price-box.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.price-box.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 2px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

.price-box.featured .amount {
    color: var(--primary);
}

@media (max-width: 600px) {
    .pricing-options {
        grid-template-columns: 1fr;
    }
}
