/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .broadcast-schedule {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .subtitle {
        font-size: 0.8rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2c9f8b;
        box-shadow: var(--shadow-light);
        z-index: 1000;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid #ffffff;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 20px;
        transition: background-color 0.3s ease;
    }
    
    .nav-list a:hover {
        background-color: #595757;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
    
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .video-placeholder {
        padding: 2rem;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .broadcast-info {
        padding: 1.5rem 0;
    }
    
    .broadcast-schedule {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
        background-color: rgba(255,255,255,0.1);
        border-radius: 8px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-item {
        padding: 1.5rem;
    }
    
    .leader-categories {
        /* flex-direction: column; */
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-btn {
        width: 30%;
        max-width: 200px;
        font-size: 12px;
        padding: 6px 8px;
        text-align: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .time-slot {
        padding: 0.75rem;
    }
    
    .archive-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .archive-filter select {
        width: 100%;
        max-width: 200px;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .container {
        padding: 0 0px;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo .subtitle {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 90px 0 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        padding: 1.5rem;
    }
    
    .video-placeholder i {
        font-size: 2.5rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
    
    .broadcast-info {
        margin-top: 2rem;
    }
    
    .schedule-item {
        padding: 0.75rem;
    }
    
    .schedule-item i {
        font-size: 1.5rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .about-item {
        padding: 1.25rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .leader-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .leader-image {
/*         height: 150px; */
    }
    
    .leader-content {
        padding: 1.25rem;
    }
    
    .schedule-card {
        padding: 1.25rem;
    }
    
    .archive-placeholder {
        padding: 2rem 1rem;
    }
    
    .archive-placeholder i {
        font-size: 3rem;
    }
    
    .contact-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form-section {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-item {
        padding: 1rem;
    }
    
    .leader-content {
        padding: 1rem;
    }
    
    .schedule-card {
        padding: 1rem;
    }
    
    .contact-form-section {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .menu-toggle,
    .hero-buttons,
    .video-placeholder,
    .contact-form-section,
    .footer-social,
    .scroll-top {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: var(--text-dark);
        padding: 2rem 0;
    }
    
    .hero-title {
        color: var(--primary-color);
    }
    
    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .section-header h2 {
        color: var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 0.5rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #ff6600;
        --text-dark: #000000;
        --text-light: #333333;
        --border-light: #666666;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .nav-list a::after {
        height: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #ffffff;
        --text-light: #cccccc;
        --white: #1a1a1a;
        --background-light: #2d2d2d;
        --border-light: #404040;
        --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
        --shadow-medium: 0 4px 20px rgba(0,0,0,0.4);
    }
    
    body {
        background-color:#F4F5F7;
        color: #ffffff;
    }
    
    .video-placeholder {
        background-color: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.2);
    }
}