.radio-page {
padding: 140px 60px 80px;
width: 100%;
min-height: 100vh;
position: relative;
background-image: url('../assets/radio-bg.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.radio-page > * {
max-width: 1400px;
margin-left: auto;
margin-right: auto;
}
.radio-header {
text-align: center;
margin-bottom: 80px;
}
.radio-header h1 {
font-family: 'Cinzel', serif;
font-size: 3.5rem;
color: #FFD700;
font-weight: 700;
margin-bottom: 15px;
text-shadow:
0 0 8px rgba(255, 215, 0, 0.5),
0 2px 4px rgba(0, 0, 0, 0.3);
}
.radio-header p {
font-family: 'Playfair Display', serif;
font-style: italic;
color: #000;
font-size: 1.3rem;
font-weight: 600;
text-shadow:
-1px -1px 0 #fff,
1px -1px 0 #fff,
-1px 1px 0 #fff,
1px 1px 0 #fff,
0 1px 4px rgba(0, 0, 0, 0.3);
}
.radio-content {
display: grid;
grid-template-columns: 1fr 2fr 250px;
gap: 40px;
align-items: start;
}
.radio-image {
position: relative;
border-radius: 15px;
overflow: hidden;
}
.radio-image img {
width: 100%;
aspect-ratio: 9/16;
object-fit: cover;
border-radius: 15px;
}
.radio-text {
padding: 20px;
}
.radio-text h2 {
font-family: 'Cinzel', serif;
font-size: 2.2rem;
color: #FFD700;
margin-bottom: 20px;
font-weight: 700;
text-shadow:
0 0 6px rgba(255, 215, 0, 0.4),
0 1px 3px rgba(0, 0, 0, 0.3);
}
.radio-text p {
color: #000;
line-height: 1.9;
margin-bottom: 25px;
font-size: 1.05rem;
font-weight: 500;
text-shadow:
-1px -1px 0 #fff,
1px -1px 0 #fff,
-1px 1px 0 #fff,
1px 1px 0 #fff,
0 1px 3px rgba(0, 0, 0, 0.3);
}
.radio-video {
margin-top: 20px;
}
.radio-video .video-wrapper {
width: 100%;
}
.radio-suggestions {
border-left: 2px solid rgba(255, 255, 255, 0.5);
padding-left: 20px;
}
.radio-suggestions h3 {
color: #FFD700;
margin-bottom: 20px;
font-family: 'Cinzel', serif;
font-size: 1.3rem;
font-weight: 700;
text-shadow:
0 0 5px rgba(255, 215, 0, 0.3),
0 1px 2px rgba(0, 0, 0, 0.3);
}
.suggestion-item {
margin-bottom: 25px;
cursor: pointer;
transition: all 0.3s;
}
.suggestion-item:hover {
transform: translateX(5px);
}
.suggestion-item video {
width: 100%;
height: auto;
aspect-ratio: 16/9;
object-fit: cover;
border-radius: 8px;
margin-bottom: 8px;
background: #000;
border: 1px solid rgba(255, 215, 0, 0.2);
}
.suggestion-item h4 {
font-size: 1rem;
color: #FFD700;
font-family: 'Cinzel', serif;
font-weight: 600;
margin: 0;
text-transform: none;
letter-spacing: 0.5px;
text-shadow:
0 0 8px rgba(255, 215, 0, 0.5),
0 0 12px rgba(255, 215, 0, 0.3),
0 1px 3px rgba(0, 0, 0, 0.5);
}
.all-videos-link {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
background: rgba(255, 215, 0, 0.15);
border: 1.5px solid #FFD700;
color: #FFD700;
border-radius: 25px;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s;
font-weight: 600;
}
.all-videos-link:hover {
background: rgba(255, 215, 0, 0.3);
box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
@media (max-width: 1200px) {
.radio-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.radio-page { padding: 120px 25px 60px; }
.radio-header h1 { font-size: 2.5rem; }
.radio-text { padding: 10px; }
}