/* ===================================
   RESPONSIVE STYLESHEET
   =================================== */

/* Tablets and Below (max-width: 992px) */
@media (max-width: 992px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 105px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 105px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 15px 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Leadership Grid */
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .speaker-card {
        grid-column: span 1;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .top-bar-left span {
        margin-right: 0;
    }

    /* Logo */
    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text h1 span {
        font-size: 13px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 350px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Quick Info */
    .quick-info {
        padding: 40px 0;
        margin-top: 0;
    }

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

    .info-card {
        padding: 30px 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Sections */
    .about-section,
    .leadership-section,
    .news-section,
    .stats-section {
        padding: 50px 0;
    }

    /* Leader Cards */
    .leader-image {
        height: 300px;
    }

    .speaker-card .leader-image {
        height: 400px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 42px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots .dot.active {
        width: 20px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }

    .header-line {
        width: 60px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Info Cards */
    .info-card h3 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 14px;
    }

    /* News Cards */
    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 14px;
    }

    /* Leader Cards */
    .leader-info {
        padding: 20px;
    }

    .leader-info h3 {
        font-size: 18px;
    }

    .leader-title {
        font-size: 14px;
    }

    .leader-constituency {
        font-size: 13px;
    }

    /* Stats */
    .stat-card i {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-card p {
        font-size: 16px;
    }

    /* Footer */
    .footer-col h3 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .mobile-menu-toggle,
    .slider-btn,
    .slider-dots,
    .back-to-top {
        display: none !important;
    }

    .main-header {
        position: static;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .hero-slider {
        height: auto;
        page-break-after: always;
    }
}
