/* Pages Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #0f0f0f;
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding: 2rem;
}

.page-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .page-content {
        padding: 2rem 1rem;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    grid-area: full-news-title;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 .material-symbols-outlined {
    font-size: 3rem;
    color: #EF4A3E;
}

.page-subtitle {
    color: #7a7c7e;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .page-header {
        margin-top: 40px;
    }
    .page-header h1 {
        font-size: 2rem;
        gap: 0.5rem;
    }

    .page-header h1 .material-symbols-outlined {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* No Content Message */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #7a7c7e;
    grid-area: full-news;
}

.no-content .material-symbols-outlined {
    font-size: 4rem;
    color: #EF4A3E;
    margin-bottom: 1rem;
}

.no-content p {
    font-size: 1.125rem;
}

/* News Grid Page */
.news-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-area: full-news;
}

@media (max-width: 1024px) {
    .news-grid-page {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* News Card */
.news-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #2a2a2a;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 74, 62, 0.2);
    border-color: #EF4A3E;
}

.news-card-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f0f0f;
}

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

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

.news-card-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-tag {
    background: rgba(239, 74, 62, 0.9);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #7a7c7e;
    font-size: 0.875rem;
    font-weight: 500;
}

.news-card-date .material-symbols-outlined {
    font-size: 1.125rem;
}

.news-card-source {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card-source.external {
    background: #7a7c7e;
}

.news-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #EF4A3E;
}

.news-card-description {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #EF4A3E;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.news-card-readmore:hover {
    gap: 0.75rem;
}

.news-card-readmore .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Schedule Page */
.schedule-grid {
    display: grid;
    gap: 2rem;
    grid-area: full-news;
}

.day-schedule {
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #2a2a2a;
    overflow: hidden;
}

.day-header {
    background: linear-gradient(135deg, #EF4A3E 0%, #d43d2f 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-header.today {
    background: linear-gradient(135deg, #ff0000 0%, #EF4A3E 100%);
    animation: pulse-glow-header 2s ease-in-out infinite;
}

@keyframes pulse-glow-header {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }
}

.day-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.day-name .material-symbols-outlined {
    font-size: 2rem;
}

.today-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shows-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-item {
    background: #0f0f0f;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
}

.show-item:hover {
    border-color: #EF4A3E;
    transform: translateX(5px);
}

.show-item.on-air {
    border-color: #EF4A3E;
    background: linear-gradient(90deg, rgba(239, 74, 62, 0.1) 0%, transparent 100%);
}

.show-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 80px;
}

.show-time-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #EF4A3E;
}

.show-time-separator {
    color: #7a7c7e;
    font-size: 0.875rem;
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.show-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 0, 0, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff0000;
    border: 1px solid #ff0000;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.live-indicator .material-symbols-outlined {
    font-size: 0.875rem;
}

.show-host {
    color: #b3b3b3;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.show-host .material-symbols-outlined {
    font-size: 1.125rem;
    color: #7a7c7e;
}

.show-description {
    color: #7a7c7e;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.show-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #2a2a2a;
}

.no-shows {
    text-align: center;
    padding: 2rem;
    color: #7a7c7e;
    font-style: italic;
}

@media (max-width: 768px) {
    .show-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .show-time {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        min-width: unset;
    }

    .show-image {
        width: 100%;
        height: 200px;
    }

    .day-name {
        font-size: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border: 2px solid #2a2a2a;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #EF4A3E;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #ff0000;
}

.modal-content h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content img {
    width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.modal-content .news-meta {
    color: #7a7c7e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content .news-body {
    color: #b3b3b3;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.modal-content .news-body h2,
.modal-content .news-body h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content .news-body p {
    margin-bottom: 1rem;
}

.modal-content .news-tags {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-content .news-tags .badge {
    background: #EF4A3E;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #7a7c7e;
    font-size: 1.125rem;
}
/* ===================================
   Contact Form Styles
   =================================== */
.contact-form {
    grid-area: full-news;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;

}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(239, 74, 62, 0.1), rgba(212, 61, 47, 0.05));
    border: 1px solid rgba(239, 74, 62, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;

    &.link {
        &:hover {
            cursor: pointer
        }
    }
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #EF4A3E;
    box-shadow: 0 10px 30px rgba(239, 74, 62, 0.2);
}

.info-card .material-symbols-outlined,
.info-card .fa-brands {
    font-size: 3rem;
    color: #EF4A3E;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form Wrapper */
.form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Modern Form Styles */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label .material-symbols-outlined {
    font-size: 1.25rem;
    color: #EF4A3E;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EF4A3E;
    background: rgba(239, 74, 62, 0.05);
    box-shadow: 0 0 0 4px rgba(239, 74, 62, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #EF4A3E, #d43d2f);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 74, 62, 0.4);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.form-message .material-symbols-outlined {
    font-size: 1.5rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
