html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

section {
    position: relative;
    width: 100%;
}

.hero{
    margin-top:0;
    padding-top:0;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s ease;
}

.nav-links a:hover{
    color:#d6b36a;
}



footer{
    margin:0;
    padding:30px 0;
    text-align:center;
    background:black;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

/* NAVBAR */

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 15px 0;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(12px);
    z-index:9999;
}

.logo{
    color:#d6b36a;
    font-size:28px;
    font-family:'Cinzel',serif;
    letter-spacing:3px;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 15px;
  background: #111;
  position: relative;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:15px;
    transition:0.4s;
}

nav ul li a:hover{
    color:#d6b36a;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

/* .logo img {
  height: 60px;
  width: auto;
} */

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

header {
  position: relative;
  z-index: 9999;
  background: rgb(5, 0, 0);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  z-index: 9999;
}

/* DROPDOWN */

/* .dropdown-menu{
    position:absolute;
    top:35px;
    left:0;
    background:#111;
    min-width:220px;
    padding:20px;
    border-radius:15px;
    display:none;
    z-index:999;
}

.dropdown-menu li{
    margin:12px 0;
}

.dropdown-menu li a{
    color:white;
    font-size:14px;
}

.dropdown:hover .dropdown-menu{
    display:block;
} */


/* DROPDOWN */

/* DROPDOWN MENU */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(12px);

    min-width:220px;
    border-radius:12px;

    padding:10px 0;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s ease;

    z-index:9999;

    /* IMPORTANT */
    display:flex;
    flex-direction:column;
}

.dropdown-menu li{
    width:100%;
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    width:100%;

    padding:14px 22px;

    color:white;
    text-decoration:none;

    transition:0.3s;
}

.dropdown-menu li a:hover{
    background:rgba(255,255,255,0.08);
    color:#d6b36a;
}

/* SHOW */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* SHOW DROPDOWN */

/* .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
} */

/* HERO SECTION */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:slowZoom 18s ease-in-out infinite;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:100%;
    padding:0 20px;
}

.hero-content span{
    color:#d6b36a;
    letter-spacing:4px;
    font-size:14px;
}

.hero-content h1{
    font-size:6rem;
    letter-spacing:3px;
    transition:2s ease;
    font-family:'Cinzel',serif;
    margin-top:20px;
    line-height:1.1;
}

.hero-content p{
    margin-top:20px;
    font-size:18px;
    color:#ddd;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn,
.btn-outline{
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;
    font-size:14px;
}

.btn{
    background:#d6b36a;
    color:black;
}

.btn:hover{
    background:white;
}

.btn-outline{
    border:1px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:black;
}

/* GENERAL SECTION */

section{
    padding:120px 8%;
}

.section-header{
    text-align:center;
    margin-bottom:80px;
}

.section-header span{
    color:#d6b36a;
    letter-spacing:4px;
    font-size:13px;
}

.section-header h2{
    margin-top:15px;
    font-size:48px;
    font-family:'Cinzel',serif;
}

/* SERVICES */

.services{
    background:#111;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.page-hero{
    height:70vh;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("IMG_8866.JPG.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    text-align:center;
}

.page-content{
    position:relative;
    z-index:2;
}


.section-title{
    text-align:center;
    margin-bottom:70px;
    margin-top:-40px;
}

.section-title span{
    color:#d6b36a;
    letter-spacing:4px;
    font-size:14px;
}

.section-title h2{
    font-size:50px;
    margin-top:15px;
    font-family:'Cinzel',serif;
}

.service-card{
    border:1px solid rgba(255,255,255,0.1);
    padding:50px 40px;
    background:rgba(255,255,255,0.03);
    transition:0.5s;
    border-radius:20px;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d6b36a;
}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
}



.service-card p{
    color:#bbb;
    line-height:1.9;
}

.service-card button{
    margin-top:30px;
    padding:14px 28px;
    border:none;
    background:#d6b36a;
    color:black;
    cursor:pointer;
    border-radius:50px;
    transition:0.4s;
}

.service-card button:hover{
    background:white;
}

.service-footer {
    margin: 0;
    padding: 20px 0;
}



/* SERVICES GRID */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;

}

.service-card{

    background:#111;

    padding:40px;

    border-radius:25px;

    transition:0.4s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card h3{

    margin-bottom:20px;

    font-size:28px;

}

.service-card p{

    line-height:1.8;

    margin-bottom:30px;

}

.pricing{

    display:flex;

    gap:15px;

    margin-bottom:30px;

    flex-wrap:wrap;

}

.price-box{

    background:#1c1c1c;

    padding:15px 20px;

    border-radius:15px;

    flex:1;

    min-width:90px;

    text-align:center;

}

.price-box h4{

    margin-bottom:10px;

}

.price-box p{

    color:#d6b36a;

    margin:0;

}

.service-btn{

    display:inline-block;

    background:#d6b36a;

    color:black;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

/* FEATURED VIDEOS */

.video-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.video-container video{
    width:100%;
    border-radius:20px;
}

/* PORTFOLIO */

/* .navbar ul li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    padding: 10px 0;
} */

/* .navbar ul li:hover .dropdown {
    display: flex;
} */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.portfolio-page {
    height: 100vh;
    overflow: hidden;
}





/* PORTFOLIO PAGE */

.portfolio-page{

    padding:140px 8%;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    height:420px;

    text-decoration:none;

}

.portfolio-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.6s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.1)
    );

    display:flex;

    align-items:flex-end;

    padding:35px;

}

