/* =========================================
SHOVA CREATION PHOTOGRAPHY
PREMIUM WEDDING PHOTOGRAPHY STYLE
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {

    --primary: #D4A373;
    --primary-dark: #B08968;
    --bg:#FBF5E9;
    --card: #FFFFFF;
    --text: #2E2A27;
    --glass: rgba(255, 255, 255, 0.35);
    --shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
html,
body{
    overflow-x:hidden;
    width:100%;
}

/* GLOBAL */
.container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}
section {
    padding: 30px 0;
}
img {
    width: 100%;
    display: block;
}
h1,
h2,
h3 {
    font-weight: 600;
}
h2 {
    margin-bottom: 60px;
    font-size: 40px;
    color: var(--primary-dark);
}

   /* SECTION TITLES */
.section-title {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto 30px;
    font-size: 36px;
    font-weight: 600;
    color: #B08968;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            #D4A373,
            #C89B6D);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

/* Hide Navbar */
.header.hide {
    transform: translateY(-100%);
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* NAVBAR */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: .3s;
}
.nav-links a:hover {
    color: #D4A373;
}
.hamburger{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
    z-index:10000;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

/* Lighter overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: white;
    z-index: 5;
    animation: fadeUp 1.5s ease;
}
#portfolio,
#services,
#director,
#about{
    padding:30px 0;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 30px;
}
.lightbox img{
    width:auto;
    height:auto;
    max-width:90vw;
    max-height:90vh;
    object-fit:contain;
    border-radius:12px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}
.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:50px;
    cursor:pointer;
    transition:.3s;
}
.close-lightbox:hover{
    transform:rotate(90deg);
}
.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:
    rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:white;
    font-size:26px;
    cursor:pointer;
    transition:.3s;
}
.prev-btn:hover,
.next-btn:hover{
    background:
    rgba(255,255,255,.3);
}
.prev-btn {
    left: 30px;
}
.next-btn {
    right: 30px;
}

/* WELCOME */
.welcome-section {
    text-align: center;
    padding: 60px 0 ;
}
.welcome-text {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    font-size: 16px;
    color: #555;
}

/* BUTTON */
.btn,
.service-btn {
    display: inline-block;
    padding: 14px 35px;
    background:
        linear-gradient(135deg,
            #D4A373,
            #B08968);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}
.btn:hover,
.service-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, .15);
}

   /* PREMIUM STATISTICS SECTION */
.stats {
    padding: 60px 0 70px;
    background: transparent;
}
.stats-container {
    max-width: 1100px;
    margin: auto;
    background:
        linear-gradient(135deg,
            rgba(255, 248, 240, .95),
            rgba(255, 255, 255, .95));
    border-radius: 25px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
    padding: 50px 30px;
    backdrop-filter: blur(15px);
}
.stats-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    align-items: center;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background:
        rgba(176, 137, 104, .3);
}
.stat-item h3 {
    font-size: 34px;
    color: #C89B6D;
    margin-bottom: 10px;
    font-weight: 700;
}
.stat-item p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);
    gap: 15px;
}
.portfolio-item {
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
}
.portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: .4s;
}
.portfolio-item:hover img {
    transform: scale(1.05);
}
.portfolio-note{
    text-align:center;
    color:#666;
    font-size:17px;
    margin-top:35px;
    margin-bottom:18px;
}
.portfolio-btn{
    text-align:center;
    margin-top:40px;
}
.portfolio-btn .btn{
    padding:15px 42px;
    font-size:16px;
    border-radius:50px;
    transition:.35s;
}
.portfolio-btn .btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s;
}
.service-card:hover {
    transform:
        translateY(-10px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h3 {
    padding: 20px;
}
.service-card p {
    padding: 0 20px 20px;
}
.service-btn {
    margin: 0 20px 20px;
}

/* CONTACT */
#contact {
    padding: 70px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 40px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    cursor: pointer;
}
.map-section iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 20px;
}
.popup{
    position:fixed;
    top:30px;
    right:30px;
    background:#fff;
    padding:20px 30px;
    border-radius:15px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
    z-index:999999;
    display:none;
    min-width:320px;
    animation:slideIn .4s ease;
}
.popup.show{
    display:block;
}
#close-popup{
    position:absolute;
    right:12px;
    top:8px;
    cursor:pointer;
    font-size:20px;
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:
        translateX(50px);
    }
    to{
        opacity:1;
        transform:
        translateX(0);
    }
}

/* DIRECTOR */
.director-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    align-items: center;
}
.director-image img {
    width: 85%;
    max-height: 350px;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 20px;
}
.director-content{
    text-align:center;
}
.director-content p{
    max-width:700px;
    margin:0 auto;
    line-height:1.9;
    font-size:16px;
    color:#555;
}
#about p{
    text-align:center;
    max-width:950px;
    margin:0 auto;
    line-height:2;
    font-size:16px;
    color:#666;
}

