body {
    font-family: 'Circular-Book', sans-serif;
    color: #191919;
}

h2 {
    font-family: 'Constantia', serif;
    font-weight: 900;
    font-size: 50px;
}

h3 {
    font-family: 'Constantia', serif;
    font-weight: 900;
    font-size: 35px;
}

/* Most Recent Section */
.most-recent-section .click-to-watch {
    font-family: 'Circular-Bold';
    color: #191919;
    text-decoration: none;
    letter-spacing: 2px;
}
.most-recent-section .image-container {
    position: relative;
    border: 5px solid #EE2E24;
}
.most-recent-section .image-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(238, 46, 36, 0.9);
    color: #fff;
    padding: 5px 10px;
    font-family: 'Circular-Bold';
}

/* Follow Along Section */
.follow-along-section {
    background-color: #f7f7f7;
}

/* Map Section */
.map-section .hey-mario-bar {
    background-color: #EE2E24;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Circular-Bold';
    letter-spacing: 2px;
}
.map-section .location-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-section .location-list button {
    background: #EE2E24;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Contact Section */
.contact-section {
    background-color: #EE2E24;
    color: #fff;
}

.contact-section h2 {
    color: #fff;
}
.contact-section .form-control {
    background-color: #d42219;
    border: 1px solid #fff;
    color: #fff;
}
.contact-section .form-control::placeholder {
    color: #f8d7da;
}
.contact-section .message-bubble {
    background: #fff;
    color: #EE2E24;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Circular-Bold';
}

.contact-section .message-bubble::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

/* Curated Playlists Section */
.curated-playlists-section .playlist-item {
    position: relative;
    color: #fff;
}
.curated-playlists-section .playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.curated-playlists-section .playlist-overlay h3 {
     color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h2 {
        font-size: 36px;
    }
    .most-recent-section .image-overlay {
        font-size: 12px;
        padding: 3px 5px;
    }
}