.portfolio-overlay h3{

    color:white;

    font-size:30px;

    font-family:'Cinzel',serif;

}
.portfolio-home{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.portfolio-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
}

body.portfolio-lock {
    overflow: hidden;
}

.portfolio-card:hover img{

    transform:scale(1.1);

}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:450px;
}

.portfolio-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.portfolio-box:hover img{
    transform:scale(1.1);
}

.portfolio-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    display:flex;
    justify-content:center;
    align-items:center;
}

.portfolio-overlay h3{
    font-size:36px;
    color:white;
    font-family:'Cinzel',serif;
}




/* ALBUMS */

.album-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.album-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
}

.album-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.album-card h3{
    padding:20px;
    text-align:center;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
}

/* IMPORTANT */
/* .dropdown {
  position: relative;
  padding-bottom: 10px; /* 👈 fixes hover gap */


/* hidden state */
/* .dropdown-menu {
  position: absolute;
  top: 100%;   
  left: 0;

  min-width: 180px;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(15px);

  border-radius: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;

  z-index: 10000;

  pointer-events: none;
} */

/* show state */
/* .dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  pointer-events: auto;
} */

/* menu items */
/* .dropdown-menu li {
  list-style: none;
  padding: 12px 16px;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
} */

/* hover effect */
/* .dropdown-menu li:hover {
  background: rgba(255,255,255,0.1);
} */



body {
  margin: 0;
  font-family: Arial;
}

/* FULL SCREEN HERO WITH IMAGE */
/* .hero {
  height: 100vh;
  width: 100%;

  background-image: url("images/portfolio\ front\ bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  
} */

/* DARK OVERLAY (for premium cinematic look)
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* CENTER TEXT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: 3px;
} */


/* body {
  margin: 0;
  background: red;
} */

/* ABOUT */

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-content span{
    color:#d6b36a;
    letter-spacing:4px;
    font-size:13px;
}

.about-content h2{
    margin-top:20px;
    font-size:50px;
    font-family:'Cinzel',serif;
}

.about-content p{
    margin-top:25px;
    color:#bbb;
    line-height:2;
}

/* GALLERY */

.gallery-grid{
    columns:3 250px;
    gap:20px;
}

.gallery-grid img{
    width:100%;
    margin-bottom:20px;
    border-radius:20px;
}

/* CONTACT */

.contact{
    background:#111;
}

.contact-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:20px;
    background:#1a1a1a;
    border:none;
    color:white;
    border-radius:12px;
}

.contact-form textarea{
    height:180px;
}

.contact-form button{
    padding:18px;
    border:none;
    background:#d6b36a;
    color:black;
    border-radius:50px;
    cursor:pointer;
    transition:0.4s;
}

.contact-form button:hover{
    background:white;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px;
    background:black;
}

footer h3{
    font-family:'Cinzel',serif;
    color:#d6b36a;
}

footer p{
    margin-top:10px;
    color:#999;
}

/* MODAL */

.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.modal-content{
    background:#111;
    width:90%;
    max-width:700px;
    padding:50px;
    border-radius:20px;
    position:relative;
    text-align:center;
}

/* MODAL */

.modal{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,0.8);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.modal-content{

    background:#111;

    width:90%;

    max-width:850px;

    padding:50px;

    border-radius:25px;

    position:relative;

}

.close-btn{

    position:absolute;

    top:20px;

    right:30px;

    font-size:32px;

    cursor:pointer;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:40px;

}

.package-card{

    background:#1b1b1b;

    padding:30px;

    border-radius:20px;

    text-align:center;

    transition:0.4s;

}

.package-card:hover{

    transform:translateY(-8px);

    border:1px solid #d6b36a;

}

.package-card h3{

    margin-bottom:15px;

}

.package-card p{

    color:#d6b36a;

    font-size:24px;

    margin-bottom:20px;

}

.package-card button{

    background:#d6b36a;

    border:none;

    padding:14px 25px;

    border-radius:40px;

    cursor:pointer;

}

#paymentBox{

    margin-top:50px;

    text-align:center;

    display:none;

}

.upi-id{

    margin:20px 0;

    font-size:22px;

    color:#d6b36a;

}

.qr-image{

    width:220px;

    margin-top:20px;

    border-radius:20px;

}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:30px;
    cursor:pointer;
}

.pricing-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:40px;
}