/* FOOTER */
.footer {
    background: #2A2420;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.footer-logo img {
    width: 120px;
    margin: auto;
}
.social-icons {
    margin: 25px 0;
}
.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 9999;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .2);
}

/* ================= BLOG ================= */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.blog-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:280px;
    text-decoration:none;
    color:white;
    display:block;
}
.blog-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}
.blog-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(179, 129, 129, 0.85),
        rgba(0, 0, 0, 0.11)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
}
.blog-overlay h3{
    margin-bottom:10px;
    font-size:20px;
}
.blog-overlay span{
    font-size:14px;
    letter-spacing:1px;
}
.blog-card:hover img{
    transform:scale(1.08);
}

/* Testimonials */
.testimonial-card{
    position:relative;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(255,248,242,.95)
    );
    padding:35px;
    border-radius:20px;
    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
    overflow:hidden;
    height:100%;
    min-height: 260px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:10px;
    right:20px;
    font-size:80px;
    color:rgba(212,163,115,.15);
    font-family:serif;
}
.testimonial-card p{
    font-style:italic;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}
.testimonial-card h4{
    color:#B08968;
    font-weight:600;
}
.testimonial-wrapper{
    display:flex;
    align-items:center;
    gap:20px;
}
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    flex:1;
    overflow:hidden;
    align-items: stretch;
}
.testimonial-nav{
    border:none;
    background:#D4A373;
    color:white;
    padding:14px 20px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}
.testimonial-nav:hover{
    background:#B08968;
}

/* ================= FAQ ================= */
#faq,
#testimonials,
#blog{
    padding:40px 0;
}
.faq-item{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.faq-item h3{
    color:#B08968;
    margin-bottom:10px;
}
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.testimonial-card p{
    font-style:italic;
    margin-bottom:15px;
}
.cta-section{
    text-align:center;
    padding:60px 20px;
}
.cta-section p{
    margin:20px auto;
    max-width:700px;
}
.active-link{
    color:#D4A373 !important;
}
.service-card,
.blog-card,
.testimonial-card,
.faq-item{
    transition:
    transform .3s ease,
    box-shadow .3s ease;
}
.service-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.faq-item:hover{
    transform:translateY(-8px);
    box-shadow:
    0 15px 40px rgba(0,0,0,.12);
}
.fade-up{
    opacity:0;
    transform:
    translateY(40px);
    transition:
    all .8s ease;
}
.fade-up.show{
    opacity:1;
    transform:
    translateY(0);
}
.blog-card{
    text-decoration:none;
    color:inherit;
    display:block;
}
.blog-container{
    max-width:850px;
    margin:auto;
}
.intro{
    font-size:20px;
    line-height:2;
    color:#444;
    margin-bottom:40px;
}
.blog-content h2{
    font-size:32px;
    color:#B08968;
    margin-top:50px;
    margin-bottom:20px;
}
.blog-content p{
    font-size:17px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}
.blog-content img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:6px;
    margin:35px 0;
    box-shadow:
    0 12px 30px rgba(0,0,0,.10);
}
.blog-content blockquote{
    margin-top:50px;
    padding:35px;
    border-left:5px solid #D4A373;
    background:#FFF8F2;
    font-size:22px;
    line-height:1.8;
    font-style:italic;
    border-radius:15px;
}
.blog-hero{
    position:relative;
    height:80vh;
    overflow:hidden;
}
.blog-hero img{
    width:100%;
    height:120%;
    object-fit: cover;
}
.blog-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.20)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:80px;
    color:white;
}
.blog-category{
    color:#D4A373;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}
.blog-hero-overlay h1{
    font-size:52px;
    max-width:900px;
    line-height:1.2;
    margin-bottom:15px;
}
.blog-meta{
    font-size:14px;
    letter-spacing:1px;
    opacity:.9;
}
#gallery-title{
    margin-top: 50px;   /* Adjust as needed */
}

/* ================= PROFESSIONAL GEAR ================= */
#gear{
    padding:80px 0;
}
.gear-subtitle{
    max-width:850px;
    margin:20px auto 25px;
    text-align:center;
    color:#666;
    line-height:1.9;
    font-size:17px;
}
.gear-stats{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-bottom:45px;
    flex-wrap:wrap;
    color:#555;
    font-size:17px;
}
.gear-slider{
    display:flex;
    align-items:center;
    gap:20px;
}
.gear-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    flex:1;
}
.gear-card{
    display:none;
    background:linear-gradient(
        135deg,
        rgba(237, 195, 147, 0.95),
        rgba(255,248,242,.95)
    );
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}
.gear-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.gear-card img{
    width:100%;
    height:170px;
    object-fit:contain;
    margin-bottom:20px;
}
.gear-card h3{
    color:#B08968;
    margin-bottom:10px;
    font-size:20px;
}
.gear-card p{
    color:#777;
    font-size:15px;
}
.gear-arrow{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4A373;
    color:white;
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}
.gear-arrow:hover{
    background:#B08968;
    transform:scale(1.08);
}