/* ===================== Base ===================== */


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:visited { color: rgb(0, 0, 0); }

html, body {
  width: 100%;
  height: 100%;
}

/* ===================== Header ===================== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  background: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.navbar-logo {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  left: 0;
  width: 45px;
  height: 50px;
}

.name-logo {
  display: flex;
  margin-right: auto;
  margin-left: 20px;
  font-size: 1.5rem;
  font-weight: 900;
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu.active {
  display: flex;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
 .navbar-container .navbar-menu li a.active {
  background-color: rgba(250, 235, 215, 0.262);
  border:  2px solid rgba(28, 204, 145, 0.295); 
}

.navbar-toggle {
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
}


.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #000;
  transition: all 0.3s ease-in-out;
}

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 99;
  pointer-events: none;
}

.transition-row {
  flex: 1;
  display: flex;
}

.row-1 .block {
  transform-origin: top;
}

.row-2 .block {
  transform-origin: bottom;
}

.block {
  border-bottom: #000 2px solid;
  flex: 1;
  background-color: antiquewhite;
  transform: scaleY(1);
  will-change: transform;
}
/* ===================== Section 1 ===================== */

.Pre-Oder-btn{
  width: 400px;
  height: 70px;
  border: none;
  background: rgba(255, 255, 255, 0);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  border: 1px solid rgba(255, 255, 255, 0.51);
  font-size: 1.5rem;
  justify-self: center;
  margin-top: 15%;
}


.Section1 {
  min-width: 100%;
  position: relative;
  padding-bottom: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}


/*.Section1 .bg-video {
  position: relative !important;
  top: -170px !important;
  left: auto !important;
  margin: 0 auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
  opacity: 50%;
} */

.Video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain */
  z-index: -1;
  opacity: 50%;
}

.Section1 h1 {
  color: #000000;
  margin: 0;
  top: 70px;
  text-align: center;
  align-self: center;
  font-size: clamp(3.5rem, 8vw, 7rem); 
  z-index: 1;
}

.about-container {
  max-height: 900px;
  max-width: 900px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}


.About-div {
max-width: 700px;
max-height: clamp(200px, 8vw, 900px);
min-height: 500px;
font-size: 1rem;
background-color: #f5eddc;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.8px);
-webkit-backdrop-filter: blur(2.8px);
border: 4px solid white;
}

.About-div div {
  min-height: 35%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  border-radius: 0 0 20px 20px;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}


.about-container > div {
  flex: 1;
}

.About-div img {
  width: 100%;
  min-height: 65%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}

.about-container div div p {
  text-align: center;
  justify-self: center;
  margin-left: 5px;
  margin-right: 5px;
}

.Product-Container {
  align-self: flex-start;
  justify-self: center;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 500px;
  gap: 40px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  border: 1px solid rgba(255, 255, 255, 0.51);
  display: none !important;
}

/*.Product-Container::before {
  content:"";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  background: linear-gradient(#f5eddcb7, #f7f5f9) border-box;
  mask: linear-gradient(black) border-box,
  linear-gradient(black) padding-box;
  mask-composite: subtract;
}
  */

.Prod {
  color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  font-weight: 700;
  margin: 0;
  padding-inline: 0.5rem;
  margin-top: 10px;
  margin-left: 10px;
}

.hidden { display: none !important; }

#modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; justify-content: center; align-items: center;
  z-index: 100;
}

.box {
  background: white; padding: 20px;
  width: 310px; border-radius: 10px;
  text-align: center;
}

input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
}

button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s ease;
}


#form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #f5eddc;     
  color: rgb(0, 0, 0);
  font-size: 16px;
  margin-top: 100px;
}

#form button[type="submit"]:hover {
  background: #249446;
}


#close {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: #e0e0e0;
  color: #333;
  font-size: 15px;
}

#close:hover {
  background: #cacaca;
}

.product-selection { margin: 12px 0 20px; text-align:left; }

