/* ===================================================
   ADINDA STUDIOS
   Photography & Videography Website
   Style.css
   Part 1
=================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f10;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#c8a96a;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#e6c88f;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Loader */

#loader{
    position:fixed;
    inset:0;
    background:#0f0f10;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader{
    width:70px;
    height:70px;
    border:6px solid #333;
    border-top:6px solid #c8a96a;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* Navbar */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    width:100%;
    padding:22px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.4s;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(12px);

}

.navbar.scrolled{

    background:#111;

    box-shadow:0 8px 20px rgba(0,0,0,.4);

}

.logo{

    font-size:30px;

    font-weight:700;

    color:#fff;

}

.logo span{

    color:#c8a96a;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar ul li a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#c8a96a;

}

/* Hero */

.hero{

    height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    width:90%;

    max-width:900px;

}

.hero h1{

    font-size:64px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:#ddd;

    margin-bottom:40px;

}

/* Button */

.btn{

    display:inline-block;

    padding:15px 40px;

    border-radius:50px;

    background:#c8a96a;

    color:#111;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    margin:10px;

}

.btn:hover{

    background:#fff;

    transform:translateY(-4px);

}

.btn2{

    display:inline-block;

    padding:15px 40px;

    border-radius:50px;

    border:2px solid #c8a96a;

    color:#fff;

    text-decoration:none;

    transition:.35s;

    margin:10px;

}

.btn2:hover{

    background:#c8a96a;

    color:#111;

}

/* Section */

section{

    padding:100px 0;

}

section h2{

    text-align:center;

    font-size:40px;

    margin-bottom:20px;

    color:#fff;

}

section p{

    color:#cfcfcf;

}

/* About */

.about-home{

    background:#151515;

}

.about-home p{

    max-width:850px;

    margin:auto;

    text-align:center;

    font-size:18px;

}

/* Services */

.services-home{

    background:#101010;

}

.cards{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    padding:40px 25px;

    border-radius:20px;

    transition:.35s;

    text-align:center;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#c8a96a;

}

.card i{

    font-size:55px;

    color:#c8a96a;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

}

/* Counter */

.counter{

    background:#151515;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    text-align:center;

}

.counter div{

    padding:40px;

}

.counter h2{

    color:#c8a96a;

    font-size:48px;

}

/* CTA */

.cta{

    text-align:center;

    background:linear-gradient(135deg,#111,#1e1e1e);

}

.cta p{

    margin-bottom:35px;

}

/* ==========================================
   PORTFOLIO
========================================== */

.portfolio{

    background:#111;

}

.portfolio-grid{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.4);

}

.portfolio-item img{

    width:100%;

    height:100%;

    display:block;

    transition:.6s;

}

.portfolio-item:hover img{

    transform:scale(1.12);

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.portfolio-item:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-overlay h3{

    color:#fff;

    font-size:28px;

}

/* ==========================================
   PRICING
========================================== */

.pricing{

    background:#151515;

}

.price-grid{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.price-card{

    background:#1d1d1d;

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.price-card:hover{

    transform:translateY(-12px);

    border-color:#c8a96a;

}

.price-card h3{

    font-size:28px;

    margin-bottom:20px;

}

.price{

    font-size:48px;

    color:#c8a96a;

    margin-bottom:20px;

    font-weight:700;

}

.price-card ul{

    list-style:none;

    margin-bottom:35px;

}

.price-card li{

    padding:10px;

    color:#ddd;

}

/* ==========================================
   TESTIMONI
========================================== */

.testimonial{

    background:#111;

}

.testimonial-grid{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testi-card{

    background:#1b1b1b;

    padding:35px;

    border-radius:18px;

}

.testi-card img{

    width:80px;

    height:80px;

    border-radius:50%;

    margin-bottom:15px;

}

.testi-card h4{

    color:#c8a96a;

    margin-bottom:10px;

}

/* ==========================================
   FAQ
========================================== */

.faq{

    background:#151515;

}

.faq-item{

    width:90%;

    max-width:900px;

    margin:20px auto;

    background:#1b1b1b;

    border-radius:15px;

    overflow:hidden;

}

.faq-question{

    padding:22px;

    font-weight:600;

    cursor:pointer;

}

.faq-answer{

    padding:0 22px 22px;

    display:none;

    color:#ccc;

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    background:#111;

}

.contact-box{

    width:90%;

    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

}

.contact form{

    display:flex;

    flex-direction:column;

}

.contact input,

.contact textarea{

    padding:16px;

    margin-bottom:18px;

    border:none;

    border-radius:10px;

    background:#222;

    color:#fff;

    outline:none;

}

.contact textarea{

    height:180px;

    resize:none;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#0b0b0b;

    text-align:center;

    padding:70px 20px;

}

footer h3{

    color:#c8a96a;

    margin-bottom:15px;

}

.social{

    margin:30px 0;

}

.social a{

    display:inline-flex;

    width:50px;

    height:50px;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#1f1f1f;

    color:#fff;

    text-decoration:none;

    margin:0 8px;

    transition:.35s;

}

.social a:hover{

    background:#c8a96a;

    color:#111;

}

/* ==========================================
   FLOATING WHATSAPP
========================================== */

.wa{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    z-index:999;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero h1{

font-size:48px;

}

.navbar{

padding:18px 5%;

}

}

@media(max-width:768px){

.navbar{

flex-direction:column;

gap:15px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

.btn,

.btn2{

display:block;

width:230px;

margin:15px auto;

text-align:center;

}

section{

padding:70px 0;

}

}

@media(max-width:480px){

.hero h1{

font-size:30px;

}

.logo{

font-size:24px;

}

section h2{

font-size:30px;

}

.price{

font-size:38px;

}

.card{

padding:30px 20px;

}

}

/* ===========================
   MEET OUR CREW PREMIUM
=========================== */

.team-section{

padding:100px 8%;

background:linear-gradient(180deg,#0a0a0a,#171717);

}

.section-title{

text-align:center;

font-size:42px;

color:#fff;

margin-bottom:10px;

}

.section-subtitle{

text-align:center;

color:#bdbdbd;

margin-bottom:60px;

}

.team-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:35px;

}

.team-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

overflow:hidden;

transition:.4s;

position:relative;

}

.team-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 45px rgba(201,169,106,.25);

}

.team-image{

position:relative;

height:340px;

overflow:hidden;

}

.team-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.team-card:hover img{

transform:scale(1.08);

}

.team-image::after{

content:"";

position:absolute;

left:0;

right:0;

bottom:0;

height:120px;

background:linear-gradient(transparent,#111);

}

.team-social{

position:absolute;

top:18px;

right:18px;

opacity:0;

transition:.35s;

}

.team-card:hover .team-social{

opacity:1;

}

.team-social a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:#c8a96a;

color:#111;

border-radius:50%;

font-size:20px;

text-decoration:none;

}

.team-content{

padding:28px;

text-align:center;

}

.team-content h3{

color:#fff;

margin-bottom:8px;

font-size:24px;

}

.team-content span{

display:inline-block;

padding:7px 18px;

border-radius:40px;

background:#c8a96a;

color:#111;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.team-content p{

color:#d5d5d5;

line-height:1.8;

font-size:15px;

}