/*
 * Dreamy Days Event - Responsive CSS
 * Layout breakpoints for tablet, mobile, and small screens
 */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .mobile-only-cta {
        display: block !important;
    }
    .section {
        padding: 80px 0;
    }

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

    /* Header & Mobile Menu Drawer */
    .mobile-nav-toggle {
        display: block;
        z-index: 1002;
    }

    .logo-text {
        display: none !important; /* Hide brand name text on mobile */
    }

    .logo-img {
        max-height: 52px !important; /* Limit logo image size to 50-60px range */
    }

    .btn-header {
        display: none !important; /* Remove Book Consultation from header on mobile */
    }

    header {
        height: 70px !important; /* Limit header height to 70px max */
        display: flex;
        align-items: center;
    }

    .header-container {
        padding: 5px 20px !important;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Full screen drawer width */
        height: 100vh;
        background-color: #0b0b0b !important; /* Luxury black gradient background */
        background-image: radial-gradient(circle at 50% 50%, #161616 0%, #080808 100%) !important;
        border-left: 1px solid rgba(185, 151, 91, 0.2);
        padding: 100px 30px 40px;
        z-index: 1001;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 320px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-family: var(--font-heading);
        font-size: 1.3rem; /* Premium font styling */
        color: rgba(255, 255, 255, 0.8) !important;
        letter-spacing: 2px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(185, 151, 91, 0.1);
        text-transform: uppercase;
    }

    nav ul li a:hover,
    nav ul li.active a {
        color: var(--gold-light) !important;
    }

    /* Grids */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

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

    /* Hero Section Mobile Overrides */
    .hero-slider {
        height: 100vh !important; /* Full height first screen experience */
        min-height: 560px !important;
    }

    .hero-content {
        width: 90% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem !important; /* 40px to fit 2-3 lines max */
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        font-weight: 300 !important;
    }

    .hero-content p {
        font-size: 1.15rem !important;
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }

    .btn-luxury-group {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .btn-luxury-group .btn-luxury {
        width: 100% !important;
        max-width: 320px !important;
        padding: 14px 24px !important;
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
    }

    /* Grids & Cards */
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    .card-luxury {
        padding: 30px;
    }

    .card-image {
        height: 320px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Admin Panel Collapse */
    .admin-container {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1.5px solid var(--gold);
        padding: 20px 0;
    }

    .admin-logo {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .admin-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .admin-menu li a {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .admin-menu li.active a,
    .admin-menu li a:hover {
        border-left: none;
        border-bottom: 3px solid var(--gold);
        padding-left: 15px;
    }

    .admin-main {
        padding: 20px;
    }
}

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

    .btn-luxury-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-luxury {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 100px; /* Space for sticky action floating buttons */
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