.product-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.product-option {
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid transparent;
  background: transparent;
  padding: 6px;
  border-radius: 12px;
  cursor: pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  width: 120px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.product-option img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display:block;
  border-radius:10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.product-label {
  font-size: 0.9rem;
  color: #111;
  text-align:center;
}

.product-option.selected {
  border-color: #249446;       
  box-shadow: 0 8px 30px rgba(36,148,70,0.12);
  transform: translateY(-3px);
}


.product-option:hover {
  outline: 3px solid rgba(36,148,70,0.18);
  outline-offset: 2px;
}


/* ===================== Section 2 ===================== */
.Section2 {
  position: relative;
  background-color: #f7f5f9;
  min-width: 100%;
  min-height: 400px;
  margin: 0;
}





/* ===================== Footer / Contact ===================== */
footer {
  background-color: #000000;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
} 

footer h1 { color: #f5eddc; 
margin: 0; 
bottom: -30px;
font-size: clamp(2rem, 8vw, 7rem); 

}

footer h3 {
color: #f5eddc;
align-self: center;
justify-self: center;
}

footer .contact-container {
  width: 200px;
  height: 400px;
  background-color: #f5eddc;
  border-radius: 10px;
  display: flex;
  align-self: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-left-title hr {
  border: none;
  width: 100px;
  height: 5px;
  background-color: cadetblue;
  border-radius: 10px;
}

.contact-left-title h2 { color: black; font-size: 30px; }

.contact-inputs {
  width: 350px;
  height: 50px;
  border: none;
  outline: 10px;
  font-weight: 50;
  color: black;
  border-radius: 20px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: black;
  gap: 10px;
  background-color: white;
  outline: none;
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
}

.contact-inputs:focus { border: 2px solid black; }
.contact-left button:hover { border: 2px solid rgb(15, 214, 48); }
.contact-inputs:hover { border: 2px solid black; }
.contact-inputs::placeholder { color: black; margin-left: 10px; }

footer h4 {
  display: flex;
  align-self: flex-end;
  color: #f5eddc;
  font-size: 1rem;
}

.footer-logo {
  position: relative;
  width: 300px;
  height: 300px;
  display: block;
  object-fit: contain;
  border-radius: 0;
  top: 70px;
  z-index: 2;
}

footer .footer-logo { align-self: center; }

/* ===================== Modal ===================== */
body.no-scroll { overflow: hidden; }
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 0;
}

.modal-dialog {
  position: relative;
  width: 80%;
  max-width: 520px;
  border-radius: 14px;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

.modal .contact-container {
  width: 100%;
  height: auto;
  background-color: #f5eddc;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.modal-close {
  position: absolute;
  top: -6px;
  right: 10px;
  font-size: 28px;
  line-height: 1;
  border: none;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: all ;
}

.contact-open-btn {
  padding: 12px 70px;
  border-radius: 10px;
  border: 2px solid #f5eddc;
  background: transparent;
  color: #f5eddc;
  font-size: 1rem;
  cursor: pointer;
  transition: all 1s ease 0s;
  margin: 0;
  bottom: -5px;
}

textarea {
  resize: none;
}

.contact-open-btn:hover { background: #f5eddc; color: #000; }

.contact-inputs::placeholder,
.contact-left textarea::placeholder { padding-left: 5px; }

/* ===================== Keyframes ===================== */

@keyframes blur-in {
  from {
    filter: blur(20px);
    transform: scale(1.2);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blur-out {
  from {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }

  to {
    filter: blur(20px);
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ::view-transition-old(root) {
  animation: 0.4s ease-out both blur-out;
}

::view-transition-old(root) {
  animation: 0.4s ease-in both blur-in;
} */

/* ===================== Media Queries ===================== */

@view-transition {
  navigation: auto;
}

@media (max-width: 880px) {
  .navbar {
    backdrop-filter: none;
  }

  .navbar-container .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap:  1.7rem !important;
    position: absolute;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }

  .navbar-toggle {
    display: block;
    z-index: 10;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;

  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

    .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 550px) {
  .modal-dialog { margin: 10vh 16px; padding: 14px; }
  .contact-inputs { width: 100%; }
  .footer-logo { width: 150px; 
    height: 150px;
    margin-bottom: 50px;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .Section1 .navbar-logo {
    height: 30px;
    width: 25px;
  }

  .name-logo {
  margin-left: 10px;
  font-size: 1rem;
}


  .navbar {
    height: 50px;
  }

  .Pre-Oder-btn {
    width: 200px;
    height: 60px;
    font-size: 1rem;
  }


  footer {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #contactTitle {
    font-size: 1rem;
  }

  footer h1 {
    font-size: 3rem;
    bottom: 100px;
  }

  footer h4 {
    font-size: 0.5rem;
    margin-bottom: 0;
  }



  .About-div {
  font-size: 1rem;
  margin-left: 10px;
  margin-right: 10px;
  min-height: 200px;
  height: auto;
}

.about-container div div p {
  font-size: 0.7rem;
}


.about-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    height: 1000px;
    max-height: none;
    padding: 0 16px;
  }

  .about-container > .About-div {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    max-width: 100%;
  }

  .About-div {
    max-height: none;
    min-height: 0;
  }

  .About-div img {
    width: 100%;
    height: auto;
    max-height: 60%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
  }

  .About-div > div {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: auto;
  }

  .about-container {
    height: 1000px;
  }

}
@media (min-width: 551px) and (max-width: 900px) {
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .about-container > .About-div {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    max-width: 100%;
  }

  .About-div {
    max-height: none;
    min-height: 0;
  }

  .About-div img {
    width: 100%;
    height: auto;
    max-height: 60%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
  }

  .About-div > div {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: auto;
  }

  .about-container {
    height: 1500px;
  }

}