.price-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:20px;
    transition:0.4s;
}

.price-card:hover{
    transform:translateY(-8px);
    border:1px solid #d6b36a;
}

.price-card h3{
    margin-bottom:15px;
}

.price-card p{
    color:#d6b36a;
    font-size:24px;
}



/* GALLERY PAGE */

.gallery-hero{

    padding-top:160px;

    text-align:center;

    padding-bottom:80px;

}

.gallery-hero h1{

    font-size:70px;

    font-family:'Cinzel',serif;

}

.gallery-hero p{

    margin-top:20px;

    color:#aaa;

}

/* MASONRY LAYOUT */

.masonry-gallery{

    columns:3 300px;

    column-gap:20px;

    padding:0 8% 120px;

}

.gallery-item{

    position:relative;

    margin-bottom:20px;

    overflow:hidden;

    border-radius:25px;

}

.gallery-item img{

    width:100%;

    display:block;

    border-radius:25px;

    transition:0.5s;

}

.gallery-item:hover img{

    transform:scale(1.06);

}

/* DIFFERENT SIZES */

.large img{

    height:550px;

    object-fit:cover;

}

.tall img{

    height:700px;

    object-fit:cover;

}

.wide img{

    height:350px;

    object-fit:cover;

}

/* ABOUT PAGE */

.about-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:80px;

    padding:140px 8%;

    flex-wrap:wrap;

}

/* IMAGE */

.about-image{

    flex:1;

    min-width:320px;

}

.about-image img{

    width:100%;

    max-width:500px;

    border-radius:30px;

    object-fit:cover;

    box-shadow:0 0 40px rgba(0,0,0,0.4);

}

/* CONTENT */

.about-content{

    flex:1;

    min-width:320px;

}

.about-content span{

    color:#d6b36a;

    letter-spacing:4px;

    font-size:14px;

}

.about-content h1{

    font-size:65px;

    line-height:1.2;

    margin:25px 0;

    font-family:'Cinzel',serif;

}

.about-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

/* BUTTONS */

.about-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.resume-btn,
.contact-btn{

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:0.4s;

    font-weight:600;

}

/* RESUME BUTTON */

.resume-btn{

    background:#d6b36a;

    color:black;

}

/* CONTACT BUTTON */

.contact-btn{

    border:1px solid #d6b36a;

    color:#d6b36a;

}

/* HOVER */

.resume-btn:hover,
.contact-btn:hover{

    transform:translateY(-5px);

}

/* CONTACT HERO */

.contact-hero{

    padding-top:180px;

    text-align:center;

    padding-bottom:100px;

}

.contact-hero span{

    color:#d6b36a;

    letter-spacing:4px;

    font-size:14px;

}

.contact-hero h1{

    font-size:70px;

    max-width:900px;

    margin:25px auto;

    line-height:1.2;

    font-family:'Cinzel',serif;

}

.contact-hero p{

    color:#bdbdbd;

    font-size:18px;

}

/* CONTACT SECTION */

.contact-section{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:70px;

    padding:0 8% 120px;

    flex-wrap:wrap;

}

/* LEFT SIDE */

.contact-info{

    flex:1;

    min-width:320px;

}

.contact-info h2{

    font-size:55px;

    margin-bottom:25px;

    font-family:'Cinzel',serif;

}

.contact-info p{

    color:#cfcfcf;

    line-height:2;

    max-width:500px;

}

/* SOCIAL ICONS */

.social-icons{

    display:flex;

    gap:25px;

    margin-top:40px;

}

.social-icons a{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:white;

    font-size:26px;

    transition:0.4s;

}

.social-icons a:hover{

    transform:translateY(-8px);

    background:#d6b36a;

    color:black;

}

/* CONTACT FORM */

.contact-form{

    flex:1;

    min-width:320px;

}

.contact-form form{

    background:rgba(255,255,255,0.03);

    backdrop-filter:blur(10px);

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);

}

/* INPUTS */

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:25px;

    background:#111;

    border:none;

    border-radius:15px;

    color:white;

    font-size:16px;

}

.contact-form textarea{

    min-height:180px;

    resize:none;

}

/* BUTTON */

.contact-form button{

    width:100%;

    padding:18px;

    background:#d6b36a;

    border:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;

}

.contact-form button:hover{

    transform:translateY(-5px);

}



/* HERO (HOME PAGE ONLY) */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}





/* LIGHTBOX FIX */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
}

#lightbox img {
  max-width: 80%;
}
/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{

    position:fixed;

    bottom:30px;

    right:30px;

    background:#25d366;

    color:white;

    padding:16px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    z-index:9999;

    box-shadow:0 0 20px rgba(0,0,0,0.4);

    transition:0.4s;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}
/* RESPONSIVE */

@media(max-width:900px){

    .hero-content h1{
        font-size:3rem;
    }

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-container{
        grid-template-columns:1fr;
    }

}

@keyframes slowZoom{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}


