/* RESET */
* {
  margin: 0;
  padding: 0;

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #091d36;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #fdb009;
  overflow-x: hidden;
}
.tee{
  color: transparent;
  padding-bottom: 40px;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  height: 60px;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar a {
  color: #fdb009;
  text-decoration: none;
  margin: 0 30px;
  letter-spacing: 1px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  animation: fadein 1.5s linear;
}


.navbar a:hover {
  color: #ffffff;
  scale: 1.1;
}

.navbar.locked {
  position: fixed;
  top: 0;
  bottom: auto;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* HERO SECTION */
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  animation: fadein 1.5s linear;
}

.logodiv {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin-top: -20%;
  animation: fadein 1.5s linear;
}

.logo {
  margin-top: -20%;
  width: 170%;
  max-width: 500px;

}

.place {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: whitesmoke;
  white-space: nowrap;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-size: 2rem;

}

.place2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: whitesmoke;
  white-space: nowrap;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-size: 2rem;
}

.quote {
  flex: 1;                    /* Forces perfect centering */
  text-align: center;
  font-size: clamp(1rem, 0.357rem + 1.714vw, 1.9rem);
  font-weight: bold;
  color: #fdb009;
  padding: 0 10vw;
  font-family: "Zalando Sans Expanded",sans-serif;
}
@media (max-width: 768px) {
  
  .logodiv{
    width: 120%;
  }

}

.landcontainer{
  display: flex;
  align-items: center;
  justify-content: space-between;   /* Left, center, right */
  width: 100vw;                     /* Full viewport width */
  padding: 0 3vw;                   /* Small padding from screen edges */
  box-sizing: border-box;
}

/* ENTRY VIDEO FULL SCREEN */
.entryvid-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.entryvid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: opacity 1.2s ease-out;
}

.entryvid.visible{
  opacity: 1;
}
.work-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fdb009;
  font-size: 3rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  font-family: "Zalando Sans Expanded",sans-serif;
  animation: fadein linear;
}

/* GALLERY SECTION */
.gallery-section {
  display: flex;
  justify-content: center;
  padding: 40px 1px;
  background-color: #091d36;
}

.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.image-container img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

/* JOVID FULL VIEWPORT */
.jovid-section {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  padding: 0px 0px;
  background-color: #091d36;

}

.jovidr {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  overflow-x: hidden;

}
/* Tablets */
@media (max-width: 1024px) {
  .jovid-section {
    grid-template-columns: repeat(2, 1fr); /* 2 × 2 layout */
    overflow: hidden;
  }
  .jovid-section > * {
    width: 100%;
    height: auto;     /* allow scaling */
    object-fit: cover; /* keeps visuals inside */
  }
}


/* Phones */
@media (max-width: 768px) {
  .jovid-section {
    grid-template-columns: repeat(1, 1fr); /* 1 video per row */
  }
}



/* AUDIV FULL VIEWPORT */
.audiv-section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  
}

.audivid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 1s ease;
}

