/* ======================================================
   CRAZY TRAIN PRODUCTIONS
   STYLE.CSS
   PART 1
======================================================*/

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#080808;

    color:#f5efe3;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

/* LINKS */

a{

    text-decoration:none;

    color:inherit;

}

/* ======================================================
   NAVBAR
======================================================*/

.navbar{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(12,12,12,.90);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(123,76,201,.35);

}

.nav-container{

    max-width:1200px;

    margin:auto;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.brand{

    font-family:'Lilita One',cursive;

    color:#f6df9c;

    font-size:1.6rem;

    letter-spacing:1px;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links a{

    color:white;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:#b08aff;

}

/* ======================================================
   HERO
======================================================*/

.hero{

    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:60px 20px;

    background:

    radial-gradient(circle at top,
    #6132b8 0%,
    #281544 35%,
    #080808 85%);

}

.hero-content{

    max-width:900px;

}

.hero-logo{

    width:270px;

    max-width:70%;

    margin-bottom:25px;

}

.hero h1{

    font-family:'Lilita One',cursive;

    font-size:4.5rem;

    color:#f6df9c;

    line-height:1.05;

    margin-bottom:25px;

}

.hero p{

    max-width:720px;

    margin:auto;

    color:#dddddd;

    line-height:1.8;

    font-size:1.1rem;

}

.hero-buttons{

    margin-top:40px;

}

/* ======================================================
   BUTTONS
======================================================*/

.btn-main{

    display:inline-block;

    background:#8f62e5;

    color:white;

    padding:15px 32px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

    margin:8px;

}

.btn-main:hover{

    transform:translateY(-4px);

    background:#9d72ef;

    box-shadow:0 12px 30px rgba(143,98,229,.35);

}

.btn-outline{

    display:inline-block;

    border:2px solid #8f62e5;

    color:white;

    padding:15px 32px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

    margin:8px;

}

.btn-outline:hover{

    background:#8f62e5;

}

/* ======================================================
   HOME SERVICES
======================================================*/

.services-section{

    max-width:1250px;

    margin:auto;

    padding:100px 20px;

}

.services-section h2{

    text-align:center;

    font-family:'Lilita One',cursive;

    color:#f6df9c;

    font-size:3rem;

    margin-bottom:60px;

}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(270px,1fr));

    gap:35px;

}

.service-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-radius:28px;

    overflow:hidden;

    box-shadow:

    0 15px 40px rgba(0,0,0,.30);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 25px 55px rgba(0,0,0,.45);

}

.service-image{

    width:100%;

    height:250px;

    object-fit:cover;

    object-position:center 10%;

    display:block;

    border-radius:18px;

}

.dj-image{

    width:100%;

    height:250px;

    object-fit:contain;

    object-position:center;

    padding:18px;

    display:block;

    transform:scale(1.2);

}

.service-card h3{

    padding:22px 25px 10px;

    font-size:1.45rem;

    color:#f6df9c;

    font-family:'Inter',sans-serif;

    font-weight:700;

}

.service-card p{

    padding:0 25px 28px;

    line-height:1.7;

    color:#d8d8d8;

    font-size:.97rem;

}
/* ======================================================
   WHY CHOOSE CRAZY TRAIN
======================================================*/

.why-section{

    background:linear-gradient(
    180deg,
    #12091f 0%,
    #0b0b0b 100%);

    padding:100px 20px;

}

.why-section h2{

    text-align:center;

    font-family:'Lilita One',cursive;

    color:#f6df9c;

    font-size:3rem;

    margin-bottom:60px;

}

.why-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.why-box{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    border-radius:24px;

    padding:35px;

    transition:.3s;

}

.why-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.why-box h3{

    color:#f6df9c;

    font-family:'Inter',sans-serif;

    font-weight:700;

    margin-bottom:15px;

    font-size:1.4rem;

}

.why-box p{

    color:#dddddd;

    line-height:1.7;

}

/* ======================================================
   PAGE HERO
======================================================*/

.page-hero{

    text-align:center;

    padding:90px 20px 50px;

}

.page-hero h1{

    font-family:'Lilita One',cursive;

    font-size:4rem;

    color:#f6df9c;

    margin-bottom:20px;

}

.page-hero p{

    max-width:750px;

    margin:auto;

    color:#cccccc;

    line-height:1.7;

}

/* ======================================================
   SERVICES PAGE
======================================================*/

.service-showcase{

    max-width:1200px;

    margin:auto;

    padding:20px;

    text-align:center;

}

.servicepage-image{

    width:100%;

    max-width:1000px;

    border-radius:30px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.45);

}

