/*
Theme Name: Lahore Hotel Theme
Description: A custom WordPress theme for hotel websites
Version: 1.0
Author: Your Name
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1e3a8a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 15px;
    color: #6b7280;
}

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

/* Main Content Wrapper */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-title p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Header Fixes */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-branding {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.site-title a {
    color: #1e3a8a;
}

/* Navigation */
.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.site-navigation a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.site-navigation a:hover {
    color: #1e3a8a;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3a8a;
    transition: width 0.3s ease;
}

.site-navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1e3a8a;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #1e3a8a;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: #ffffff;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Slider navigation dots */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active { 
    background: #ffffff; 
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: #dc2626;
}

.btn-secondary:hover {
    background: #1e3a8a;
}

/* Featured Rooms */
.featured-rooms {
    background: #f8fafc;
}

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

.room-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.room-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.room-card h3,
.room-title {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 15px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amenity,
.amenity-tag {
    background: #f3f4f6;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #6b7280;
}

.room-card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.room-card .btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

/* Booking Form */
.booking-form {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    margin: 40px 0;
}

.booking-form h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.booking-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #1e3a8a !important; /* Dark blue text */
    transition: all 0.3s ease;
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: #6b7280 !important; /* Gray placeholder text */
    opacity: 1;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    color: #1e3a8a !important;
}