html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

.services-page{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

footer{
    margin:0 !important;
    padding:30px 0;
}

body::after{
    display:none;
}

/* BOOKING HERO */

.booking-hero{
    position:relative;

    height:100vh;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.7)
    ),
    url("IMG_0180.JPG.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;
}

/* CONTENT */

.booking-content{
    position:relative;
    z-index:2;

    max-width:850px;
    padding:0 20px;
}

.booking-content span{
    color:#d6b36a;
    letter-spacing:5px;
    font-size:14px;
}

.booking-content h1{
    font-size:85px;
    line-height:1.1;
    margin:25px 0;

    font-family:'Cinzel',serif;
}

.booking-content p{
    color:#d0d0d0;
    font-size:19px;
    line-height:1.8;

    margin-bottom:40px;
}

/* BUTTON */

.hero-btn{
    display:inline-block;

    padding:18px 42px;

    background:#d6b36a;
    color:black;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:0.4s;
}

.hero-btn:hover{
    transform:translateY(-5px);
    background:white;
}

/* PACKAGE SECTION */

.booking-section{
    padding:120px 8%;

    background:#0b0b0b;
}

/* GRID */

.package-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:40px;
}

/* CARD */

.package-card{
    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);

    padding:50px 40px;

    border-radius:30px;

    transition:0.4s;

    text-align:center;

    position:relative;

    overflow:hidden;
}

/* HOVER */

.package-card:hover{
    transform:translateY(-12px);

    border-color:#d6b36a;
}

/* PREMIUM CARD */

.package-card.premium{
    border:1px solid #d6b36a;

    transform:scale(1.03);
}

/* TITLES */

.package-card h2{
    font-size:38px;
    margin-bottom:20px;

    font-family:'Cinzel',serif;
}

/* PRICE */

.price{
    font-size:50px;
    color:#d6b36a;

    margin-bottom:30px;
}

/* LIST */

.package-card ul{
    list-style:none;
    padding:0;

    margin-bottom:35px;
}

.package-card ul li{
    margin:18px 0;

    color:#d0d0d0;
}

/* BUTTON */

.package-card button{
    padding:16px 35px;

    border:none;

    border-radius:50px;

    background:#d6b36a;

    color:black;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;
}

.package-card button:hover{
    background:white;

    transform:translateY(-4px);
}

/* PAYMENT */

#paymentBox{
    margin-top:100px;

    text-align:center;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:60px;

    border-radius:30px;
}

/* QR */

.qr-image{
    width:240px;

    border-radius:25px;

    margin:30px 0;
}

/* UPI */

.upi-id{
    color:#d6b36a;

    font-size:28px;

    letter-spacing:2px;
}

/* FOOTER */

.booking-footer{
    background:black;

    text-align:center;

    padding:60px 20px;
}

/* LOGO */

.footer-logo{
    font-size:34px;

    color:#d6b36a;

    font-family:'Cinzel',serif;

    margin-bottom:15px;
}

/* TEXT */

.booking-footer p{
    color:#bdbdbd;

    margin-bottom:35px;
}

/* ICONS */

.social-icons{
    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:35px;
}

.social-icons a{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#111;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:24px;

    transition:0.4s;
}

.social-icons a:hover{
    background:#d6b36a;

    color:black;

    transform:translateY(-6px);
}

/* COPYRIGHT */

.booking-footer h4{
    color:#777;

    font-weight:400;
}

/* MOBILE */

@media(max-width:768px){

    .booking-content h1{
        font-size:52px;
    }

    .price{
        font-size:40px;
    }
}

/* CONTACT HERO */

.contact-hero{
    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;

    padding:0 8%;

    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.8)
    ),
    url("IMG_0492.jpg");

    background-size:cover;
    background-position:center;
}

/* GLOW */

.hero-bg-glow{
    position:absolute;

    width:700px;
    height:700px;

    background:#d6b36a;

    filter:blur(180px);

    opacity:0.12;

    animation:glowMove 8s ease-in-out infinite;
}

/* CONTENT */

.contact-hero-content{
    position:relative;
    z-index:2;

    max-width:950px;
}

.contact-hero-content span{
    color:#d6b36a;

    letter-spacing:5px;

    font-size:14px;
}

.contact-hero-content h1{
    font-size:90px;

    line-height:1.05;

    margin:30px 0;

    font-family:'Cinzel',serif;
}

.contact-hero-content p{
    color:#d0d0d0;

    font-size:20px;

    line-height:1.9;

    margin-bottom:50px;
}

/* BUTTONS */

