/*
 Theme Name:   GeneratePress Luxury Child
 Template:     generatepress
 Description:  Hotel Grand Gulmohar Style - Luxury Maroon & Gold Theme
 Version:      2.2.1
*/

/* Global Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --maroon: #630310;
    --dark-maroon: #4a020b;
    --gold: #c5a059;
    --white: #FFFFFF;
    --cream: #FFFDE7;
    --dark-overlay: rgba(0, 0, 0, 0.5);
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--white); 
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
.site-header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    -webkit-backdrop-filter: blur(10px);
}

/* Fallback for older browsers */
@supports not (position: sticky) {
    .site-header {
        position: fixed;
        width: 100%;
    }
    
    body {
        padding-top: 80px;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    background: var(--gold);
    color: var(--maroon);
    font-weight: 800;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-title { 
    color: var(--white); 
    font-size: 22px; 
    font-weight: 700;
    margin: 0 0 5px 0; 
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.site-title-highlight {
    color: var(--gold);
    font-weight: 800;
}

.site-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation */
.main-navigation {
    margin-left: auto;
}

.nav-menu { 
    list-style: none; 
    display: flex; 
    margin: 0; 
    padding: 0;
    align-items: center;
}

.nav-menu li { 
    margin-left: 5px;
}

.nav-menu li a { 
    color: var(--gold); 
    text-decoration: none; 
    font-size: 13px;
    font-weight: 700; 
    text-transform: uppercase;
    transition: all 0.4s ease;
    padding: 10px 14px;
    letter-spacing: 0.5px;
    position: relative;
    display: block;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 4px;
    left: 14px;
    background-color: var(--white);
    transition: width 0.4s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: calc(100% - 28px);
}

.nav-menu li a:hover, 
.nav-menu li.current-menu-item a { 
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation CTA Button */
.btn-reserve {
    background: var(--gold);
    color: var(--maroon) !important;
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-reserve:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    z-index: 1001;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    position: relative;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.main-navigation.toggled .menu-toggle-icon {
    background: transparent;
}

.main-navigation.toggled .menu-toggle-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.main-navigation.toggled .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Special last menu item styling */
.nav-menu li:last-child a {
    background: var(--gold);
    color: var(--maroon) !important;
    border-radius: 4px;
    margin-left: 8px;
    padding: 10px 16px;
}

.nav-menu li:last-child a::after {
    display: none;
}

.nav-menu li:last-child a:hover {
    background: var(--white);
    color: var(--maroon) !important;
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, rgba(99, 3, 16, 0.85), rgba(74, 2, 11, 0.7)), url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content { 
    position: relative; 
    z-index: 20; 
    max-width: 1000px; 
    padding: 0 20px;
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    background: rgba(255, 193, 7, 0.2);
    color: var(--gold);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: fadeInUp 0.8s ease;
    z-index: 21;
}

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

.hero-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 4.5rem; 
    font-weight: 700; 
    margin: 0 0 20px 0; 
    line-height: 1.1; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span { 
    color: var(--gold); 
    display: block;
    font-size: 3.5rem;
}

.hero-subtitle { 
    font-size: 1.3rem; 
    margin-bottom: 40px; 
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Action Buttons */
.hero-btns { 
    display: flex; 
    gap: 25px; 
    justify-content: center; 
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary { 
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 8px;
    padding: 15px 35px;
}

.btn-primary { 
    background: var(--gold); 
    color: var(--maroon); 
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

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

.btn-primary:hover { 
    background: transparent; 
    color: var(--gold); 
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.btn-secondary:hover { 
    background: var(--gold); 
    color: var(--maroon); 
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Booking Bar */
.booking-bar {
    background: rgba(255, 253, 231, 0.95);
    border-radius: 16px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 193, 7, 0.2);
    width: 90%;
    max-width: 1100px;
    margin: 40px auto 0;
    position: relative;
    z-index: 30;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.input-group { 
    text-align: left; 
    position: relative;
}

.input-group label { 
    display: block; 
    color: var(--maroon); 
    font-weight: 600; 
    font-size: 13px; 
    margin-bottom: 8px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 14px 15px 14px 40px;
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 38px;
    color: var(--maroon);
    font-size: 16px;
    z-index: 2;
}

.check-btn {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--gold);
    border: none;
    padding: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(99, 3, 16, 0.3);
    min-height: 44px;
    box-sizing: border-box;
}

.check-btn:hover { 
    background: linear-gradient(135deg, var(--dark-maroon), var(--maroon));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 3, 16, 0.4);
}

/* Footer */
.site-footer { 
    background: linear-gradient(135deg, var(--dark-maroon), var(--maroon)); 
    color: var(--white); 
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    padding: 80px 0 50px;
    background: rgba(0, 0, 0, 0.1);
}

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

.footer-column h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '•';
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-middle {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

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

.newsletter {
    text-align: center;
}

.newsletter h5 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 300px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
    box-sizing: border-box;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--maroon);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 16px;
    box-sizing: border-box;
}

.newsletter-form button:hover {
    background: #e6ae02;
}

.footer-bottom {
    padding: 30px 0;
    background: var(--dark-maroon);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.award-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.award-badge i {
    color: var(--gold);
}

.award-badge span {
    font-size: 0.8rem;
    color: var(--white);
    white-space: nowrap;
}

/* Container and Layout Improvements */
.container,
.header-container,
.footer-container,
.site-content {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Fix container conflicts for GeneratePress */
.site-content .container {
    display: block !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Additional GeneratePress compatibility fixes */
.site-content {
    display: block !important;
}

.inside-article {
    max-width: none !important;
}

.separate-containers .inside-article {
    padding: 0 !important;
}

/* Force grid containers to work properly */
.rooms-grid,
.features-grid,
.testimonials-grid {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive Breakpoints */

/* Large Desktop - 1200px+ */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.8rem; }
    .hero-title span { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-container { padding: 0 30px; }
}

/* Tablet - 992px */
@media (max-width: 992px) {
    .hero-title { font-size: 3.2rem; }
    .hero-title span { font-size: 2.4rem; }
    .booking-bar { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        padding: 25px 30px;
    }
    .header-container { padding: 0 20px; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 1.7rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .header-left,
    .header-center,
    .header-right {
        flex-wrap: wrap;
    }
    
    .header-center {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
    
    .nav-container {
        gap: 12px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Homepage Responsive */
    .section-header h2 { font-size: 2rem; }
    .rooms-preview { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
}

/* Mobile Landscape - 768px */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        min-height: 70px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        width: 100%;
    }
    
    .header-container {
        padding: 10px 15px;
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .header-left {
        flex-shrink: 0;
    }
    
    .header-center {
        display: none;
    }
    
    .header-right {
        flex-grow: 1;
        justify-content: flex-end;
    }
    
    .site-title { font-size: 18px; }
    .site-tagline { font-size: 10px; }
    .logo-icon { 
        width: 40px; 
        height: 40px; 
        font-size: 18px; 
        margin-right: 10px;
    }
    
    .menu-toggle {
        display: block !important;
        width: 45px;
        height: 45px;
        background: transparent !important;
        border: none !important;
        padding: 10px;
    }
    
    .menu-toggle-icon, 
    .menu-toggle-icon::before, 
    .menu-toggle-icon::after {
        width: 25px;
        height: 3px;
        background-color: var(--gold);
    }
    
    .menu-toggle-icon::before { top: -8px; }
    .menu-toggle-icon::after { top: 8px; }
    
    .main-navigation.toggled .menu-toggle-icon { background: transparent; }
    .main-navigation.toggled .menu-toggle-icon::before { 
        transform: rotate(45deg) translate(5px, 5px); 
    }
    .main-navigation.toggled .menu-toggle-icon::after { 
        transform: rotate(-45deg) translate(7px, -7px); 
    }
    
    /* Mobile Menu Dropdown */
    .main-navigation .menu-main-container {
        display: none;
    }
    
    .main-navigation.toggled .menu-main-container {
        display: block !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--maroon) !important;
        z-index: 99999 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .main-navigation.toggled ul.nav-menu {
        display: flex !important;
        flex-direction: column !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        list-style: none;
    }
    
    .main-navigation.toggled ul.nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .main-navigation.toggled ul.nav-menu li a {
        display: block !important;
        color: var(--gold) !important;
        font-size: 16px !important;
        padding: 15px 25px !important;
        text-align: left !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .main-navigation.toggled ul.nav-menu li a:hover {
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding-left: 30px !important;
    }
    
    .main-navigation.toggled ul.nav-menu li:last-child a {
        background: var(--gold) !important;
        color: var(--maroon) !important;
        margin: 15px 20px !important;
        padding: 12px !important;
        text-align: center !important;
        border-radius: 5px !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-top: 40px;
        width: 100%;
    }
    
    .hero-title { 
        font-size: 2.2rem; 
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-title span { 
        font-size: 1.8rem;
    }
    
    .hero-subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 30px;
        padding: 0;
        line-height: 1.5;
    }
    
    .hero-btns { 
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Booking Bar Mobile */
    .booking-bar { 
        grid-template-columns: 1fr; 
        padding: 20px; 
        gap: 15px;
        width: 95%;
        margin: 30px auto 0;
    }
    
    .input-group {
        width: 100%;
    }
    
    .input-group input,
    .input-group select {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        padding-left: 40px;
    }
    
    .input-group label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .input-group i {
        top: 42px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Homepage Mobile Responsive */
    .featured-rooms { padding: 60px 0; }
    .hotel-features { padding: 60px 0; }
    .testimonials { padding: 60px 0; }
    .home-cta { padding: 60px 0; }
    
    .rooms-preview { grid-template-columns: 1fr; gap: 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.8rem; }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 30px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-awards {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
        padding: 12px;
    }
}

/* Mobile Portrait - 576px */
@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-title span { font-size: 1.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .site-title { font-size: 16px; }
    .site-tagline { font-size: 9px; }
    .logo-icon { 
        width: 35px; 
        height: 35px; 
        font-size: 14px; 
        margin-right: 8px;
    }
    .header-container { padding: 10px; }
    .footer-middle { padding: 25px 0; }
    .social-links { gap: 10px; }
    .social-links a { width: 35px; height: 35px; }
    .award-badge { 
        flex-direction: column; 
        padding: 8px; 
        gap: 4px;
    }
    .award-badge span { font-size: 0.7rem; }
    .booking-bar { padding: 15px; }
    .hero-content { padding: 0 10px; }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-title span { font-size: 1.4rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .site-title { font-size: 14px; }
    .logo-icon { 
        width: 30px; 
        height: 30px; 
        font-size: 12px; 
        margin-right: 6px;
    }
    .hero-badge { 
        padding: 6px 15px; 
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .booking-bar { padding: 15px; gap: 12px; }
    .input-group label { font-size: 11px; }
    .check-btn { padding: 14px; font-size: 13px; }
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

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

/* WordPress Widgets */
.widget {
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.widget a {
    color: var(--maroon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-field {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 35px;
}

/* Archives Widget */
.widget_archive select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background: var(--white);
    min-height: 44px;
    box-sizing: border-box;
}

/* Categories Widget */
.widget_categories li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories .post-count {
    background: var(--gold);
    color: var(--maroon);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recent Posts Widget */
.widget_recent_entries li {
    margin-bottom: 15px;
}

.widget_recent_entries .post-date {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 5px;
}

/* Tag Cloud Widget */
.tagcloud a {
    display: inline-block;
    padding: 5px 12px;
    margin: 3px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--maroon);
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tagcloud a:hover {
    background: var(--gold);
    color: var(--maroon);
    transform: translateY(-2px);
}

/* Calendar Widget */
.wp-calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.wp-calendar-table th,
.wp-calendar-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.wp-calendar-table th {
    background: var(--maroon);
    color: var(--white);
    font-weight: 600;
}

/* ============================= */
/* ===== ROOMS PAGE ===== */
/* ============================= */

/* Rooms Grid - Fixed Layout */
.rooms-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
}

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

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100% !important;
}

.room-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.room-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(99, 3, 16, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-content {
    padding: 25px;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--maroon);
    margin: 0 0 10px 0;
}

.room-description {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
}

.feature .dashicons {
    color: var(--gold);
    font-size: 16px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
    display: block;
}

.price-unit {
    font-size: 0.85rem;
    color: #999;
}

.btn-room-book {
    background: var(--gold);
    color: var(--maroon);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-room-book:hover {
    background: var(--maroon);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Rooms Page Responsive */
@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .room-content {
        padding: 20px;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-room-book {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .room-image {
        height: 200px;
    }
    
    .room-image img {
        min-height: 200px;
    }
}

/* ============================= */
/* ===== WORDPRESS PAGES ===== */
/* ============================= */

/* Page Content Wrapper */
.site-content {
    padding: 80px 0;
    background: var(--white);
}

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

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    margin: 15px 0 0;
    opacity: 0.9;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--maroon);
    margin: 0 0 15px 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Featured Rooms Section */
.featured-rooms {
    padding: 80px 0;
    background: var(--cream);
}

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

.room-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.room-preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.room-preview-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.room-preview-badge {
    background: var(--gold);
    color: var(--maroon);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-preview-content {
    padding: 25px;
}

.room-preview-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin: 0 0 10px 0;
}

.room-preview-content p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.room-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-preview-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.room-preview-price small {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

.room-preview-btn {
    background: var(--maroon);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.room-preview-btn:hover {
    background: var(--gold);
    color: var(--maroon);
    transform: translateY(-2px);
}

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

/* Hotel Features Section */
.hotel-features {
    padding: 80px 0;
}

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

.feature-block {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .dashicons {
    font-size: 30px;
    color: var(--maroon);
}

.feature-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin: 0 0 15px 0;
}

.feature-block p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--cream);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars .dashicons {
    color: var(--gold);
    font-size: 20px;
    margin-right: 2px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 20px 0;
}

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

.testimonial-author strong {
    color: var(--maroon);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 5px 0;
}

.testimonial-price {
    color: var(--maroon);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Home CTA Section */
.home-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

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

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--maroon);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Rooms Page */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.room-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--maroon);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-info {
    padding: 30px;
    background: rgba(255, 253, 231, 0.5);
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--maroon);
    border-radius: 50%;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px; /* Prevents zoom on iOS */
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

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

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Account Page */
.account-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.account-sidebar {
    background: rgba(255, 253, 231, 0.3);
    padding: 25px;
    border-radius: 15px;
}

.account-nav {
    list-style: none;
    padding: 0;
}

.account-nav li {
    margin-bottom: 10px;
}

.account-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--maroon);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.account-nav a:hover,
.account-nav a.active {
    background: var(--gold);
    color: var(--maroon);
}

.account-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* WooCommerce Styles */
.woocommerce {
    margin-bottom: 50px;
}

.woocommerce-products-header {
    margin-bottom: 40px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Comments */
.comments-area {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 253, 231, 0.2);
    border-radius: 15px;
}

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

.comment-body {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.page-numbers {
    padding: 10px 15px;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--maroon);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ============================= */
/* ===== MOBILE OPTIMIZATION ===== */
/* ============================= */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .account-dashboard {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-content {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-filters {
        justify-content: center;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .account-sidebar {
        padding: 20px;
    }
    
    .account-content {
        padding: 20px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .comments-area {
        padding: 20px;
    }
    
    /* Widget Mobile Styles */
    .widget {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .search-field {
        padding: 12px 40px 12px 15px;
    }
    
    .search-submit {
        padding: 6px 10px;
        min-height: 32px;
    }
    
    .widget_archive select {
        padding: 10px 12px;
        min-height: 40px;
    }
    
    .tagcloud a {
        padding: 4px 10px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .wp-calendar-table th,
    .wp-calendar-table td {
        padding: 6px 4px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    /* Widget Small Mobile Styles */
    .widget {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .widget-title {
        font-size: 1rem;
    }
    
    .search-field {
        padding: 10px 35px 10px 12px;
        font-size: 15px;
    }
    
    .search-submit {
        padding: 5px 8px;
        min-height: 30px;
        font-size: 14px;
    }
    
    .widget_archive select {
        padding: 8px 10px;
        font-size: 15px;
        min-height: 36px;
    }
    
    .tagcloud a {
        padding: 3px 8px;
        font-size: 0.75rem;
        margin: 1px;
    }
    
    .wp-calendar-table th,
    .wp-calendar-table td {
        padding: 4px 2px;
        font-size: 0.8rem;
    }
    
    .widget_categories .post-count {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 15px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .account-sidebar,
    .account-content {
        padding: 15px;
    }
}

/* ============================= */
/* ===== ROOM CARD DESIGN ===== */
/* ============================= */

.mphb-room-type {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 45px;
    padding-bottom: 25px;
    position: relative;
}

.mphb-room-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Gold Top Accent */
.mphb-room-type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #d4af37, #f5d76e, #b8860b);
}

/* ============================= */
/* ===== ROOM IMAGE ===== */
/* ============================= */

.mphb-room-type img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mphb-room-type:hover img {
    transform: scale(1.05);
}

/* ============================= */
/* ===== CONTENT AREA ===== */
/* ============================= */

.mphb-room-type-content {
    padding: 28px;
}

.mphb-room-type-title {
    font-size: 26px;
    font-weight: 700;
    color: #630310;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.mphb-room-type-excerpt {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.7;
}

.mphb-room-type-attributes {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* ============================= */
/* ===== PRICE BADGE ===== */
/* ============================= */

.mphb-price {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

/* ============================= */
/* ===== BUTTONS ===== */
/* ============================= */

.mphb-room-type-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.mphb-book-button,
.mphb-view-details-button {
    width: 48%;
    text-align: center;
    background: linear-gradient(135deg, #630310, #8b0000);
    color: #fff !important;
    padding: 13px 18px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(99,3,16,0.3);
}

/* Hover Effect */
.mphb-book-button:hover,
.mphb-view-details-button:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

/* ============================= */
/* ===== MOBILE OPTIMIZATION ===== */
/* ============================= */

@media(max-width:768px){

    .mphb-room-type {
        margin: 20px 12px;
        border-radius: 18px;
    }

    .mphb-room-type img {
        height: 200px;
    }

    .mphb-room-type-title {
        font-size: 22px;
    }

    /* Keep buttons side-by-side */
    .mphb-room-type-actions {
        flex-direction: row;
    }

    .mphb-book-button,
    .mphb-view-details-button {
        width: 48%;
    }
}