.booking-form .form-group select option {
    background: #ffffff;
    color: #1e3a8a;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Fixed WhatsApp Button */
/* Enhanced Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-fixed:hover {
    background: #128c7e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-fixed i {
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    background: #ffffff;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

/* Map Section */
.map-section {
    background: #f8fafc;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

/* Make Google Maps iframe responsive */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Fix WhatsApp Button on Contact Page */
.contact-info .whatsapp-btn {
    display: inline-block;
    background: #25d366 !important;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-info .whatsapp-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Page WhatsApp Section Styling */
.contact-info > div > div {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info > div > div:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Footer - Fixed Blue Color */
.site-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Fix WhatsApp Button in Footer */
.footer-section .whatsapp-btn {
    display: inline-block;
    background: #25d366 !important;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-section .whatsapp-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-section .whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Fix Copyright Text Color in Footer */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: #ffffff !important; /* Changed from rgba(255,255,255,0.8) to solid white */
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    background: rgba(0,0,0,0.1); /* Add slight dark background for better contrast */
    border-radius: 5px;
    margin-top: 20px;
    padding: 15px 20px;
}

.footer-bottom p {
    color: #ffffff !important;
    margin: 0;
    font-size: 0.95rem;
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1e3a8a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.message {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .site-logo img {
        max-height: 40px;
        width: auto;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-navigation {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .site-navigation.active {
        display: block;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .site-navigation li {
        border-bottom: 1px solid #f3f4f6;
    }
    
    .site-navigation li:last-child {
        border-bottom: none;
    }
    
    .site-navigation a {
        display: block;
        padding: 15px 20px;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .site-navigation a:hover {
        background: #f8fafc;
        color: #1e3a8a;
        padding-left: 30px;
    }
    
    .site-navigation a::after {
        display: none;
    }
    
    .hero-slider {
        height: 400px;
        margin-top: 60px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 40px 15px;
    }
    
    .booking-form {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .booking-form h3 {
        font-size: 1.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Contact form and map section */
    .contact-form-map > div {
        display: block !important;
        gap: 30px !important;
    }
    
    .contact-form,
    .map-section {
        margin-bottom: 40px;
    }
    
    /* Contact form fields */
    .contact-form > form > div[style*="grid-template-columns"] {
        display: block !important;
        gap: 15px !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    /* Map container */
    .map-container {
        height: 300px !important;
    }
    
    /* Contact info section */
    .contact-info > div {
        display: block !important;
        gap: 20px !important;
    }
    
    .contact-info > div > div {
        margin-bottom: 20px;
        padding: 20px !important;
    }
    
    /* Form buttons */
    .contact-form div[style*="flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .contact-form .btn {
        width: 100%;
        text-align: center;
    }
    
    /* About Us Page Mobile Styles */
    .about-content > div[style*="grid-template-columns"] {
        display: block !important;
        gap: 30px !important;
    }
    
    .about-content > div > div {
        margin-bottom: 30px;
    }

    /* Mobile Responsive Fixes */
    .whatsapp-fixed {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .contact-info .whatsapp-btn,
    .footer-section .whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .room-card-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .contact-form-map {
        margin-bottom: 40px !important;
    }
    
    .contact-form h2,
    .map-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-form p,
    .map-section p {
        font-size: 0.9rem;
        margin-bottom: 20px !important;
    }
    
    .map-container {
        height: 250px !important;
        margin-bottom: 20px;
    }

    .whatsapp-fixed {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-fixed span {
        display: none; /* Hide text on very small screens, show only icon */
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (min-width: 769px) {
    body.menu-open {
        overflow: auto;
        position: static;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

/* Single Room Page Fixes */
.single-room .main-content {
    padding-top: 120px; /* Add space for fixed header */
    padding-bottom: 60px;
}

/* Room Hero Section */
.room-hero {
    margin-bottom: 60px !important;
}

.room-hero > div[style*="grid-template-columns"] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Room Sidebar */
.room-hero .sidebar {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 100px; /* Account for fixed header */
}

/* Room Gallery */
.room-gallery {
    margin-bottom: 60px !important;
}

.room-gallery > div[style*="grid-template-columns"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Room Specifications */
.room-specs {
    margin-bottom: 60px !important;
}

.room-specs > div[style*="grid-template-columns"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Booking Form on Room Page */
.single-room .booking-form {
    margin-bottom: 60px !important;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    z-index: 10;
}

.single-room .booking-form > div {
    padding: 60px;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
}

.single-room .booking-form h3 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.single-room .booking-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.single-room .booking-form .form-group input,
.single-room .booking-form .form-group select,
.single-room .booking-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1e3a8a !important; /* Dark blue text */
}

.single-room .booking-form .form-group input::placeholder,
.single-room .booking-form .form-group textarea::placeholder {
    color: #6b7280 !important; /* Gray placeholder text */
    opacity: 1;
}

.single-room .booking-form .form-group select option {
    color: #1e3a8a;
    background: #ffffff;
}

.single-room .booking-form .form-group input:focus,
.single-room .booking-form .form-group select:focus,
.single-room .booking-form .form-group textarea:focus {
    border-color: #1e3a8a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    color: #1e3a8a !important;
    background: #ffffff;
}

/* Similar Rooms Section */
.similar-rooms {
    margin-bottom: 60px !important;
}

.similar-rooms h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a8a;
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsive for Single Room Page */
@media (max-width: 768px) {
    .single-room .main-content {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .room-hero > div[style*="grid-template-columns"] {
        display: block !important;
        gap: 30px !important;
    }
    
    .room-hero .sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .room-specs > div[style*="grid-template-columns"] {
        display: block !important;
        gap: 30px !important;
    }
    
    .room-specs > div > div {
        margin-bottom: 30px;
    }
    
    .single-room .booking-form > div {
        padding: 30px 20px;
    }
    
    .single-room .booking-form h3 {
        font-size: 1.5rem;
    }
    
    .single-room .booking-form > form > div[style*="grid-template-columns"] {
        display: block !important;
        gap: 15px !important;
    }
    
    .single-room .booking-form .form-group {
        margin-bottom: 15px;
    }
    
    .single-room .booking-form div[style*="flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .single-room .booking-form .btn {
        width: 100%;
        min-width: auto !important;
    }
    
    .room-gallery > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .single-room .main-content {
        padding-top: 90px;
    }
    
    .room-gallery > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .single-room .booking-form > div {
        padding: 20px 15px;
    }
}

/* Fix blog hero text color for better readability */
.blog-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff; /* Ensure white text */
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff; /* Ensure white text */
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-meta i {
    margin-right: 5px;
    color: #1e3a8a;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-title a:hover {
    color: #3b82f6;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #f8fafc;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #1e3a8a;
    color: #ffffff;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    color: #1e3a8a;
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #1e3a8a;
    color: #ffffff;
}

.post-count {
    font-size: 0.8rem;
    opacity: 0.7;
}

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

.sidebar-booking p {
    margin-bottom: 20px;
    color: #6b7280;
}

.sidebar-booking .btn {
    display: block;
    margin-bottom: 10px;
}

/* Fix single post page layout to match other pages */
.single-post {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Remove any width constraints that might affect footer */
.single .site-main {
    width: 100%;
}

.single .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Ensure footer displays full width */
body.single #colophon {
    width: 100%;
    margin: 0;
}

/* Ensure proper spacing before footer */
.single-post .post-navigation {
    margin-bottom: 60px;
}

.post-header {
    margin-bottom: 60px;
}

.post-featured-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.post-header-content {
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: 5px;
    color: #1e3a8a;
}

.post-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: 700;
    line-height: 1.2;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.post-content h3 {
    color: #1e3a8a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.post-content h4 {
    color: #1e3a8a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.post-content p {
    margin-bottom: 20px;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.post-tags h4 {
    margin-bottom: 15px;
    color: #1e3a8a;
}

.tag {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.tag:hover {
    background: #1e3a8a;
    color: #ffffff;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-post-content a {
    color: #1e3a8a;
    text-decoration: none;
}

.related-post-content a:hover {
    color: #3b82f6;
}

.related-post-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-previous,
.nav-next {
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #1e3a8a;
    color: #ffffff;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.nav-next {
    text-align: right;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.no-posts h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
}

.no-posts p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
        color: #ffffff; /* Ensure white text on mobile */
    }
    
    .blog-hero p {
        color: #ffffff; /* Ensure white text on mobile */
    }
    
    .blog-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-title a {
        font-size: 1.3rem;
    }
    
    .single-post {
        padding: 20px;
    }
    
    .single .main-content {
        padding: 40px 20px;
    }
    
    .post-featured-image {
        height: 250px;
        margin-bottom: 30px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-meta {
        gap: 15px;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-previous,
    .nav-next {
        padding: 20px;
        text-align: left;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .recent-post-thumb {
        width: 50px;
        height: 50px;
    }
    
    .related-post-thumb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.8rem;
        color: #ffffff; /* Ensure white text on small mobile */
    }
    
    .blog-hero p {
        font-size: 1rem;
        color: #ffffff; /* Ensure white text on small mobile */
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .sidebar-booking .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .single-post {
        padding: 15px;
    }
    
    .single .main-content {
        padding: 20px 15px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.page-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
}

.privacy-content {
    line-height: 1.8;
    color: #374151;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #1e3a8a;
    padding-left: 15px;
}

.privacy-section h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.privacy-section li {
    margin-bottom: 8px;
}

.privacy-section a {
    color: #1e3a8a;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #3b82f6;
}

.privacy-policy-container .contact-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.privacy-policy-container .contact-info p {
    margin-bottom: 10px;
}

.privacy-policy-container .contact-info strong {
    color: #1e3a8a;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-policy-container .contact-info {
        padding: 15px;
    }
}