.hero-contact-buttons{
    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.hero-contact-btn,
.hero-whatsapp-btn{

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;
}

.hero-contact-btn{
    background:#d6b36a;
    color:black;
}

.hero-whatsapp-btn{
    border:1px solid #25d366;
    color:#25d366;
}

.hero-contact-btn:hover,
.hero-whatsapp-btn:hover{
    transform:translateY(-6px);
}

/* CONTACT SECTION */

.contact-section{
    padding:140px 8%;

    background:#0b0b0b;

    gap:100px;
}

/* CONTACT INFO */

.contact-info h2{
    font-size:70px;

    margin-bottom:25px;
}

/* CARDS */

.contact-cards{
    margin-top:45px;

    display:flex;

    flex-direction:column;

    gap:25px;
}

/* SINGLE CARD */

.contact-card{
    display:flex;

    align-items:center;

    gap:20px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:25px;

    border-radius:25px;

    transition:0.4s;
}

.contact-card:hover{
    transform:translateX(12px);

    border-color:#d6b36a;
}

/* ICON */

.contact-card i{
    width:65px;
    height:65px;

    border-radius:50%;

    background:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    color:#d6b36a;
}

/* TEXT */

.contact-card h4{
    margin-bottom:8px;

    font-size:20px;
}

.contact-card p{
    color:#bdbdbd;
}

/* FORM */

.contact-form form{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    padding:60px;

    border-radius:35px;

    position:relative;

    overflow:hidden;
}

/* GLOW */

.contact-form form::before{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:#d6b36a;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    top:-100px;
    right:-100px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{

    background:#111;

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d6b36a;

    box-shadow:
    0 0 20px rgba(214,179,106,0.2);

    outline:none;
}

/* BUTTON */

.contact-form button{

    margin-top:10px;

    font-size:17px;

    font-weight:600;
}

.contact-form button:hover{
    transform:translateY(-5px);
}

/* SOCIAL ICONS */

.social-icons{
    margin-top:50px;
}

.social-icons a{
    background:#111;

    border:
    1px solid rgba(255,255,255,0.08);
}

/* GLOW ANIMATION */

@keyframes glowMove{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(60px,-40px);
    }

    100%{
        transform:translate(0,0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .contact-hero-content h1{
        font-size:55px;
    }

    .contact-info h2{
        font-size:50px;
    }

    .contact-form form{
        padding:40px 25px;
    }
}

/* ABOUT SECTION */

.about-section{
    min-height:100vh;
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap:80px;
    align-items:center;
    padding:140px 8%;
    position:relative;
}

/* GLOW */

.about-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:#d6b36a;

    filter:blur(180px);

    opacity:0.08;

    top:-200px;
    right:-100px;

    animation:glowMove 8s ease-in-out infinite;
}

/* IMAGE */

.about-image{
    position:relative;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    height:80vh;
    object-fit:cover;
    border-radius:30px;
}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    background:
    rgba(255,255,255,0.06);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:16px 24px;

    border-radius:50px;

    color:white;

    font-size:14px;

    letter-spacing:1px;

    animation:floatCard 4s ease-in-out infinite;
}

/* CARD POSITIONS */

.card1{
    top:40px;
    left:20px;
}

.card2{
    bottom:40px;
    right:20px;
}

/* CONTENT */

.about-content h1{
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
    font-family:'Cinzel',serif;
}
.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
}

/* PARAGRAPH */

.about-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

/* STATS */

.about-stats{

    display:flex;

    gap:25px;

    margin-top:45px;

    flex-wrap:wrap;
}

/* STAT BOX */

.stat-box{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    padding:25px 35px;

    border-radius:25px;

    min-width:160px;

    transition:0.4s;
}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:#d6b36a;
}

.stat-box h2{

    color:#d6b36a;

    font-size:38px;

    margin-bottom:10px;
}

.stat-box p{

    margin:0;

    color:#bbb;
}

.about-content span{
    font-size:12px;
}

.gold-line{
    width:90px;
}

/* BUTTONS */

.resume-btn,
.contact-btn{

    position:relative;

    overflow:hidden;
}

/* HOVER EFFECT */

.resume-btn::before,
.contact-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    background:
    rgba(255,255,255,0.15);

    top:0;
    left:0;

    transition:0.5s;
}

.resume-btn:hover::before,
.contact-btn:hover::before{

    width:100%;
}

/* FLOAT */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.gold-line{

    width:120px;
    height:2px;

    background:#d6b36a;

    margin-top:18px;
    margin-bottom:25px;
}

.cinematic-quote{

    margin-top:50px;

    font-size:20px;

    color:#d6b36a;

    font-style:italic;

    opacity:0.8;
}

/* ALBUM PAGE */

.albums-page{

    position:relative;

    padding:160px 8% 120px;

    overflow:hidden;

    background:
    linear-gradient(
        to bottom,
        #0b0b0b,
        #111
    );
}

/* GLOW */

.albums-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:#d6b36a;

    filter:blur(180px);

    opacity:0.06;

    top:-200px;
    right:-150px;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:90px;

    position:relative;

    z-index:2;
}

.section-title span{

    color:#d6b36a;

    letter-spacing:4px;

    font-size:14px;
}

.section-title h2{

    font-size:65px;

    margin:25px 0;

    font-family:'Cinzel',serif;
}

