/*==================================================
  SATHI VIDEO - WEDDING WEBSITE
  STYLE.CSS (PART 1)
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --black:#0b0b0b;
    --gold:#d4af37;
    --white:#ffffff;
    --gray:#d8d8d8;
    --overlay:rgba(0,0,0,.55);

}

body{

    background:var(--black);
    color:var(--white);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

li{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ================= HEADER ================= */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    transition:.4s;

}

/* ================= NAVBAR ================= */

.navbar{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

}

.logo{

    color:var(--white);
    font-size:34px;
    font-family:'Cinzel',serif;
    font-weight:700;

}

.logo span{

    color:var(--gold);

}

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    color:var(--white);
    font-size:16px;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--gold);

}

.book-btn{

    background:var(--gold);
    color:#000;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.book-btn:hover{

    background:#fff;

}

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/* ================= HERO ================= */

.hero{

    width:100%;
    height:100vh;

    position:relative;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.hero-video{

    position:absolute;

    top:50%;
    left:50%;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

}

.overlay{

    position:absolute;

    inset:0;

    background:var(--overlay);

}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;
    max-width:900px;

}

.hero-content h5{

    color:var(--gold);

    font-size:18px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:82px;

    font-family:'Cinzel',serif;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:var(--gold);

}

.hero-content p{

    color:var(--gray);

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

/* ================= BUTTON ================= */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    padding:15px 36px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.btn-primary{

    background:var(--gold);

    color:#000;

}

.btn-primary:hover{

    background:#fff;

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#000;

}

/* ================= SCROLL ================= */

.scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    letter-spacing:3px;

    font-size:13px;

    z-index:5;

    animation:updown 1.8s infinite;

}

@keyframes updown{

    0%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,-10px);
    }

    100%{
        transform:translate(-50%,0);
    }

}

/*=========================================
        SECTION COMMON
=========================================*/

section{
    padding:100px 0;
}

section h2{
    font-family:'Cinzel',serif;
    font-size:48px;
    color:var(--white);
    text-align:center;
    margin-bottom:20px;
}

section .section-subtitle{
    text-align:center;
    color:var(--gold);
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

section .section-text{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:#bfbfbf;
    line-height:1.8;
    margin-bottom:60px;
}

/*=========================================
        ABOUT
=========================================*/

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.about-image{

    overflow:hidden;
    border-radius:20px;

}

.about-image img{

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content h2{

    text-align:left;
    margin-bottom:20px;

}

.about-content p{

    color:#cccccc;
    line-height:1.9;
    margin-bottom:20px;

}

.about-info{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;

}

.info-box{

    background:#151515;
    border:1px solid rgba(255,255,255,.08);
    padding:25px;
    border-radius:15px;
    text-align:center;
    transition:.4s;

}

.info-box:hover{

    transform:translateY(-8px);
    border-color:var(--gold);

}

.info-box h3{

    font-size:35px;
    color:var(--gold);

}

.info-box span{

    display:block;
    margin-top:10px;
    color:#ddd;

}

/*=========================================
        SERVICES
=========================================*/

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:#121212;

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

}

.service-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:#bdbdbd;

    line-height:1.8;

}

/*=========================================
        PORTFOLIO
=========================================*/

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery img{

    width:100%;
    height:350px;

    object-fit:cover;

    border-radius:15px;

    transition:.5s;

}

.gallery img:hover{

    transform:scale(1.05);

}

/* Portfolio Item */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:15px;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    font-size:35px;

    color:#fff;

}

/*=========================================
        SECTION SPACING
=========================================*/

#about{

    background:#0d0d0d;

}

#services{

    background:#111111;

}

#portfolio{

    background:#0b0b0b;

}

/*=========================================
        FILMS SECTION
=========================================*/

#films{
    background:#111;
}

.film-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.film-card{
    overflow:hidden;
    border-radius:18px;
    background:#181818;
    transition:.4s;
}

.film-card iframe{
    width:100%;
    height:250px;
    border:none;
}

.film-card:hover{
    transform:translateY(-10px);
}

/*=========================================
        PRICING
=========================================*/

#pricing{
    background:#0b0b0b;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.price-card{

    background:#151515;

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.price-card h3{

    font-size:32px;

    color:var(--gold);

    margin-bottom:20px;

}

.price-card h2{

    font-size:48px;

    margin-bottom:20px;

}

.price-card ul{

    margin:30px 0;

}

.price-card ul li{

    margin:15px 0;

    color:#d8d8d8;

}

