* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: black;
    color: white;
}

/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('Assets/Studio 27.01.22.JPG') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
/* ================= TOP NAV ================= */

.top-nav {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 3;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 6px;
}

/* Hover underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: white;
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active click feel */
.nav-link:active::after {
    width: 100%;
}
/* Logo */

.logo {
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.logo img {
    width: 280px;
    max-width: 85%;
}

/* Title Block */

.single-title {
    position: relative;
    margin-bottom: 100px;
    text-align: center;
    z-index: 2;
}

.single-title h1 {
    font-size: 3.2rem;
    letter-spacing: 8px;
    font-weight: 600;
}

/* Subtitle */

.edition {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-top: 18px;
    text-transform: uppercase;
}

/* Micro description */

.micro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 12px;
    letter-spacing: 2px;
}

/* Unlock Button */

.unlock-btn {
    display: inline-block;
    margin-top: 45px;
    padding: 14px 50px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.unlock-btn:hover {
    background: white;
    color: black;
}

/* ================= GATE SECTION ================= */

.gate {
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.gate-content {
    max-width: 500px;
}

.gate h2 {
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.gate-message {
    color: rgba(255,255,255,0.7);
    margin-bottom: 45px;
    letter-spacing: 2px;
    line-height: 1.6;
}

/* Email Form */

.email-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.email-form input {
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    text-align: center;
    letter-spacing: 2px;
    outline: none;
}

.email-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.email-form button {
    padding: 14px;
    background: white;
    color: black;
    border: none;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

.email-form button:hover {
    background: rgba(255,255,255,0.85);
}

.gate-micro {
    margin-top: 25px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
/* Smooth collapse animation */
.gate {
    transition: all 0.8s ease;
    overflow: hidden;
}

.gate.collapse {
    height: 0;
    padding: 0;
    opacity: 0;
}
/* ================= MODAL ================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease forwards;
}

.modal-box {
    background: #000;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-box h2 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form input {
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    text-align: center;
    letter-spacing: 2px;
    outline: none;
}

.modal-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.modal-form button {
    padding: 14px;
    background: white;
    color: black;
    border: none;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-form button:hover {
    background: rgba(255,255,255,0.85);
}

.already {
    margin-top: 25px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s ease;
}

.already:hover {
    color: white;
}

/* OR Divider */

.or-divider {
    margin: 25px 0;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
}

/* Keep In Touch Button */

.keep-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 50px;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.keep-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Social Icons */

.socials {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.socials a {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.socials a:hover {
    color: white;
    transform: translateY(-3px);
}

/* ================= SOCIAL SECTION ================= */
.social-section {
    position: relative;
    background: url('Assets/In BMW Coupe.JPG') center center / cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay */
.social-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* Adjust 0.75 darker/lighter */
    z-index: 0;
}

/* Keep content above overlay */
.social-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Everything below is EXACTLY your original styling */

.social-section h2 {
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.social-text {
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
    letter-spacing: 1px;
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.social-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s ease;
    font-size: 1rem;
    letter-spacing: 2px;
}

.social-grid i {
    font-size: 1.5rem;
}

.social-grid a:hover {
    color: white;
    transform: translateY(-5px);
}

/* ================= DISCORD SECTION ================= */

.discord-section {
    background: black;
    padding: 140px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.discord-content {
    max-width: 750px;
    margin: 0 auto;
}

.discord-section h2 {
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.discord-intro {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: white;
}

.discord-text {
    color: rgba(255,255,255,0.65);
    margin-bottom: 22px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.discord-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 60px;
    background: white;
    color: black;
    text-decoration: none;
    letter-spacing: 3px;
    transition: 0.3s ease;
}

.discord-btn:hover {
    background: rgba(255,255,255,0.85);
}
.spotify-section {
    position: relative;
    padding: 140px 20px;
    background: url('Assets/seated.JPG') center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}
.spotify-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 0;
}

.spotify-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.spotify-section h2 {
    margin-bottom: 30px;
}

.discography-msg {
    max-width: 540px;
    margin: 0 auto 35px auto;
 font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.4px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.spotify-embed {
    max-width: 500px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}
.spotify-overlay {
    pointer-events: none;
}

.apple-embed {
    max-width: 500px;
    margin: 40px auto 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}
.apple-embed iframe {
    background: transparent;
    filter: brightness(1.1);
}
/* Fade Animation */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.apple-card {
    position: relative;
    display: block;
    max-width: 500px;
    height: 260px;
    margin: 40px auto 0 auto;
    background: url('Assets/seated.JPG') center center / cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

.apple-card:hover {
    transform: scale(1.03);
}

.apple-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.apple-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.apple-card-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}