/* Make sure the footer stays at the bottom of the viewport */
html, body {
  height: 100%;
  margin: 0;
}

body {
    margin: 0;
    background: #0f0f0f;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}




/* Whatever wraps your main content */
main {
  flex: 1; /* pushes the footer down */
}

/* Footer stays at bottom */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
}




/* ============================= */
/* SOCIAL SECTION */
/* ============================= */
/* Top right position */
.social-icons {
    position: absolute; /* change to fixed if you want it to stay while scrolling */
    top: 25px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.social-icons {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: 0.3s ease;
}

.social-icons i {
    font-size: 20px;
}

.social-icons img {
    width: 70%;
    height: auto;
    display: block;
}



.social-icons a:hover {
    background: white;
    color: black;
}

/* ============================= */
/* TABLET */
@media (max-width: 992px) {
  .social-icons {
    top: 20px;
    right: 20px;
    gap: 12px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .social-icons i {
    font-size: 18px;
  }
}

/* ============================= */
/* MOBILE */
@media (max-width: 576px) {
  .social-icons {
    top: 15px;
    right: 15px;
    gap: 10px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .social-icons i {
    font-size: 16px;
  }
}




/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
    text-align: center;
    padding: clamp(80px, 12vw, 120px) 20px 30px;
     background: radial-gradient(ellipse 80% 90% at top, #2a1d14 0%, #0f0f0f 100%);
}

/* Logo Image */
.logo-img {
    width: clamp(180px, 50vw, 440px);
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Logo Text */
.logo-text {
    font-size: clamp(32px, 6vw, 58px);
    font-weight: bold;
    color: #f4c56c;
    margin-bottom: 10px;
}

/* Tagline */
.tagline {
    font-size: clamp(16px, 3vw, 20px);
    opacity: 0.85;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Button */
.radio-button {
    background: linear-gradient(135deg, #f7d27c, #d9a441);
    border: none;
    padding: clamp(12px, 2.5vw, 15px) clamp(25px, 6vw, 40px);
    border-radius: 40px;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: bold;
    cursor: pointer;
    color: #1a1a1a;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(247, 210, 124, 0.4);
}

.radio-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(247, 210, 124, 0.7);
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .tagline {
        margin-bottom: 15px;
    }
}







/* ============================= */
/* RADIO SECTION */
/* ============================= */

#radio-section {
    display: none;
}

/* RADIO SECTION WRAPPER */
.radio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 30px);
    padding: clamp(40px, 6vw, 60px) 20px;
}

/* MAIN PLAYER CARD */
.radio-container {
    display: flex;
    align-items: center;
    gap: clamp(25px, 5vw, 60px);
    width: 100%;
    max-width: 1200px;

    background: #111;
    padding: clamp(25px, 5vw, 40px);
    border-radius: 25px;

    box-shadow:
        0 0 60px rgba(0,0,0,0.6),
        0 0 120px rgba(0,0,0,0.4);
}

/* ALBUM COVER */
.cover {
    width: clamp(180px, 30vw, 320px);
    height: clamp(180px, 30vw, 320px);
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* NOW PLAYING TEXT */
.radio-text {
    font-size: clamp(26px, 5vw, 50px);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
}

/* SUBTEXT */
.radio-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
    font-family: 'Franklin Gothic';
}

/* ============================= */
/* RECENTLY PLAYED SECTION */
/* ============================= */

.recent-tracks {
    width: 100%;
    max-width: 1100px;

    padding: clamp(20px, 4vw, 40px);
    background: rgba(255,255,255,0.02);
    border-radius: 20px;

    backdrop-filter: blur(10px);
}

.recent-tracks h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(15px, 3vw, 30px);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
}

/* TRACK LIST */
#recent-list {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 20px);
}

/* INDIVIDUAL TRACK */
.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 2.5vw, 15px) clamp(15px, 3vw, 20px);
    border-radius: 15px;
    background: rgba(255,255,255,0.03);
    transition: 0.3s ease;
}

.recent-item:hover {
    background: rgba(255,255,255,0.06);
}

/* LEFT SIDE */
.recent-left {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
}

.recent-cover {
    width: clamp(45px, 8vw, 65px);
    height: clamp(45px, 8vw, 65px);
    border-radius: 6px;
    object-fit: cover;
}