.price-card .btn{

    width:100%;

}

/*=========================================
        TESTIMONIALS
=========================================*/

#testimonials{

    background:#111;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#181818;

    border-radius:18px;

    padding:35px;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:80px;

    height:80px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#cccccc;

    line-height:1.8;

}

.testimonial-card h4{

    margin-top:20px;

    color:var(--gold);

}

/*=========================================
        CONTACT
=========================================*/

#contact{

    background:#0d0d0d;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-form{

    display:flex;

    flex-direction:column;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#1b1b1b;

    border:none;

    color:#fff;

    padding:18px;

    margin-bottom:20px;

    border-radius:10px;

    outline:none;

}

.contact-form textarea{

    height:180px;

    resize:none;

}

.contact-form button{

    background:var(--gold);

    color:#000;

    padding:18px;

    border:none;

    cursor:pointer;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.contact-form button:hover{

    background:#fff;

}

.contact-info h3{

    color:var(--gold);

    margin-bottom:20px;

}

.contact-info p{

    color:#ccc;

    margin-bottom:15px;

}

.contact-info i{

    color:var(--gold);

    margin-right:10px;

}

.map{

    margin-top:30px;

    border-radius:15px;

    overflow:hidden;

}

.map iframe{

    width:100%;

    height:280px;

    border:none;

}

/*=========================================
        SOCIAL
=========================================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#181818;

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:var(--gold);

    color:#000;

}

/*=========================================
        FOOTER
=========================================*/

footer{

    background:#050505;
    padding:80px 0 30px;
    color:#fff;

}

.footer-container{

    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;

}

.footer-logo{

    font-family:'Cinzel',serif;
    font-size:36px;
    color:#fff;

}

.footer-logo span{

    color:var(--gold);

}

.footer-about{

    color:#bdbdbd;
    line-height:1.8;
    margin-top:20px;

}

.footer-title{

    font-size:22px;
    margin-bottom:20px;
    color:var(--gold);

}

.footer-links{

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#ccc;
    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);
    padding-left:8px;

}

.footer-contact p{

    margin-bottom:15px;
    color:#ccc;

}

.footer-contact i{

    color:var(--gold);
    margin-right:10px;

}

/*=============================
        FOOTER SOCIAL
==============================*/

.footer-social{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.footer-social a{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#1b1b1b;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--gold);
    color:#000;

}

/*=============================
      COPYRIGHT
==============================*/

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#999;

    font-size:15px;

}

/*=============================
      SCROLL TO TOP
==============================*/

#scrollTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--gold);

    color:#000;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    z-index:999;

    opacity:0;
    visibility:hidden;

    transition:.4s;

}

#scrollTop.active{

    opacity:1;
    visibility:visible;

}

#scrollTop:hover{

    transform:translateY(-5px);

}

/*=============================
      STICKY NAVBAR
==============================*/

.header.sticky{

    background:rgba(0,0,0,.90);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

/*=============================
      UTILITIES
==============================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}

/*=============================
      ANIMATION
==============================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .8s ease;

}

@keyframes zoom{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*=============================
      MOBILE
==============================*/

@media(max-width:991px){

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.hero-content h1{

font-size:55px;

}

.about-wrapper,
.contact-wrapper{

grid-template-columns:1fr;

}

.gallery{

grid-template-columns:repeat(2,1fr);

}

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.gallery{

grid-template-columns:1fr;

}

.pricing-grid,
.service-grid,
.film-grid,
.testimonial-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:480px){

.hero-content h1{

font-size:34px;

}

section{

padding:70px 0;

}

.logo{

font-size:28px;

}

.book-btn{

display:none;

}

}

/* ===============================
      PORTFOLIO FILTER
================================*/

.portfolio-filter{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:50px;

}

.portfolio-filter button{

padding:12px 28px;

border:none;

border-radius:40px;

background:#1d1d1d;

color:#fff;

cursor:pointer;

transition:.4s;

font-size:15px;

}

.portfolio-filter button:hover,
.portfolio-filter button.active{

background:#d4af37;

color:#000;

}

/* Gallery */

.gallery{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

}

.gallery-item img{

width:100%;

height:420px;

object-fit:cover;

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.1);

}

.gallery-overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,.45);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.4s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay h3{

font-family:'Cinzel',serif;

font-size:30px;

color:#fff;

}

.film-card video{

    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;

}

..package-note{
    margin:15px 0 20px;
    font-size:14px;
    color:#bdbdbd;
    line-height:1.6;
    font-style:italic;
}