/* ======================================================
   CALL TO ACTION
======================================================*/

.services-cta{

    text-align:center;

    padding:90px 20px;

}

.services-cta h2{

    font-family:'Lilita One',cursive;

    font-size:2.8rem;

    color:#f6df9c;

    margin-bottom:20px;

}

.services-cta p{

    color:#cccccc;

    margin-bottom:30px;

    font-size:1.1rem;

}

/* ======================================================
   GALLERY
======================================================*/

.gallery-section{

    max-width:1200px;

    margin:70px auto;

    padding:0 20px;

}

.gallery-section h2{

    text-align:center;

    font-family:'Lilita One',cursive;

    font-size:2.5rem;

    color:#f6df9c;

    margin-bottom:35px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:28px;

}

.gallery-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    transition:.35s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.28);

}

.gallery-grid img:hover{

    transform:scale(1.03);

    box-shadow:
    0 25px 55px rgba(0,0,0,.45);

}

/* ======================================================
   LIGHTBOX
======================================================*/

.lightbox{

    display:none;

    position:fixed;

    z-index:9999;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    padding:40px;

}

.lightbox-content{

    max-width:90%;

    max-height:90%;

    border-radius:20px;

    box-shadow:
    0 0 50px rgba(0,0,0,.8);

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:45px;

    color:white;

    font-size:55px;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    transform:scale(1.15);

}
/* ======================================================
   CONTACT PAGE
======================================================*/

.contact-hero{

    text-align:center;

    padding:90px 20px 40px;

}

.contact-logo{

    width:180px;

    display:block;

    margin:0 auto 25px;

}

.contact-hero h1{

    font-family:'Lilita One',cursive;

    font-size:3.6rem;

    color:#f6df9c;

    margin-bottom:20px;

}

.contact-hero p{

    color:#d0d0d0;

    max-width:700px;

    margin:auto;

}