.recent-title {
    font-size: clamp(15px, 2.5vw, 18px);
    font-family: 'Franklin Gothic';
}

.recent-time {
    font-size: clamp(12px, 2vw, 14px);
    font-family: 'Franklin Gothic';
    opacity: 0.6;
}

@media (max-width: 900px) {
    .radio-container {
        flex-direction: column;
        text-align: center;
    }
}






/* ============================= */
/* LINK SECTION */
/* ============================= */
.link {
    padding: 4vw 5vw;
    width: 100%;
}

.link-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header */
.link-header {
    font-size: clamp(18px, 5vw, 32px);
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Paragraph */
.link-text {
    font-size: clamp(14px, 2.5vw, 20px);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    max-width: 600px;
    line-height: 1.6;
}






/* ============================= */
/* RELEASE GRID SECTION */
/* ============================= */

.releases {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    text-align: center;
}

.section-title {
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: clamp(30px, 6vw, 50px);
    color: #f4c56c;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(15px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.card {
    background: #181818;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 15px;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(244,197,108,0.3);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 15px;
    font-family: 'Franklin Gothic';
    color: #fff;
}

/* BUTTON */
.watch-button {
    background: transparent;
    border: 1px solid #f4c56c;
    color: #f4c56c;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 15px);
    font-size: clamp(13px, 2vw, 14px);
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.watch-button:hover {
    background: #f4c56c;
    color: #1a1a1a;
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
}




/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    background: #141414;
    max-width: 1000px;
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    text-align: center;

    box-shadow:
        0 0 60px rgba(0,0,0,0.6),
        0 0 120px rgba(0,0,0,0.4);

    border: 1px solid rgba(244,197,108,0.08);
}


.contact-heading {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #f4c56c;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-subtext {
    margin-bottom: 30px;
    color: rgba(255,255,255,0.7);
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 16px;
    transition: 0.3s ease;

    background: #1a1a1a;
    color: white;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #f4c56c;
    box-shadow: 0 0 15px rgba(244,197,108,0.3);
}


textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-button {
    background: linear-gradient(135deg, #f7d27c, #d9a441);
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    color: #1a1a1a;
    transition: 0.3s ease;

    box-shadow: 0 0 20px rgba(247, 210, 124, 0.4);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(247, 210, 124, 0.7);
}

/* Hide honeypot */
.honeypot {
    display: none;
}

/* ============================= */
/* RESPONSIVE CONTACT FORM */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .contact-container {
        padding: 40px 30px;
        border-radius: 14px;
    }

    .contact-heading {
        font-size: 28px;
    }
}

/* Phones */
@media (max-width: 600px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-container {
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: none;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-subtext {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    textarea {
        min-height: 120px;
    }

    .contact-button {
        font-size: 15px;
        padding: 12px;
    }
}





/* ============================= */
/* FOOTER SECTION */
/* ============================= */

.footer-container {
    text-align: center;
    padding: clamp(25px, 5vw, 40px) 20px;
    background: #0d0d0d;
    margin-top: clamp(30px, 6vw, 40px);
}

.footer-text {
    font-size: clamp(14px, 2.5vw, 18px);
    font-family: 'Franklin Gothic';
    opacity: 0.6;
}






/* ============================= */
/* LIGHTBOXES */
/* ============================= */
.lightbox {
  display: none;              /* stays hidden until activated */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* darker backdrop */
  backdrop-filter: blur(5px);      /* subtle blur effect */
  justify-content: center;
  align-items: center;
}

/* Content wrapper scales responsively */
.lightbox-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  max-height: 95vh;
  text-align: center;
}

/* Responsive Video */
.lightbox video {
  width: 100%;
  height: auto;
  max-height: 85vh; /* keeps video inside screen vertically */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1100;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ----------------------------- */
/*     RESPONSIVE BREAKPOINTS    */
/* ----------------------------- */

/* Tablets */
@media (max-width: 992px) {
  .close {
    font-size: 32px;
    top: 5px;
    right: 10px;
  }

  .lightbox video {
    max-height: 80vh;
  }
}

/* Phones */
@media (max-width: 600px) {
  .lightbox-content {
    width: 95%;
  }

  .lightbox video {
    border-radius: 8px;
    max-height: 75vh;
  }

  .close {
    font-size: 30px;
    padding: 8px 12px;
    right: 8px;
  }
}