html{
  scroll-behavior: smooth;
}
:root {
  --green: #030;
  --gold: #cc9900;
  --light: #fdf5e6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
font-family: 'Lato', sans-serif;
 color: var(--light); 
 background: var(--green); 
 overflow-x: hidden;
 
  }

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white; /* fallback background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trenddaily-inspired spinner */
.loader {
  border: 5px solid #030;
  border-top: 5px solid transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Preloader Styles Ends */

/* ===== HEADER ===== */


h1 {
  margin: 0;
  left:0;
  position:fixed;
  left:0;
  color: #fff;
  max-width:fit-content;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-style: italic; background:linear-gradient(35deg,#ffd6cc,#ffd6cc,#cc9900,#cc9900);
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
header{
    background:#030;
    backdrop-filter:blur(8px);
    width:100%;
    position: fixed;
    padding:1.5rem;
    display:flex;
    border: none;
    justify-content:flex-end;
    /* box-shadow:3px 5px 5px none; */
    box-shadow: 0 6px 12px none;
    z-index: 100;
}
/* header scrolling style*/
header.scrolled{
    box-shadow: 0 6px 12px #000;
}
/* Menu Styling Start*/

.menu-btn {
cursor: pointer;
display: inline-block;
position: relative;
width: 30px;
height: 30px;
}

/* Style the lines */
.line {
background-color: #fff;
height: 2px;
width: 30px;
display: block;
margin: 5px 0;
transition: all 0.3s ease-in-out;
}

/* Style the lines when the button is clicked (X shape) */
.menu-btn.clicked .line-1 {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.clicked .line-2 {
opacity: 0;
}

.menu-btn.clicked .line-3 {
transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu Styles */
.bigMenu{
  display: none;
}
nav {
background-color: #030;
padding: 1em;
width: 100%;
text-align: center;
border: none;
display:none;
z-index: 3;
position: fixed;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}

nav li {
margin-right: 20px;

}

nav a {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
padding: 3px;
border-radius: 5px;
 transition: all .7s;
}
nav a:hover{
  background:linear-gradient(35deg,#030,#030,#cc9900,#cc9900);
  color: #fff;
}
/*responsive nav bar*/
@media(max-width:480px){
  nav ul{
      display: flex;
      
  }
 nav li {
margin-top: 20px;
}

}
@media(min-width:768px){
.bigMenu{
  display: flex;
}
nav{
  display: none;
}
#menu-btn{
  display: none;
}
  .bigMenu a{
      color: #fff;
      transition: color 0.2s ease;
      margin: 10px;
      text-decoration: none;
      padding: 5px;
      transition: all .7s;
      
      }
      .bigMenu a:hover{
      border-radius:10px ;
       background:linear-gradient(35deg,#030,#030,#cc9900,#cc9900);;
      }


  
  #bigMenu{
  font-size: 1.5rem;
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
  }
}

/* Menu Styling End*/

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url('images/collagee.jpg') center/cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 60px;
}
.clipped {
    font-weight:900;
    font-size: clamp(48px, 18vw, 220px); /* responsive */
    line-height:0.9;
    letter-spacing: -2px;
    /* background image to show through the text */
    background-image: url('images/collage22.jpg');
    background-size: cover;
    background-position: center 30%;
    -webkit-background-clip: text; /* for WebKit-based browsers */
    background-clip: text; /* for Firefox */
    -webkit-text-fill-color: #fff; /* Safari/Chrome */
    color: #fff;
    display:inline-block;
    padding: 0 6px;
    /* subtle stroke (optional) to help letter edges on some backgrounds */
    text-shadow: 0 0 0.5px rgba(0,0,0,0.3);
  }
  /* ======= CTA Button Start ======== */
  
  .animated-button {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #cc9900;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #0303;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* ======== CTA Button End ======== */

.hero::after {
  content: ""; position: absolute; inset: 0; background: rgba(3,48,3,0.4);
}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); margin-bottom: 1rem;
text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.65);
 }

  

.hero-subtitle { font-size: 1.2rem; color: var(--light); margin-bottom: 3rem; }
.scroll-indicator{
  display: block;
  animation: scrollAnim 1.2s infinite;
  font-size: 2.5rem;
}
.scroll-indicator a{
    text-decoration: none;
    color: #fff;
}
@keyframes scrollAnim {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ===== LOOKBOOK ===== */
section {
    padding: 50px;
  }

  .lookbook-grid {
  column-count: 2; /* Number of columns */
  column-gap: 20px;
  opacity: 0;
}

.lookbook-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  break-inside: avoid; /* Prevents image split across columns */
}
  .swiper {
    width: 100%;
    height: 350px;
    display: none; /* hidden until animation is done */
  }

  .swiper-slide {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-info {
    padding: 10px;
  }

  .card-info h4 {
    margin: 5px 0;
    color: #333;
  }

  .card-info button {
    padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
background:#cc9900;
font-weight: bolder;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  }

  .card-info button:hover {
    background: #030;
  }
  
  /* ======= LookBook Ends  ======= */
  
  /* ======== About Contact Section ======= */
    .about-contact-section {
    background: #fff;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .about-section {
    flex: 1 1 300px;
  }

  .about-section img {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .about-section h2 {
    margin-bottom: 15px;
    color: #030;
  }

  .about-section p {
    line-height: 1.6;
    color: #555;
  }

  .contact-section {
    flex: 1 1 300px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
  }

  .contact-section h3 {
    margin-bottom: 15px;
    color: #030;
  }

  .contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }

  .contact-section button {
    background: #030;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .contact-section button:hover {
    background: #cc9900;
  }
  
  /* send button start */
  .button {
  font-family: inherit;
  font-size: 20px;
  background: royalblue;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.button:hover span {
  transform: translateX(5em);
}

.button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* send button ends*/
  #formMessage{
      color: #ff3;
  }
  /* Spinner styling */
/* From Uiverse.io by david-mohseni */ 
.spinner {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  display: none;
}

.spinner div {
  width: 8%;
  height: 24%;
  background: rgb(128, 128, 128);
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  animation: fade458 1s linear infinite;
}

@keyframes fade458 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.25;
  }
}

.spinner .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.spinner .bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -1.1s;
}