.contact-wrapper{

    max-width:1200px;

    margin:50px auto;

    padding:20px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.contact-box{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.contact-box h2{

    color:#f6df9c;

    font-family:'Inter',sans-serif;

    font-weight:700;

    margin-bottom:18px;

}

.contact-link{

    color:white;

    transition:.3s;

    word-break:break-word;

}

.contact-link:hover{

    color:#b08aff;

}

.email-link{

    font-size:.92rem;

}

.quote-section{

    text-align:center;

    padding:70px 20px;

}

.quote-section h2{

    font-family:'Lilita One',cursive;

    font-size:2.5rem;

    color:#f6df9c;

    margin-bottom:20px;

}

.quote-section p{

    color:#cccccc;

    margin-bottom:30px;

}

/* ======================================================
   BRAND SECTION
======================================================*/

.brand-section{

    text-align:center;

    padding:80px 20px;

}

.bottom-brand{

    width:340px;

    max-width:80%;

}

/* ======================================================
   FOOTER
======================================================*/

footer{

    background:#050505;

    text-align:center;

    padding:60px 20px;

    border-top:1px solid rgba(123,76,201,.30);

}

footer h3{

    font-family:'Lilita One',cursive;

    color:#f6df9c;

    margin-bottom:15px;

}

footer p{

    color:#bbbbbb;

    margin:6px 0;

}

/* ======================================================
   MOBILE
======================================================*/

@media(max-width:900px){

    .nav-container{

        flex-direction:column;

        gap:18px;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero{

        min-height:auto;

        padding:90px 20px;

    }

    .hero-logo{

        width:220px;

    }

    .hero h1{

        font-size:3rem;

    }

    .hero p{

        font-size:1rem;

    }

    .services-section h2,

    .why-section h2,

    .page-hero h1,

    .gallery-section h2,

    .contact-hero h1{

        font-size:2.5rem;

    }

    .service-image,

    .dj-image{

        height:220px;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid img{

        height:260px;

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:600px){

    .hero h1{

        font-size:2.4rem;

    }

    .btn-main,

    .btn-outline{

        width:100%;

        max-width:320px;

    }

    .service-card{

        border-radius:22px;

    }

}
/* CONTACT MESSAGE */

.contact-message{

    max-width:800px;

    margin:0 auto;

    padding:20px 20px 70px;

    text-align:center;

}

.contact-message p{

    color:#d0d0d0;

    font-size:1.1rem;

    line-height:1.8;

}
/*=========================================
          NEW SERVICES PAGE
=========================================*/

.service-grid{

    max-width:1300px;

    margin:70px auto;

    padding:0 20px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.service-panel{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.service-panel:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.40);

}

.panel-image{

    position:relative;

    overflow:hidden;

}

.panel-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.service-panel:hover .panel-image img{

    transform:scale(1.08);

}

.panel-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px 25px 25px;

    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,0));

}

.panel-overlay h2{

    color:#f6df9c;

    font-family:'Lilita One',cursive;

    font-size:2rem;

    letter-spacing:1px;

}

.panel-content{

    padding:28px;

}

.panel-content p{

    color:#d6d6d6;

    line-height:1.8;

    margin-bottom:25px;

}

.feature-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.feature-tags span{

    background:rgba(143,98,229,.18);

    color:#f6df9c;

    border:1px solid rgba(143,98,229,.35);

    border-radius:999px;

    padding:10px 16px;

    font-size:.9rem;

    transition:.25s;

}

.feature-tags span:hover{

    background:#8f62e5;

    color:white;

}

.service-showcase{

    max-width:1200px;

    margin:0 auto 60px;

    padding:0 20px;

}

.servicepage-image{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

@media(max-width:900px){

    .service-grid{

        grid-template-columns:1fr;

    }

    .panel-image img{

        height:260px;

    }

}
/*==================================
        SERVICES PAGE
==================================*/

.service-showcase{

    max-width:1200px;

    margin:0 auto 60px;

    padding:0 20px;

}

.servicepage-image{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.service-cards{

    max-width:1250px;

    margin:70px auto;

    padding:0 20px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    display:block;

    border-radius:22px;

    overflow:hidden;

    text-decoration:none;

    background:#181818;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.25);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 50px rgba(0,0,0,.45);

}

.service-card-image{

    overflow:hidden;

}

.service-card-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.03);

}

@media(max-width:900px){

    .service-cards{

        grid-template-columns:1fr;

    }

}

/*==================================
        LIGHTBOX
==================================*/

.flyer-lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    z-index:9999;

    padding:40px;

}

.flyer-lightbox img{

    max-width:95%;

    max-height:95%;

    border-radius:16px;

}

.flyer-close{

    position:absolute;

    top:20px;

    right:35px;

    font-size:55px;

    color:white;

    cursor:pointer;

    font-weight:bold;

}
/*==================================
            QUOTE PAGE
==================================*/

.quote-form-section{

    max-width:1000px;

    margin:60px auto;

    padding:0 20px 80px;

}

.quote-form-section form{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(123,76,201,.25);

    border-radius:24px;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.full-width{

    grid-column:1 / -1;

}

.form-group label{

    color:#f6df9c;

    font-weight:600;

    margin-bottom:8px;

    font-family:'Inter',sans-serif;

}

.form-group input,
.form-group textarea{

    background:#1c1c1c;

    border:1px solid #333;

    border-radius:14px;

    padding:15px;

    color:white;

    font-size:1rem;

    font-family:'Inter',sans-serif;

    transition:.3s;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#8f62e5;

    box-shadow:0 0 15px rgba(143,98,229,.35);

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.checkbox-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(200px,1fr));

    gap:12px 20px;

    margin-top:10px;

}

.checkbox-grid label{

    color:white;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:400;

}

.checkbox-grid input{

    width:18px;

    height:18px;

    accent-color:#8f62e5;

}

.quote-form-section .btn-main{

    margin-top:20px;

    min-width:250px;

}

@media(max-width:800px){

    .form-grid{

        grid-template-columns:1fr;

    }

    .checkbox-grid{

        grid-template-columns:1fr;

    }

    .quote-form-section form{

        padding:30px;

    }

}
/*==================================
          THANK YOU PAGE
==================================*/

.thankyou-section{

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

}

.thankyou-card{

    max-width:700px;

    width:100%;

    text-align:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(123,76,201,.25);

    border-radius:24px;

    padding:60px 40px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.thankyou-check{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#7b4cc9;

    color:white;

    font-size:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

}

.thankyou-card h1{

    font-family:'Lilita One',cursive;

    color:#f6df9c;

    font-size:3rem;

    margin-bottom:20px;

}

.thankyou-card p{

    color:#d0d0d0;

    margin-bottom:20px;

    line-height:1.7;

}

.thankyou-card .btn-main{

    margin-top:20px;

    display:inline-block;

}