.audivid:hover {
  transform: scale(1.02);
  transition: transform 1s ease;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

  .entryvid{
    min-width: 100vh;
  }
  .jovidr, .watch, .auto, .lifestyle{
    min-width: 100vw;
    aspect-ratio: 9/16;
    border-radius: 0%;
    overflow-x: hidden;
    width: 100%;
  }
  .audiv-section{
    margin-top: 0%;
  }
  .logo {
    width: 95%;
  }

  .landcontainer {
    flex-direction: row;
    justify-content: space-around;
  }

  .work-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .navbar a {
    margin: 8px 15px;
    font-size: 0.8rem;
  }

  .locations {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .work-heading {
    font-size: 1.8rem;
  }
}
/* SERVICES SECTION */
.service-title{
  color: #fdb009;
  font-size: clamp(1rem, 0.737rem + 1.404vw, 2rem);
  display: flex;
  justify-content: left;
  padding-left: 4%;
  font-family: "Zalando Sans Expanded",sans-serif;
  padding-top: 50px;
  animation: fadein 1.5s linear;
}

/* INFINITE SCROLLING */
.services-slider {
  width: 100%;
  overflow: hidden;
  background-color: #091d36;
  padding: 60px 20px;
  overflow-x: hidden;
  position: relative;
}

.services-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide 25s linear infinite;
  padding: 20px 0;
  overflow-x: hidden;
  white-space: nowrap;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.service-card {
  background: linear-gradient(135deg, #0a223f, #091d36);
  border-radius: 16px;
  padding: 1.4rem;
  width: 300px;
  height: 220px;
  aspect-ratio: 2 / 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;

  /* Smooth transitions for hover effects */
  transition: transform 0.45s ease-in-out,
              box-shadow 0.45s ease-in-out,
              background 0.45s ease-in-out,
              filter 0.45s ease-in-out;
}
.service-card li, .service-card h3{
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Pop-in keyframe */
@keyframes cardPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* Glowing animated border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(135deg, #fdb009, #091d36, #fdb009);
  background-size: 200% 100%; /* double width for animation */

  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;

  animation: borderSlide linear infinite;
}

@keyframes borderSlide {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}


/* HOVER EFFECTS */
.service-card:hover {
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #ffce55, #fdb009);
  filter: brightness(1.15);
  transition:ease-in 0.3s;
}
.service-card:hover h3,
.service-card:hover li {
  color: #091d36
}

/* Text styling */
.service-card h3 {
  color: #fdb009;
  text-align: center;
  font-family: "Zalando Sans Expanded",sans-serif;
  font-size: 1.4rem;
  height: 50px;
  /* Wrap long headings instead of overflowing */
  white-space: normal;      /* allows wrapping */
  word-wrap: break-word;    /* breaks long words if needed */
  overflow-wrap: break-word;
  padding-bottom: 10px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;

  /* Reserve space for 2 lines to align all cards */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0%;
  margin-top: 0%;

}

.service-card li {
  color: #f0f0f0;
  margin: 0;
  margin-bottom: 12px;
  gap: 200px;
  font-family: "Zalando Sans Expanded",sans-serif;
  text-align: center;
  list-style-type: none; /* remove default bullets */
  padding-left: 0;       /* remove default indent */
  transition: 0.2s ease;
  line-height: 1.4;
}


/* CONTACT SECTION */
.contact-section{
    position: relative;
    height: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    background: transparent;
    gap: 50px;
    padding-top: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
    z-index: 5;
}
.instagram, .whatsapp, .tiktok{
    width: 30px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: transparent;
}
.instagram:hover, .whatsapp:hover, .tiktok:hover{
    transform: scale(1.1);
}

@media (max-width: 600px) {

  .landcontainer{
    flex-direction: column;   /* Stack vertically */
    gap: 10px;
    padding: 10px 0px;/* Remove big side padding */
    margin-bottom: 200px;
  }
  



  .quote {
    flex: none;
    text-align: center;
    padding: 20px 10px;
  }
}

.lifestyle{
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  aspect-ratio: 9/16;
  object-fit: cover;
  overflow-x: hidden;
}

.watch, .auto{
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  aspect-ratio: 9/16;
  object-fit: cover;
  overflow-x: hidden;
}
footer {
  grid-column: 1;
  background-color: #091d36;
  color: white;
  text-align: center;
  padding: 20px;
}

.est{
  display: inline;
}

.portraitsection{
  display: flex;
  margin-top: 60px;
  margin-left: 20px;
  margin-bottom: 60px;
  font-size: clamp(2.5rem, 1.974rem + 2.807vw, 4.5rem);
  animation: appear linear;
  animation-timeline: view();
  font-family: "Zalando Sans Expanded",sans-serif;

}

@keyframes appear{
  from{
    opacity: 0.6;
    scale: 0.9;
  }

  to{
    opacity: 1;
    scale: 1;
  }
}

@keyframes fadein{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes services{
  from{
    opacity: 0.7;
    transform: translateX(-55px);
  }
  to{
    opacity: 1;
    transform: translateX(85px);
  }
}

/*@keyframes intouch{
  from{
    opacity: 0.7;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(-5px);
  }
}*/

.parallax-break {
  
  height: 80vh; 
  width: 100%;
  background-image: url('images/final2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: relative;
}

.touch{
  position: relative;
  display: flex;
  font-family: "Zalando Sans Expanded",sans-serif;
  padding-top: 5%;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.908rem + 3.158vw, 3.75rem);
  padding-left: 4%;
}

.touchpara{
  position: relative;
  padding-left: 4%;
  padding-top: 25px;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: clamp(1rem, 0.789rem + 1.123vw, 1.8rem);
  padding-right: 25px;
  padding-bottom: 70px;

}
.touchpara p{
  color:#fdb009bc
}
@media (max-width:600px){
  .touchpara p{
    color: #fdb00985;
}
}
.parallax-break2 {
  height: 20vh; 
  width: 100%;
  display: flex;
  background-image: url('images/final2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding-top: 20%;
  overflow: hidden;
}
@media(max-width:768px){
  .parallax-break2{
    display: none;
  }
  .parallax-break{
    display: none;
  }
  .parallax-text{
    display: none;
  }
}
.parallax-text {
  color: #091d36;
  display: flex;
  position: relative;
  justify-content: center;
  justify-items: center;
  align-items: center;
  font-size: clamp(1rem, -0.25rem + 3.333vw, 2.75rem);
  font-family: "Zalando Sans Expanded", sans-serif;
  font-weight: bold;
  padding-left: 2%;
  overflow: hidden;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.25);

}

/* From Uiverse.io by 0xnihilism */ 
.input__container {
  position: relative;
  background: #f0f0f0;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  border: 4px solid #000;
  max-width: 350px;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-10deg);
  perspective: 1000px;
  box-shadow: 10px 10px 0 #000;
  padding-left: 100px;
  animation: services linear;
  animation-timeline: view();
}

.input__container:hover {
  transform: rotateX(5deg) rotateY(1 deg) scale(1.05);
  box-shadow: 25px 25px 0 -5px #fdb009, 25px 25px 0 0 #000;
  
}

.input__button__shadow {
  border: 3px solid #000;
  background: #fdb009;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transform: translateZ(20px);
  position: relative;
  z-index: 3;
  font-weight: bold;
  text-transform: uppercase;
}

.input__button__shadow svg {
  fill: #091d36;
  width: 25px;
  height: 25px;
}

.input__search {
  display: inline-flex;
  width: 100%;
  outline: none;
  border: 3px solid #000;
  padding: 15px;
  font-size: 18px;
  background: #091d36;
  color: #fdb009;
  transform: translateZ(10px);
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 3;
  font-family: "Zalando Sans Expanded", sans-serif;
  letter-spacing: -0.5px;
  text-decoration: none;
  cursor: pointer; 
}
.input__search a{
  color: #fdb009;
  text-decoration: none;
}
.input__search:hover p{
  color: #091d36;
}
.input__search:hover,
.input__search:focus {
  background: #fdb009;
  transform: translateZ(20px) translateX(-5px) translateY(-5px);
  box-shadow: 5px 5px 0 0 #000;
}

.input__container::before {
  content: "GET IN TOUCH";
  position: absolute;
  top: -15px;
  left: 20px;
  background: #fdb009;
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 14px;
  transform: translateZ(50px);
  z-index: 4;
  border: 2px solid #000;
  padding-left: 100px;
}
.blank{
  padding: 20px;
  h1{
    color: transparent;
  }
}

.D{
  width: 120px;
  height: auto;
  padding: 0px;
}

footer{

}