.section-title p{

    max-width:750px;

    margin:auto;

    color:#bdbdbd;

    line-height:2;

    font-size:17px;
}

/* GRID */

.albums-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:40px;
}

/* CARD */

.album-card{

    position:relative;

    height:500px;

    overflow:hidden;

    border-radius:30px;

    text-decoration:none;

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.5s;
}

/* IMAGE */

.album-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;
}

/* OVERLAY */

.album-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.15)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    transition:0.5s;
}

/* SMALL TEXT */

.album-overlay span{

    color:#d6b36a;

    letter-spacing:3px;

    font-size:12px;

    margin-bottom:15px;
}

/* TITLE */

.album-overlay h3{

    font-size:42px;

    color:white;

    margin-bottom:18px;

    font-family:'Cinzel',serif;
}

/* PARAGRAPH */

.album-overlay p{

    color:#d0d0d0;

    line-height:1.8;

    margin-bottom:30px;
}

/* BUTTON */

.view-project{

    color:#d6b36a;

    font-weight:600;

    transition:0.4s;
}

/* HOVER */

.album-card:hover{

    transform:translateY(-12px);
}

.album-card:hover img{

    transform:scale(1.08);
}

.album-card:hover .view-project{

    letter-spacing:2px;
}

/* CTA */

.cta-section{

    padding:120px 8%;

    text-align:center;

    background:#111;
}

.cta-section h2{

    font-size:60px;

    max-width:900px;

    margin:auto;

    margin-bottom:40px;

    font-family:'Cinzel',serif;
}

/* FOOTER */

footer{

    padding:50px 8%;

    background:black;

    text-align:center;
}

.socials{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.socials a{

    color:white;

    text-decoration:none;

    transition:0.4s;

    display:flex;

    align-items:center;

    gap:10px;
}

.socials a:hover{

    color:#d6b36a;
}
/* HERO TEXT */

.cinematic-hero-text{

    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;

    text-align:center;

    animation:fadeHero 2s ease;
}

/* GOLD LINE */

.hero-line{

    width:120px;
    height:2px;

    background:#d6b36a;

    margin:auto;

    margin-bottom:30px;

    opacity:0.8;
}

/* SUBTITLE */

.hero-subtitle{

    color:#d6b36a;

    letter-spacing:6px;

    font-size:14px;

    display:block;

    margin-bottom:25px;
}

/* MAIN TITLE */

.cinematic-hero-text h1{

    font-size:90px;

    line-height:1.05;

    margin-bottom:30px;

    font-family:'Cinzel',serif;

    background:
    linear-gradient(
        to right,
        #ffffff,
        #d6b36a
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 30px rgba(214,179,106,0.08);
}

/* PARAGRAPH */

.cinematic-hero-text p{

    max-width:780px;

    margin:auto;

    color:#d0d0d0;

    line-height:2;

    font-size:18px;

    margin-bottom:45px;
}

/* BUTTON */

.hero-explore-btn{

    display:inline-block;

    padding:18px 38px;

    border-radius:50px;

    background:#d6b36a;

    color:black;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;
}

.hero-explore-btn:hover{

    transform:translateY(-6px);

    box-shadow:
    0 0 30px rgba(214,179,106,0.3);
}

/* ANIMATION */

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0px);

    }

}

/* MOBILE */

@media(max-width:768px){

    .cinematic-hero-text h1{

        font-size:55px;
    }

    .cinematic-hero-text p{

        font-size:16px;
    }

}

.page-banner{
    object-fit:cover;
}

.page-banner{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
}

/* ========================= */
/* HERO */
/* ========================= */

.project-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(45%);
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
}

.project-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    max-width:850px;
    padding:20px;
}

.project-content span{
    color:#ff9830;
    letter-spacing:4px;
    font-size:14px;
}

.project-content h1{
    font-size:95px;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.project-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
}

/* ========================= */
/* INTRO */
/* ========================= */

.project-intro{
    padding:130px 8%;
    background:#050505;
    text-align:center;
}

.project-intro span{
    color:#ff9830;
    letter-spacing:4px;
}

.project-intro h2{
    color:white;
    font-size:60px;
    margin:25px 0;
    line-height:1.3;
}

.project-intro p{
    color:#bbb;
    max-width:850px;
    margin:auto;
    line-height:2;
    font-size:17px;
}

/* ========================= */
/* VIDEO SECTION */
/* ========================= */
/* ========================= */
/* PREMIUM VIDEO GRID */
/* ========================= */
/* ========================= */
/* VIDEO SECTION */
/* ========================= */

.videos-section{

    width: 90%;
    margin: 80px auto;

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

    gap: 28px;

    align-items: start;

}

/* VIDEO CARD */

.video-card{

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #111;

    transition: 0.4s ease;

}

.video-card:hover{

    transform: translateY(-6px);

}

/* VIDEO */

