/* ============================================================
   New Pratibha Digital Studio — Main Stylesheet
   ============================================================ */

/* ----- Reset & Variables ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --white: #ffffff;
  --gray: #cccccc;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", sans-serif;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

/* ----- Language Selection Page ----- */
.language-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.language-box {
  width: 90%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.language-box h3 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.language-box h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.language-box p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 18px;
}

.language-box button {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
}

.language-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

/* ----- Header & Navigation ----- */
.header {
  transition: all 0.35s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header.sticky{
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(18px);
    padding: 12px 50px;
    border-bottom: 1px solid rgba(212,175,55,.45);
    box-shadow: 0 8px 25px rgba(0,0,0,.45);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 3px;
}

.navbar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 25px;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--gold);
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 5px;
  transition: 0.3s;
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  margin-top: 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../assets/hero/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;overflow:hidden;
    position:relative;
  animation: heroZoom 12s ease-in-out infinite alternate;}

.hero-content {
  max-width: 900px;
  margin: auto;
  padding: 10px;
}

.hero h3 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 62px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h2 {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 500;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
  opacity: 0.9;
}

.hero-content h3,
.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-content h3 { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.4s; }
.hero-content h2 { animation-delay: 0.6s; }
.hero-content p  { animation-delay: 0.8s; }
.hero-btn        { animation-delay: 1s; }

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.35s;
  background: var(--gold);
  color: #111;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
}

.secondary-btn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.secondary-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ----- Stats ----- */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 70px 20px;
  background: #0a0a0a;
}

.stat-box {
  width: 220px;
  padding: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.stat-box h3 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-box p {
  color: var(--gray);
}

/* ----- Shared Section Styles ----- */
.section-title {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  line-height: 1.6;
  color: var(--gray);
}

/* ----- About & Owner ----- */
.about,
.owner,
.why-us,
.testimonials,
.faq {
  padding: 120px 20px;
  text-align: center;
}

.owner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.owner-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--gold);
}

.owner-info {
  max-width: 600px;
}

.owner-info h3 {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 10px;
}

.owner-info h4 {
  color: var(--gray);
  margin-bottom: 20px;
}

.owner-info p {
  line-height: 1.8;
  color: #dddddd;
}

/* ----- Services ----- */

.services{
  padding: 100px 20px;
  background: #0b0b0b;
  color: #fff;
}

