/* Base Styles & Variables */
:root {
    --primary-color: #8b5a2b;
    --secondary-color: #d4af37;
    --accent-color: #a67c52;
    --text-color: #333;
    --light-text: #777;
    --background: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

textarea, input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

textarea:focus, input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

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

/* Top Bar */
.top-bar {
    background-color: #1a3c40;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
    color: #c19b76;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c19b76;
}

/* Main Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

.nav-links .btn {
    padding: 10px 25px !important;
    margin-left: 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Page Hero Section - For all pages except home */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    margin-top: 0;
}

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

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-transform: capitalize;
    animation: fadeInUp 1s ease;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hero Section - Homepage specific */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--hero-bg, url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Legacy Page Header - Kept for backward compatibility */
.page-header {
    padding: 140px 0 60px; /* Increased top padding to account for fixed header */
    text-align: center;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Add margin to push content below fixed header */
}

/* Ensure page-hero overrides page-header styles when both are present */
.page-hero {
    margin-top: 0 !important;
    background-color: transparent !important;
}

/* Add padding to main content sections to prevent overlap with fixed header */
.about-section,
.rooms-section,
.gallery-section,
.meeting-venues,
.dining-options,
.contact-section {
    padding-top: 100px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Rooms Preview */
.rooms-preview {
    padding: 100px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author-text {
    text-align: left;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Call to Action */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

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

.footer-about {
    padding-right: 20px;
}

.footer-about h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #aaa;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact h4,
.footer-hours h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-contact h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #aaa;
    transition: var(--transition);
}

.footer-contact p:hover {
    color: #fff;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-hours p {
    margin-bottom: 15px;
    color: #aaa;
    line-height: 1.6;
}

.footer-hours strong {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    min-width: 100px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    transition: var(--transition);
}

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

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

/* Room Detail Page Styles */
.room-hero {
    background-color: #f5f5f5;
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.room-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-hero nav {
    margin-top: 1rem;
}

.room-hero ol {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-hero li {
    margin: 0 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.room-hero li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--light-text);
}

.room-hero a {
    color: var(--light-text);
    transition: var(--transition);
}

.room-hero a:hover {
    color: var(--primary-color);
}

/* Room Gallery */
.room-gallery {
    padding: 60px 0;
    background-color: #fff;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
}

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

/* Room Details Section */
.room-details {
    padding: 60px 0;
    background-color: var(--light-bg);
}

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

/* Combined Room Essentials - Subtle Version */
.room-essentials {
    margin: 2.5rem 0;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.room-essentials h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
    letter-spacing: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.room-essentials h3::after {
    display: none;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 0.5rem;
}

.essential-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: transparent;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.essential-item:hover {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.08);
    transform: none;
    box-shadow: none;
}

.essential-item i {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.essential-item:hover i {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
    transform: none;
}

.essential-info {
    display: flex;
    flex-direction: column;
}

.essential-title {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 400;
    margin-bottom: 2px;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.essential-value {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.essential-item:hover .essential-title {
    color: var(--light-text);
}

.essential-item:hover .essential-value {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .essentials-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .room-essentials {
        padding: 25px 20px;
    }
    
    .essentials-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .essential-item {
        padding: 10px 12px;
    }
    
    .essential-item i {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .essentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .essentials-grid {
        grid-template-columns: 1fr;
    }
}

.room-description h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 10px;
}

.price .period {
    color: var(--light-text);
    font-size: 0.9rem;
}

.booking-cta {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.room-features {
    margin: 3rem 0;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.room-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.room-features h3, .amenities h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.5px;
}

.room-features h3::after, .amenities h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.feature > * {
    position: relative;
    z-index: 2;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.03);
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover::after {
    opacity: 0.05;
    transform: scale(1);
}

.feature i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover i {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature span {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.feature span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature:hover span {
    color: var(--secondary-color);
}

.feature:hover span::after {
    opacity: 1;
    width: 60px;
}

.feature p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 400;
}

.feature:hover p {
    color: var(--text-color);
}

/* Amenities */
.amenities {
    margin: 4rem 0 3rem;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.amenities h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.5px;
}

.amenities h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 2.5rem;
}

.amenity {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.amenity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amenity::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.amenity > * {
    position: relative;
    z-index: 2;
}

.amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.03);
}

.amenity:hover::before {
    opacity: 1;
}

.amenity:hover::after {
    opacity: 0.05;
    transform: scale(1);
}

.amenity i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.amenity:hover i {
    transform: scale(1.2);
}

.amenity span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Special Offers */
.special-offers {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-top: 20px;
}

.special-offers h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.special-offers h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

.special-offers {
    background-color: var(--light-bg);
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.special-offers h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offer {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.offer:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.offer h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.offer p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

/* Similar Rooms */
.similar-rooms {
    padding: 60px 0;
    background-color: #fff;
}

.similar-rooms h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

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

.room-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

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

.room-content {
    padding: 20px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 12px;
    position: relative;
}

.room-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.room-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.room-price {
    text-align: right;
}

.room-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.room-price .period {
    font-size: 0.8rem;
    color: var(--light-text);
}

.room-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 25px 0;
    padding: 0;
}

.room-features li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--light-text);
    background: rgba(0, 0, 0, 0.02);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.room-features i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.room-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.room-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.room-card .btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.room-card .btn.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Booking CTA Buttons */
.booking-cta {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.booking-cta .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

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

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

.booking-cta .btn-secondary:hover {
    background-color: rgba(139, 90, 43, 0.05);
}

/* Responsive Styles */
/* Responsive Styles for Room Detail Page */
@media (max-width: 1200px) {
    .details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-widget {
        position: static;
        margin-top: 40px;
    }
    
    .gallery-main {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .room-hero {
        padding: 80px 0 30px;
    }
    
    .gallery-main {
        height: 350px;
    }
    
    .features-grid, 
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .room-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-cta {
        flex-direction: column;
    }
    
    .booking-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .room-hero {
        padding: 70px 0 25px;
        margin-top: 70px;
    }
    
    .room-hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .room-description h2 {
        font-size: 1.6rem;
    }
    
    .price .amount {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .amenities-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features h3,
    .amenities h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .room-hero ol {
        flex-direction: column;
        align-items: center;
    }
    
    .room-hero li {
        margin: 5px 0;
    }
    
    .room-hero li:not(:last-child)::after {
        display: none;
    }
    
    .gallery-main {
        height: 200px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr 1fr;
    }
    
    .thumbnail {
        height: 80px;
    }
}

/* General Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card, .room-card {
        padding: 30px 20px;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