.video-card video{

    width: 100%;

    height: auto;

    display: block;

    border-radius: 18px;

    object-fit: contain;

    background: #000;

}


/* PORTRAIT */

.video-card.portrait video{

    height:580px;

}

/* LANDSCAPE */

.video-card.landscape video{

    height:320px;

}

/* OVERLAY GLOW */

.video-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.18),
        transparent
    );

    pointer-events:none;

}

/* MOBILE */

@media(max-width:768px){

    .videos-section{

        grid-template-columns:1fr;

    }

    .video-card{

        max-width:340px;

        margin:auto;

    }

}

/* PORTRAIT VIDEOS */

.video-card.portrait{

    max-width: 420px;

    margin: auto;

}
.video-card.landscape{

    grid-column: span 1;

}


/* ========================= */
/* CTA */
/* ========================= */

.project-cta{
    padding:140px 8%;
    text-align:center;
    background:black;
}

.project-cta h2{
    color:white;
    font-size:60px;
    margin-bottom:40px;
    line-height:1.4;
}

.project-cta a{
    padding:18px 45px;
    border:1px solid #ff9830;
    color:white;
    text-decoration:none;
    letter-spacing:3px;
    transition:0.5s ease;
}

.project-cta a:hover{
    background:#ff9830;
}

/* ========================= */
/* SCROLL REVEAL */
/* ========================= */

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:1.2s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0px);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

    .project-content h1{
        font-size:55px;
    }

    .project-intro h2,
    .project-cta h2{
        font-size:38px;
    }

}

.moments-hero{
background:url("momentsbg.jpg") center/cover no-repeat;
}

.dogs-hero{
background:url("dogsbg.jpg") center/cover no-repeat;
}

.praveg-hero{
background:url("pravegbg.jpg") center/cover no-repeat;
}

.creative-hero{
background:url("creativebg.jpg") center/cover no-repeat;
}

.wrap-hero{
background:url("wrapbg.jpg") center/cover no-repeat;
}
.active{
    opacity:1 !important;
    transform:translateY(0px) !important;
}

.video-card video{
    width:100%;
    height:auto;
    display:block;
}

/* ========================= */
/* VIDEOS SECTION */
/* ========================= */

.videos-section{

    width: 88%;
    margin: 100px auto;

}

/* COMMON */

.video-card{

    overflow: hidden;

    border-radius: 24px;

    margin-bottom: 28px;

    transition: 0.4s ease;

    background: #111;

}

.video-card:hover{

    transform: translateY(-8px);

}

.video-card video{

    width: 100%;

    display: block;

    border-radius: 24px;

}

/* FULL WIDTH */

.video-card.full video{

    height: 720px;

    object-fit: cover;

}

/* ROWS */

.row{

    display: flex;

    gap: 28px;

    margin-bottom: 28px;

    align-items: flex-start;

    flex-wrap: wrap;

}

/* PORTRAITS */

.video-card.portrait{

    flex: 1;

    min-width: 280px;

}

.video-card.portrait video{

    height: 620px;

    object-fit: cover;

}

/* HALF LANDSCAPE */

.video-card.landscape-half{

    flex: 2;

    min-width: 400px;

}

.video-card.landscape-half video{

    height: 620px;

    object-fit: cover;

}

/* BIG CINEMATIC */

.video-card.cinematic video{

    height: 800px;

    object-fit: cover;

}

/* MOBILE */

@media(max-width:768px){

    .row{

        flex-direction: column;

    }

    .video-card.full video,
    .video-card.cinematic video,
    .video-card.landscape-half video,
    .video-card.portrait video{

        height: auto;

    }

}



/* ========================= */
/* PREMIUM VIDEO LAYOUT */
/* ========================= */

.videos-section{

    width: 88%;
    margin: 100px auto;

}

/* ROW */

.video-row{

    display: flex;

    gap: 28px;

    margin-bottom: 40px;

    align-items: flex-start;

    justify-content: center;

    flex-wrap: wrap;

}

/* COMMON CARD */

.video-card{

    overflow: hidden;

    border-radius: 24px;

    background: #111;

    transition: 0.4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.18);

}

.video-card:hover{

    transform: translateY(-8px);

}

/* VIDEO */

.video-card video{

    width: 100%;

    display: block;

    background: #000;

}

/* LANDSCAPE */

.landscape{

    flex: 1;

    min-width: 420px;

}

.landscape video{

    width: 100%;

    height: 320px;

    object-fit: contain;

}

/* PORTRAITS */

.portrait{

    width: 340px;

}

.portrait video{

    width: 100%;

    height: 620px;

    object-fit: cover;

}

/* FINAL CINEMATIC */

.final-landscape{

    margin-top: 20px;

}

.cinematic video{

    width: 100%;

    max-height: 850px;

    object-fit: contain;

}

/* MOBILE */

@media(max-width:768px){

    .video-row{

        flex-direction: column;

    }

    .landscape,
    .portrait{

        width: 100%;
        min-width: 100%;

    }

    .landscape video,
    .portrait video,
    .cinematic video{

        height: auto;

    }

}