.services__header{
  text-align: center;
  margin-bottom: 50px;background: linear-gradient(90deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__header h2{
  font-size: 44px;
}

.services__header p{
  color: #b5b5b5;
  max-width: 700px;
  margin: auto;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media(max-width: 992px){
  .services__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .services__grid{
    grid-template-columns: 1fr;
  }
}

.service{
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  transition: 0.3s;
}

.service:hover{
  transform: translateY(-6px);
  border-color: #ffcc00;
}

.service__media{
  width: 100%;
  height: 220px;
}

.service__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__content{
  padding: 20px;
}

.service__content h3{
  margin-bottom: 10px;
}

.service__content p{
  color: #bbb;
  margin-bottom: 12px;
}

.service__highlights{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service__highlights span{
  font-size: 13px;
  color: #ddd;
}
/* CTA */
.service__cta{
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.btn{
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary{
  background: #ffcc00;
  color: #000;
}

.btn.primary:hover{
  background: #fff;
}

.btn.secondary{
  border: 1px solid #444;
  color: #fff;
}

.btn.secondary:hover{
  border-color: #ffcc00;
  color: #ffcc00;
}

/*=========================
WEDDING PAGE
==========================*/



/* PHOTO GRID */



.service__media {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*=========================
PREMIUM EFFECTS
==========================*/









.service-bottom{

padding:90px 20px;

text-align:center;

background:#181818;

}

.service-bottom h2{

font-size:40px;

color:#fff;

margin-bottom:20px;

}

.service-bottom p{

max-width:700px;

margin:auto;

color:#bdbdbd;

line-height:1.8;

margin-bottom:35px;

}

@media(max-width:992px){

.service-hero h1{

font-size:38px;

}

}

@media(max-width: 992px){
  .services__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .services__grid{
    grid-template-columns: 1fr;
  }
}



.service-hero h1{

font-size:30px;

}

.service-bottom h2{

font-size:28px;

}

}

@media(max-width:480px){

.service {
  display: block;color: #ffffff;
text-decoration: none;
  

  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;

  transition: transform .3s ease,
              box-shadow .3s ease,
              border-color .3s ease;
}.service:link,
.service:visited{
  color: #ffffff;
  text-decoration: none;
}

.service h3,
.service p,
.service span{
  color: inherit;
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0,0,0,.35);
}
.service:visited {
  color: inherit;
}

.service:active {
  color: inherit;
}
}.service__media{
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

}
/* Service Card Text Color Fix */
.service,
.service:link,
.service:visited{
    color: #ffffff;
    text-decoration: none;
}

.service h3{
    color: #ffffff !important;
}

.service p{
    color: #bdbdbd !important;
}

.service__highlights span{
    color: #d8d8d8 !important;
}

.service:hover h3{
    color: #D4AF37 !important;
}

/* Remove link underline from service cards */
.service,
.service:link,
.service:visited,
.service:hover,
.service:active {
    text-decoration: none !important;
    color: inherit;
}

.service h3,
.service p,
.service span {
    text-decoration: none !important;
}

/* Safety: remove underline from all text inside card */
.service * {
    text-decoration: none !important;
}
/* Service Heading Gold */
.service__content h3{
    color: #D4AF37;
    text-decoration: none;
    transition: color .3s ease;
}

/* Description */
.service__content p{
    color: #bdbdbd;
}

/* Highlights */
.service__highlights span{
    color: #d8d8d8;
}

/* Remove underline from entire card */
.service,
.service *{
    text-decoration: none !important;
}

/* Hover */
.service:hover .service__content h3{
    color: #FFD700;
}
.service__content h3{
    color: #D4AF37 !important;
}

.service:hover .service__content h3{
    color: #D4AF37 !important;
}

/* ----- Portfolio (auto-scroll) ----- */
.portfolio {
  padding: 160px 20px 60px;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.portfolio::before,
.portfolio::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:10;
    pointer-events:none;
}

.portfolio::before{
    left:0;
    background:linear-gradient(to right,#000,transparent);
}

.portfolio::after{
    right:0;
    background:linear-gradient(to left,#000,transparent);
}

.portfolio-track{
    display:flex;
    gap:20px;
    width:max-content;
    will-change:transform;
}

/* Pause Auto Scroll on Hover */

.portfolio:hover .portfolio-track{
    animation-play-state: paused;
}
.portfolio-item{
  min-width:280px;
  height:380px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;

  background:#111;
  border:1px solid rgba(212,175,55,.18);

  box-shadow:0 15px 35px rgba(0,0,0,.45);

  transition:
      transform .45s ease,
      border-color .45s ease,
      box-shadow .45s ease;
}
.portfolio-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease, filter .4s ease;
}

.portfolio-item.loaded img{
    opacity:1;
    transform:scale(1);
}
.portfolio-item:hover{

  transform:
      translateY(-10px);

  border-color:var(--gold);

  box-shadow:
      0 20px 45px rgba(0,0,0,.6);

}

.portfolio-item:hover img{

  transform:scale(1.08);

  filter:brightness(.78);

}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--white);
  font-weight: bold;
  text-align: center;
}
.portfolio-overlay{

  position:absolute;

  inset:0;

  display:flex;

  align-items:center;

  justify-content:center;

  background:rgba(0,0,0,.35);

  opacity:0;

  transition:.4s ease;

}

.portfolio-item:hover .portfolio-overlay{

  opacity:1;

}

.portfolio-overlay i{

  color:var(--gold);

  font-size:30px;

  transform:scale(.7);

  transition:.35s;

}

.portfolio-item:hover .portfolio-overlay i{

  transform:scale(1);

}
/* ----- Testimonials ----- */
.testimonials h4 {
  margin-top: 15px;
  color: var(--gold);
}

/* ----- FAQ ----- */
.faq-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* ----- Booking Form ----- */
.booking {
  padding: 120px 20px;
  text-align: center;
}

.booking-box {
  width: 90%;
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 35px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  color: var(--white);
  outline: none;
  font-size: 15px;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
  background: var(--black);
  padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--gold);
}

.date-label,
.select-label {
  position: absolute;
  left: 12px;
  top: -8px;
  font-size: 12px;
  color: var(--gold);
  background: var(--black);
  padding: 0 5px;
}

.input-group select {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

/* ----- Contact & Location ----- */
.contact {
  padding: 120px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-box {
  width: 280px;
  flex: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.contact-box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--gray);
  margin: 5px 0;
}

.contact-box iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

.location-section {
  padding: 120px 20px;
  text-align: center;
}

.location-container {
  max-width: 1200px;
  margin: auto;
}

.location-container iframe {
  width: 100%;
  height: 450px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

/* ----- Footer ----- */
.footer {
  text-align: center;
  padding: 60px 20px 20px;
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gray);
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
  color: var(--gray);
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
}

/* ----- WhatsApp Float Button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: var(--white);
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ----- Gallery Lightbox ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  width: min(1000px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px;
}

.lightbox-content h3 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
}

/* ----- Animations ----- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    padding: 12px;
    display: block;
    margin-left: 0;
  }

  .logo-text {
    font-size: 14px;
  }

  .hero {
    padding: 100px 25px;
    animation: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-btn {
    width: 90%;
    max-width: 320px;
  }

  .services-container,
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-item {
    min-width: 220px;
    width: 220px;
    height: 280px;
  }

  .portfolio-track {
    gap: 10px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero img {
    height: 250px;
  }
}
/* ==========================================
   PREMIUM LOADER
========================================== */

#loader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .8s ease,visibility .8s ease;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-content img{
    width:110px;
    margin-bottom:18px;
    animation:logoFloat 2.5s ease-in-out infinite;
}

.loader-content h2{
    color:#D4AF37;
    font-size:24px;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:22px;
}

.loader-line{
    width:170px;
    height:2px;
    background:#222;
    margin:auto;
    overflow:hidden;
    position:relative;
}

.loader-line::before{
    content:"";
    position:absolute;
    left:-40%;
    width:40%;
    height:100%;
    background:#D4AF37;
    animation:loading 1.3s linear infinite;
}

@keyframes loading{

0%{
left:-40%;
}

100%{
left:100%;
}

}

@keyframes logoFloat{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-8px);
}

}/* ===========================
   Responsive Loader
=========================== */

@media (min-width: 1024px){

    .loader-content img{
        width:140px;
    }

    .loader-content h2{
        font-size:30px;
    }

    .loader-line{
        width:220px;
    }

}

@media (max-width:768px){

    .loader-content img{
        width:90px;
    }

    .loader-content h2{
        font-size:20px;
        letter-spacing:2px;
    }

    .loader-line{
        width:140px;
    }

}.loader-tagline{
    color:#bdbdbd;
    font-size:15px;
    letter-spacing:2px;
    margin-bottom:20px;
    opacity:0;
    animation:fadeIn 1s ease forwards;
    animation-delay:.5s;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(8px)
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width:768px){
    .loader-tagline{
        font-size:13px;
        letter-spacing:1px;
    }
}
/* ----- Mobile ----- */
@media (max-width:768px){

    .header{
        padding:16px 20px;
    }

    .header.sticky{
        padding:12px 20px;
    }

}
@media (max-width:768px){

    .portfolio-item{
        min-width:260px;
        height:340px;
    }

}
/* ==========================================
   Cinematic Hero Zoom
========================================== */

@keyframes heroZoom {

    0%{
        background-size:100%;
        background-position:center;
    }

    100%{
        background-size:110%;
        background-position:center;
    }

}
/* ==========================================
   Scroll Indicator
========================================== */

.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
}