.spinner .bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -1s;
}

.spinner .bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.9s;
}

.spinner .bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.8s;
}

.spinner .bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.7s;
}

.spinner .bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}

.spinner .bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.spinner .bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.4s;
}

.spinner .bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.3s;
}

.spinner .bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.2s;
}

.spinner .bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.1s;
}

.hintro2{
    color:#000
}
.hintro2 a{
          text-decoration:none;
          color: #030;
      }
  /* ======= About Contact Section Ends ======= */

/* ===== Performance Metrics Style starts===== */
 .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    background: #030;
  }
  .stats-left, .stats-right {
    flex: 1;
    min-width: 300px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 20px;
    margin: 20px 0;
  }
  .stat-card {
    background: #cc9900;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .stat-card:hover { transform: translateY(-5px); }
  .stat-icon { font-size: 2rem; margin-bottom: 10px; }
  .stat-card h3 { font-size: 1.8rem; margin: 0; }
  .cta-strip {
    margin-top: 20px;
    background: #ff4d4d;
    padding: 15px;
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cta-strip button {
    background: white;
    color: #030;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
  }
  .stats-right p { margin: 10px 0 20px;}
  .seo-mockup {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transform: rotate(-1deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color:#030;
    
  }
  .search-bar {
    background: white;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .search-result {
    background: white;
    padding: 6px;
    border-radius: 4px;
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .ping-btn {
    background: #cc9900;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
  }
  .ping-btn::after {
    content: "";
    position: absolute;
    border: 2px solid #cc9900;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    animation: ping 2s infinite;
  }
  @keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
  }
/* ===== Performance Metrics Style starts===== */


/* ===== CTA ===== */
.cta { background: var(--gold); text-align: center; padding: 4rem 3%; }
.cta h2 { font-family: 'Playfair Display', serif; color: var(--green); margin-bottom: 2rem; }
.cta-btn {
  background: var(--green); color: var(--gold); border: none; padding: 0.8rem 2rem;
  font-size: 1rem; cursor: pointer;
}
.cta-btn:hover { background: var(--light); color: var(--green); }

/* ===== FOOTER ===== */
.site-footer {
  background-color: #002600; /* deeper green for modern feel */
  color: #fff;
  padding: 2rem 1rem;
  font-size: 14px;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-section {
  flex: 1 1 180px;
  min-width: 140px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 0.75rem;
  color: #fff;
}

.useful-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.useful-links li {
  margin: 0.5rem 0;
}

.useful-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.useful-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.social-links a:hover {
  transform: scale(1.15);
}

footer .copyright {
  margin-top: 1.5rem;
  font-size: 13px;
  color: #bbb;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

/* Make it tidy on small screens */
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin-bottom: 1rem;
    text-align: center;
  }

  .social-section .social-links {
    flex-wrap: wrap;
  }
}