/* ======================================== */
/* MOMENTS & INTERIORS ONLY */
/* ======================================== */

.moments-videos{

    width: 88%;
    margin: 100px auto;

}

/* ROW */

.moments-row{

    display: flex;

    gap: 24px;

    margin-bottom: 32px;

    justify-content: center;

    align-items: flex-start;

}

/* COMMON CARD */

.moments-card{

    overflow: hidden;

    border-radius: 22px;

    background: #111;

    transition: 0.4s ease;

    box-shadow: 0 10px 35px rgba(0,0,0,0.20);

}

.moments-card:hover{

    transform: translateY(-6px);

}

/* VIDEO */

.moments-card video{

    width: 100%;

    display: block;

    background: black;

}

/* LANDSCAPE */

.moments-landscape{

    flex: 1;

}

.moments-landscape video{

    width: 100%;

    height: 420px;

    object-fit: cover;

}

/* PORTRAIT */

.moments-portrait{

    width: 360px;

}

.moments-portrait video{

    width: 100%;

    height: 640px;

    object-fit: cover;

}

/* LAST BIG VIDEO */

.moments-final{

    width: 100%;

}

.moments-final video{

    width: 100%;

    height: 760px;

    object-fit: cover;

}

/* MOBILE */

@media(max-width:768px){

    .moments-row{

        flex-direction: column;

    }

    .moments-landscape,
    .moments-portrait,
    .moments-final{

        width: 100%;

    }

    .moments-landscape video,
    .moments-portrait video,
    .moments-final video{

        height: auto;

    }

}

/* ===================================== */
/* PORTFOLIO PAGE ONLY */
/* ===================================== */

.portfolio-page-body{
    background:#050505;
}

/* HERO */

.portfolio-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

}

.portfolio-bg{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    filter:brightness(45%);

    animation:slowZoom 18s ease-in-out infinite;

}

.portfolio-dark{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.8)
    );

}

/* CONTENT */

.portfolio-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    padding:20px;

}

.portfolio-content span{

    color:#d6b36a;

    letter-spacing:5px;

    font-size:13px;

}

.portfolio-content h1{

    font-size:95px;

    line-height:1.05;

    margin:25px 0;

    font-family:'Cinzel',serif;

    background:
    linear-gradient(
        to right,
        #ffffff,
        #d6b36a
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.portfolio-content p{

    color:#d0d0d0;

    line-height:2;

    font-size:18px;

    margin-bottom:45px;

}

/* BUTTON */

.portfolio-btn{

    display:inline-block;

    padding:18px 38px;

    border-radius:50px;

    background:#d6b36a;

    color:black;

    text-decoration:none;

    font-weight:600;

    transition:0.4s ease;

}

.portfolio-btn:hover{

    transform:translateY(-6px);

    background:white;

}

/* SHOWCASE */

.portfolio-showcase{

    width:88%;

    margin:auto;

    padding:120px 0;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

/* ITEM */

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    height:520px;

    text-decoration:none;

}

.portfolio-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;

}

/* OVERLAY */

.portfolio-item-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.1)
    );

    display:flex;

    align-items:flex-end;

    padding:40px;

}

.portfolio-item-overlay h2{

    color:white;

    font-size:42px;

    font-family:'Cinzel',serif;

}

/* HOVER */

.portfolio-item:hover img{

    transform:scale(1.08);

}

.portfolio-item:hover{

    transform:translateY(-8px);

}

/* MOBILE */

@media(max-width:768px){

    .portfolio-content h1{

        font-size:55px;

    }

    .portfolio-content p{

        font-size:16px;

    }

    .portfolio-item{

        height:420px;

    }

}

/* ========================= */
/* PORTFOLIO MUSIC BUTTON */
/* ========================= */

.music-toggle{

    position:fixed;

    bottom:30px;

    left:30px;

    width:65px;
    height:65px;

    border-radius:50%;

    border:
    1px solid rgba(255,255,255,0.12);

    background:
    rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    color:#d6b36a;

    font-size:28px;

    cursor:pointer;

    z-index:99999;

    transition:0.4s ease;

    display:flex;

    justify-content:center;
    align-items:center;

    box-shadow:
    0 0 30px rgba(0,0,0,0.25);

}

/* HOVER */

.music-toggle:hover{

    transform:translateY(-6px)
    scale(1.05);

    background:#d6b36a;

    color:black;

}

/* ICON ANIMATION */

.music-toggle.playing{

    animation:musicPulse 2s infinite;

}

@keyframes musicPulse{

    0%{

        box-shadow:
        0 0 0 rgba(214,179,106,0.4);

    }

    50%{

        box-shadow:
        0 0 30px rgba(214,179,106,0.5);

    }

    100%{

        box-shadow:
        0 0 0 rgba(214,179,106,0.4);

    }

}