.scroll-indicator span{
    display:block;
    width:28px;
    height:48px;
    border:2px solid #D4AF37;
    border-radius:30px;
    position:relative;
}

.scroll-indicator span::before{
    content:"";
    position:absolute;
    left:50%;
    top:8px;
    width:5px;
    height:10px;
    background:#D4AF37;
    border-radius:50px;
    transform:translateX(-50%);
    animation:scrollMove 2s infinite;
}

@keyframes scrollMove{

    0%{
        opacity:0;
        top:8px;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        top:26px;
    }

}

@media(max-width:768px){

    .scroll-indicator{
        bottom:18px;
    }

}
/* ==========================================
   Scroll Reveal Animation
========================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* =========================================================
   PREMIUM MASONRY GALLERY (WEDDING / EVENT PAGES ONLY)
   ========================================================= */

.masonry-gallery {
  padding: 120px 20px;
  background: #000;
  text-align: center;
}

.masonry-grid {
  column-count: 3;
  column-gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212,175,55,.15);
  background: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  transform: translateZ(0);
  transition: transform .35s ease, border-color .35s ease;
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

/* VARIANTS */
.masonry-item.tall {
  height: 520px;
}

.masonry-item.wide {
  height: 300px;
}

/* HOVER (luxury zoom only) */
.masonry-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.5);
}

.masonry-item:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}