/* ==========================================
   OpenGigs v1.0
   Part 1
========================================== */

:root{

    --black:#0d0d0d;
    --dark:#171717;
    --card:#202020;
    --gold:#D4AF37;
    --gold-light:#E8C867;
    --white:#ffffff;
    --text:#d8d8d8;
    --border:rgba(255,255,255,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--black);
    color:white;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);
    margin:auto;

}

/* ==========================================
   Navigation
========================================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(0,0,0,.45);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav-container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:68px;

}

.nav-links{

    display:flex;

    gap:45px;

}

.nav-links a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-buttons{

    display:flex;

    gap:18px;

    align-items:center;

}

.login-btn{

    color:white;

    font-weight:600;

}

.join-btn{

    background:var(--gold);

    color:#111;

    padding:14px 24px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.join-btn:hover{

    background:var(--gold-light);

    transform:translateY(-2px);

}

/* ==========================================
   HERO
========================================== */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url("images/concert.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at right,
    rgba(212,175,55,.10),
    transparent 60%);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;

    padding-top:120px;

    padding-bottom:70px;

}

.launch-badge{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(212,175,55,.45);

    border-radius:999px;

    color:var(--gold);

    background:rgba(212,175,55,.08);

    margin-bottom:30px;

    font-size:.95rem;

}

.hero h1{

    font-size:4.5rem;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;

}

.hero p{

    color:var(--text);

    font-size:1.2rem;

    line-height:1.8;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.primary-btn{

    background:var(--gold);

    color:#111;

    padding:18px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    background:var(--gold-light);

    transform:translateY(-3px);

}

.secondary-btn{

    border:2px solid var(--gold);

    color:white;

    padding:18px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.secondary-btn:hover{

    background:var(--gold);

    color:#111;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:24px;

    color:#d8d8d8;

    font-size:.95rem;

}

/* ==========================================
   Marketplace Card
========================================== */

.marketplace-card{

    background:rgba(25,25,25,.92);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:32px;

    backdrop-filter:blur(18px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.45);

}

.card-header{

    color:var(--gold);

    font-size:1.4rem;

    font-weight:700;

    margin-bottom:25px;

}

.gig{

    background:#2a2a2a;

    border-radius:18px;

    padding:22px;

    margin-bottom:18px;

}

.gig-date{

    font-weight:700;

    margin-bottom:18px;

}

.gig-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

}

.gig-info span{

    color:#bbbbbb;

}

.gig-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:14px;

}

.gig-price{

    color:var(--gold);

    font-size:1.4rem;

    font-weight:700;

}

.apply-btn{

    width:100%;

    margin-top:18px;

    border:none;

    background:var(--gold);

    color:#111;

    padding:16px;

    border-radius:12px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.apply-btn:hover{

    background:var(--gold-light);

}

.booked{

    opacity:.7;

}

.gig-status{

    margin-top:15px;

    color:#67d667;

    font-weight:700;

}

.privacy-note{

    margin-top:22px;

    text-align:center;

    color:#aaaaaa;

    font-size:.85rem;

    line-height:1.5;

}
/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works{

    padding:120px 0;

    background:#111;

}

.how-it-works h2,
.why-opengigs h2,
.faq h2,
.cta h2{

    text-align:center;

    font-size:2.8rem;

    margin-bottom:20px;

}

.section-subtitle{

    text-align:center;

    color:#bfbfbf;

    margin-bottom:60px;

    font-size:1.1rem;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 20px 40px rgba(0,0,0,.4);

}

.icon{

    font-size:2.5rem;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:18px;

    color:var(--gold);

}

.card ul{

    padding-left:18px;

    list-style:disc;

}

.card li{

    margin-bottom:12px;

    color:#d5d5d5;

}

/* ==========================================
   WHY OPENGIGS
========================================== */

.why-opengigs{

    padding:120px 0;

    background:#0d0d0d;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.why-item{

    background:#191919;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.why-item:hover{

    transform:translateY(-6px);

    border-color:rgba(212,175,55,.35);

}

.why-item h3{

    color:var(--gold);

    margin-bottom:16px;

}

.why-item p{

    color:#d2d2d2;

    line-height:1.8;

}

/* ==========================================
   CTA
========================================== */

.cta{

    padding:120px 0;

    text-align:center;

    background:

    linear-gradient(

    rgba(0,0,0,.80),

    rgba(0,0,0,.80)

    ),

    url("images/concert.jpg");

    background-size:cover;

    background-position:center;

}

.cta p{

    max-width:700px;

    margin:25px auto 45px;

    color:#d6d6d6;

    line-height:1.8;

    font-size:1.1rem;

}

/* ==========================================
   FAQ
========================================== */

.faq{

    padding:120px 0;

    background:#111;

}

.faq-item{

    background:#1a1a1a;

    border-radius:16px;

    padding:28px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.05);

}

.faq-item h3{

    color:var(--gold);

    margin-bottom:12px;

}

.faq-item p{

    color:#d2d2d2;

    line-height:1.8;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#090909;

    padding:70px 0 40px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-content{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

    align-items:flex-start;

}

.footer-brand img{

    height:65px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#aaaaaa;

    max-width:320px;

    line-height:1.8;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#d5d5d5;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

.footer-copy{

    display:flex;

    align-items:flex-end;

    justify-content:flex-end;

    color:#888;

    text-align:right;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

}

.cards{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.footer-brand img{

margin:auto auto 20px;

}

.footer-brand p{

margin:auto;

}

.footer-copy{

justify-content:center;

text-align:center;

}

}

@media(max-width:768px){

.nav-links{

display:none;

}

.nav-container{

height:80px;

}

.logo img{

height:54px;

}

.hero{

padding-top:80px;

}

.hero h1{

font-size:3rem;

}

.hero p{

font-size:1rem;

}

.launch-badge{

font-size:.85rem;

}

.primary-btn,
.secondary-btn{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.marketplace-card{

margin-top:40px;

}

.how-it-works,
.why-opengigs,
.cta,
.faq{

padding:80px 0;

}

.how-it-works h2,
.why-opengigs h2,
.faq h2,
.cta h2{

font-size:2.1rem;

}

}

/* ===========================
   Early Access Popup
=========================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.80);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #111;
    color: #fff;
    width: 90%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    animation: popupFade .35s ease;
    position: relative;
}

.popup-logo {
    width: 170px;
    margin-bottom: 20px;
}

.modal-content h1{
    font-size:56px;
    line-height:1.1;
    margin:15px 0 10px;
    color:#fff;
}

.modal-content h2{
    font-size:30px;
    color:#d4af37;
    margin-bottom:30px;
}

.modal-content h3 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 25px;
}

.modal-content p {
    line-height: 1.7;
    font-size: 18px;
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.popup-box {
    background: #1b1b1b;
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    padding: 22px;
    margin: 25px 0;
}

.popup-box h4 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.popup-box li {
    margin: 12px 0;
    color: #fff;
    font-size: 17px;
}

.spots {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0;
}

.popup-footer {
    color: #888;
    margin-top: 20px;
    font-size: 14px;
}


.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.popup-btn {
    background: #d4af37;
    color: #111;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .25s;
}


.popup-btn:hover {
    background: #c59b1e;
    transform: translateY(-2px);
}

#closePopup {
    display: block;
    margin: 25px auto 0;
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
}

#closePopup:hover {
    color: white;
    border-color: #666;
}

.close {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 34px;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: white;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-more{
    text-align:center;
    margin-top:50px;
}

.faq-more .btn-primary{
    display:inline-block;
    padding:18px 40px;
}