/* HEADER */
header {
    background: linear-gradient(to right, #000000, #1A1A1A, #2A0033);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 10px solid #F2C94C;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #F2C94C;
    letter-spacing: 2px;
}

.main-nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.main-nav a:hover {
    color: #E91E63;
}
/* HERO SECTION */
.hero {
    height: 90vh;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: #F2C94C;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 14px 35px;
    background: linear-gradient(to right, #FF6A00, #E91E63);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
}

.hero-btn:hover {
    box-shadow: 0 0 15px #00E5FF;
}
body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
}

section {
    padding: 60px 20px;
    border-bottom: 1px solid #333;
}

footer {
    background: #000;
    padding: 20px;
    text-align: center;
}
/* RIDDIMS SECTION */
.riddims-section {
    padding: 80px 20px;
}

.riddims-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #F2C94C;
    margin-bottom: 40px;
    text-align: center;
}

.riddims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.riddim-card {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.riddim-card:hover {
    border: 2px solid;
    border-image: linear-gradient(to right, #FF6A00, #E91E63) 1;
    transform: translateY(-5px);
}

.riddim-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.riddim-info h3 {
    margin: 0;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.riddim-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ccc;
}

.play-btn {
    margin-left: auto;
    padding: 10px 18px;
    background: linear-gradient(to right, #FF6A00, #E91E63);
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.play-btn:hover {
    box-shadow: 0 0 12px #00E5FF;
}
/* VIDEOS SECTION */
.videos-section {
    padding: 80px 20px;
}

.videos-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #F2C94C;
    margin-bottom: 40px;
    text-align: center;
}

/* Featured Video */
.featured-video iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: 2px solid #F2C94C;
    margin-bottom: 50px;
}

/* Grid of Thumbnails */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.video-card {
    background: #1A1A1A;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: 0.3s;
    text-align: center;
}

.video-card:hover {
    border: 2px solid;
    border-image: linear-gradient(to right, #FF6A00, #E91E63) 1;
    transform: translateY(-5px);
}

.video-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Horizontal Scroll Row */
.video-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
}

.video-scroll::-webkit-scrollbar {
    height: 8px;
}

.video-scroll::-webkit-scrollbar-thumb {
    background: #E91E63;
    border-radius: 10px;
}

.scroll-item img {
    width: 220px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #F2C94C;
    transition: 0.3s;
}

.scroll-item img:hover {
    box-shadow: 0 0 15px #00E5FF;
}
/* ABOUT SECTION */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #F2C94C, #F2994A, #D62828);
    color: #222;
}

/* Photo + Intro */
.about-hero {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #0F9D58;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: #000;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Bio block */
.about-bio {
    background: rgba(255,255,255,0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 6px solid #D62828;
}

.about-bio p {
    font-size: 18px;
    line-height: 1.7;
}

/* Timeline */
.about-timeline h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 25px;
    color: #000;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.timeline-item .year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0F9D58;
    font-size: 20px;
    width: 80px;
}

.timeline-item p {
    font-size: 18px;
    line-height: 1.6;
    flex: 1;
}
/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background: #F7DFA3;
    color: #222;
    border-top: 4px solid #D62828;
}

.contact-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

/* Form */
.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 2px solid #F2C94C;
    font-size: 16px;
    background: #fff;
}

.contact-form button {
    padding: 14px;
    background: linear-gradient(to right, #FF6A00, #E91E63);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
}

.contact-form button:hover {
    box-shadow: 0 0 12px #00E5FF;
}

/* Social Icons */
.contact-socials {
    margin: 50px auto;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-socials img {
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.contact-socials img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #E91E63);
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 3px solid #D62828;
    border-radius: 12px;
}
/* FOOTER */
.site-footer {
    background: linear-gradient(to right, #000000, #1A1A1A, #2A0033);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #F2C94C;
}

/* Mini Navigation */
.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: #F2C94C;
    margin: 0 15px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #E91E63;
}

/* Social Icons */
.footer-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials img {
    width: 35px;
    height: 35px;
    transition: 0.3s;
}

.footer-socials img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #00E5FF);
}

/* Brand Line */
.footer-copy {
    color: #ccc;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}
.video-thumb {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #F2C94C;
    cursor: pointer;
    transition: 0.3s;
}

.video-thumb:hover {
    box-shadow: 0 0 15px #00E5FF;
}
.video-thumb {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #F2C94C;
    cursor: pointer;
    transition: 0.3s;
}

.video-thumb:hover {
    box-shadow: 0 0 15px #00E5FF;
}
/* SLIDESHOW */
.featured-slideshow {
    position: relative;
    max-width: 100%;
    height: 1000px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #F2C94C;
    margin-bottom: 50px;
}

.featured-slideshow img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}
.slideshow-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #F2C94C;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 2px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #F2C94C;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s;
    user-select: none;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    color: #E91E63;
    text-shadow: 0 0 10px #00E5FF;
}
/* Title Bar */
.slideshow-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #F2C94C;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 2px;
}

/* Slideshow Container */
.featured-slideshow {
    position: relative;
    max-width: 100%;
    height: 1000px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #F2C94C;
    margin-bottom: 50px;
}

/* Gradient Overlay */
.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
    pointer-events: none;
}

/* Slides */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

/* Fade Animation */
.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Captions */
.caption {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 3;
    color: #fff;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px #000;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #F2C94C;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s;
    user-select: none;
    z-index: 4;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    color: #E91E63;
    text-shadow: 0 0 10px #00E5FF;
}

/* Dot Indicators */
.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 4;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: #E91E63;
    box-shadow: 0 0 10px #00E5FF;
}