html, body {
  height: 100%;
  margin: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Arial, sans-serif;
  font-size: 3vh;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: rgb(00, 00, 00);
  color: rgb(210, 180, 100);
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)) {
  body {
    font-size: clamp(1.5vh, 4vw, 2vh);
  }
}

.site-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  margin-left: 4vw;
  margin-right: 4vw;
  flex: 1;
}

.header-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;  
  column-gap: 1.5vw;
  row-gap: 0px;
  padding: 2vh;
  padding-right: 0px;
  align-items: start;
}


.big-logo {
  height: 23vh;            
  width: auto;
  object-fit: contain;
  padding: 0 1vw;
}

.logo-link {
  grid-column: 1;
  grid-row: span 2;
  display: block;
}

.top-contact {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 2vh;
  color: rgb(210, 180, 100);
  font-family: 'Calibri', sans-serif;
  font-size: 3vh;
  margin-right: 5vw;
  padding: 1.5vh 2vw;
  border-radius: 2vh;
  justify-content: flex-end;
  backdrop-filter: blur(4px);
  height: 6vh;
}

.separator {
  color: #555;
  font-size: 6vh;
}


.header-panel {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  height: 8vh;
  justify-content: flex-end;
  align-items: center;  
  padding-top: 2vh;
  padding-bottom: 2vh; 
  padding-left: 2vw;
  padding-right: 2vw;
  margin-right: 5vw;        
  background: url('../images/header.jpg') no-repeat center/cover;
  box-shadow: inset 0 0 15vh rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 2vh;     
  z-index: 1;   
  transition: padding  0.3s ease, box-shadow 0.3s ease; 
}

.header-panel:hover {
  padding-top: 2.5vh;
  padding-bottom: 2vh;
  box-shadow: 0 2vh 5vh rgba(0,0,0,0.25);
}

.top-contact-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
}

.header-icon{
  height: 5.5vh;            
  width: auto;
  object-fit: contain;
  margin: 1vh 1vh 0 1vh;
  transition: transform 0.3s ease;
}

.header-icon:hover {
  transform: scale(1.1);
}

.mini-header {
  position: fixed;
  top: 3vh;
  display: flex;
  justify-content: flex-end;
  left: 5vw;
  right: 5vw;
  height: 8vh;
  padding-right: 2.5vw;
  padding-left: 2.5vw;
  align-items: center;
  background: url('../images/header.jpg') no-repeat center/cover;
  box-shadow: inset 0 0 10vh rgba(0, 0, 0, 0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  border-radius: 2vh; 
  transform: translateY(-100%);
  transition:  padding  0.3s ease, box-shadow 0.3s ease; 
}

.mini-header:hover {
  padding-bottom: 0.2vh;
  padding-top: 0.2vh;
  box-shadow: 0 2vh 2vw rgba(0,0,0,0.25);
}

.mini-header.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

nav a {
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  width: fit-content;
  color: white;
  text-decoration: none;
  font-size: 3vh;
  display: inline-block;
  font-family: 'Calibri';
  transition: transform 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
  font-weight: 520;
}

nav a:hover {
  transform: scale(1.1);
  color:#0f3b1e;
  font-weight: 700;
}

nav a:active {
  transform: scale(1);
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)){

  .header-wrap {
    grid-template-columns: 28vw 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 4vw;
    padding: 2.5vw;
  }

  .big-logo {
    width: clamp(14vh, 30vw, 20vh);
    height: auto;
    padding: 0;
    margin-top: 1.5vw;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: block;
  }

  .top-contact {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    gap: 1vw;
    font-size: clamp(1.5vh, 4vw, 2.5vh);
    margin-right: 0;
    margin-top: 0.4vh;
    padding: 0;
    backdrop-filter: none;
  }

  .header-icon{
  height: clamp(3vh, 5vw, 5vh);            
  width: auto;
  object-fit: contain;
  margin: 1vw 1vw 0 1vw;
  }

  .separator {
    display: none;
  }

  .header-panel {
    grid-column: 1 / -1;
    grid-row: 3;
    height: auto;
    margin: 1vh 0 0.5vh 0;
    padding: 1vh 1.5vw;
    border-radius: 1.5vh;
    justify-content: center;
  }

  .header-panel nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.5vw;
  }

  .header-panel nav a {
    font-size: clamp(2vh, 4.5vw, 2.5vh);
    padding: 1vh 0.5vw;
    white-space: nowrap;
    margin: 0 1vw;
    transform: none;
  }

  .header-panel:hover {
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
    box-shadow: inset 0 0 15vh rgba(0, 0, 0, 0.6);
  }

  .mini-header {
    top: 1.5vh;
    left: 2.5vw;
    right: 2.5vw;
    height: 5vh;
    padding-left: 1vw;
    padding-right: 1vw;
    border-radius: 1vh;
    justify-content: center;
  }

  .mini-header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.5vw;
  }

  .mini-header nav a {
    padding: 1vh 0.5vw;
    margin: 0 1vw;
    font-size: clamp(2vh, 4.5vw, 2.5vh)
  }
}

footer {
  background-color:rgb(60, 60, 60);
  color: white;
  text-align: center;
  padding: 3vh 0;
  font-size: 3vh;
  border-radius: 5vh 5vh 0 0;
}

.footer-top{
  display: flex;
  gap: 3vw;
  margin-bottom: 2vh;
}

.footer-about{
  padding-left: 2vw;
  width: 23vw;
  text-align: left;
}

.footer-products{
  min-width: fit-content;
  width: 22vw;
  text-align: left;
}

.footer-products ul {
  list-style: none;
  padding-left: 0;
}

.footer-products li {
  display: flex;
  align-items: flex-start;
  gap: 0.5vw;
  line-height: 1.5;
  margin-bottom: 3vh;
}

.footer-products li::before {
  content: "";
  width: 1.5vw;
  height: 4vh;
  background: url('../images/shield.png') no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-products li > ul {
  flex-basis: 100%;
  margin-left: 0;
  margin-top: 6vh;
}

.footer-contact{
  width: 20vw;
  text-align: left;
}

.footer-about h2, .footer-products h2, .footer-contact h2{
  color:  rgb(210, 180, 100);
}

.footer-products a {
  color: white;
  text-decoration: none;
  width: 0.5vw;
  white-space: nowrap;
  margin-top: 0.25vh;
}

.footer-about a {
  margin-top: 2.5vh;
  width: fit-content;
}

.footer-contact a {
  margin-top: 5vh;
  width: fit-content;
}

.contact-heading {
  display: flex;
  font-size: 3.2vh;
  font-weight: 600;
  margin: 3.5vh 0 2.5vh 0;
}

.footer-top img {
  display:flex;
  flex-direction:column;
  align-items:center;
  height: auto;
  width: 20vw;
  object-fit: contain;
  border-radius: 3vh;
}

.footer-social{
  display:flex;
  justify-content: center;
  gap:1vw;
  margin-top:2vh;
}

.footer-icon{
  height: 7vh !important;
  width: auto !important;
  border-radius: 3.5vh !important;
}

.footer-areas {
  font-size: 2.5vh;
  background-color: black;
  padding: 2vh 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.footer-areas a{
  text-decoration: none;
  color: white;
} 

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollText 25s linear infinite;
}

.scroll-text {
  white-space: nowrap;
  padding-right: 5vw;
  font-weight: 200;
}

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

.footer-bottom {
  padding-top: 4vh;
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)) {

  footer {
    padding: 4vh 4vw;
    font-size: clamp(1.5vh, 3.5vw, 2vh);
    border-radius: 4vh 4vh 0 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 4vh;
    margin-bottom: 3vh;
  }

  .footer-about,
  .footer-products,
  .footer-contact {
    width: 100%;
    padding-left: 0;
    text-align: left;
  }

  .footer-about h2,
  .footer-products h2,
  .footer-contact h2 {
    margin-bottom: 1.5vh;
  }

  .footer-about p {
    line-height: 1.6;
  }

  .footer-products ul {
    padding-left: 0;
  }

  .footer-products li {
    margin-bottom: 0.5vh;
    line-height: 2.2;
  }

  .footer-products li::before {
  content: "";
  width: 4vw;
  background: url('../images/shield.png') no-repeat center / contain;
  flex-shrink: 0;
  }


  .footer-products li > ul {
    margin-top: 3.6vh;
    margin-left: 4vw;
  }

  .contact-heading {
    font-size: 2.2vh;
    margin: 2.5vh 0 1vh 0;
  }

  .footer-contact a {
    margin-top: 3vh;
  }

  .footer-top img {
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
    display: block;
    border-radius: 2.5vh;
  }

  .footer-areas {
    font-size: clamp(1.5vh, 3vw, 2vh);
  }

  .footer-bottom {
    padding-top: 3vh;
    font-size: 1.9vh;
    text-align: center;
  }
}


.hero {
  padding: 5vw 8vw 10vw 8vw;
  background: url('../images/banner.png') no-repeat center/cover;
  text-align: center;
  color: rgb(210, 180, 100);
  margin: 0 2vw 12vh 2vw;
  font-weight: 700;
  text-shadow:
    2px 2px 2px rgba(0,0,0,1);
  font-size: 4.2vh;
  border-radius: 5vh;
}

.white-text{
  color: rgb(192,192,192) !important;
}

.btn {
  padding: 2vh 2vw;
  background:  rgb(210, 180, 100);
  color: white;
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 0.5vh;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
} 

.highlights-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15vw, 1fr));
  gap: 3vw;
  padding: 5vh 4vw;
  text-align: center;
}

.highlight-head{
  font-size: 1.9em;
  text-align: center;
}

.highlight-item {
  background: rgba(0, 0, 0, 0.35);
  padding: 5vh 2vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item img {
  height: auto;
  width: 100%;
  border-radius: 3vw;
  margin-bottom: 2vh;
}

.highlight-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}


@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)) {
  .hero {
    padding: 0.1vw 4vw 2.5vh 4vw;
    font-size: clamp(1.8vh, 4vw, 2.2vh);
    margin-bottom: 6vh;
    border-radius: 3vh;
  }

  .btn {
    padding: 1vh 3vw;
  }

  .highlights-section {
    padding: 2vh 3vw;
    grid-template-columns: repeat(auto-fit, minmax(38vw, 1fr));
  }

  .highlight-head{
  font-size: 1.6em;
  }

  .highlight-item {
    padding: 2vh 1vw;
  }

  .highlight-item img {
    height: auto;
    width: 40vw;
    border-radius: 3vw;
    margin-bottom: 1vh;
  }
}


.banner {
  width: 100%;
  height: 45vh;
  object-fit: fill;
  background: url('../images/bg1.png') center/100% 100% no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 5vh;
}

.banner-text {
  font-size: 7.5vh;
  font-weight: 700;
  padding-left: 2vw;
}


.about-section {
  padding: 7vh 0 7vh 0;
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)){

  .banner {
    height: 20vh;
    background: url('../images/bg1.png') 80% center/cover no-repeat;
    margin-bottom: 2vh;
  }

  .banner-text {
    font-size: 4.2vh;
    padding-left: 4vw;
    max-width: 70vw;
  }

  .about-section {
    padding: 3vh 0;
  }
}

.products-section {
  display: flex;
  flex-direction: column;
  gap: 15vh;
  margin: 10vh 0 10vh 0;
}

.product-category {
padding: 3vh;
border: 0.5vh solid rgb(210, 180, 100);
border-radius: 4vh;
}

.product-row {
  display: grid;
  grid-template-columns: 56vw 1fr;
  gap: 5vw;
  align-items: center;
  padding: 2vh;
}

.product-row.reverse {
  direction: rtl;
}

.product-row.reverse > * {
  direction: ltr;
}

.product-text{
  padding-bottom: 2vh;
}

.product-image img {
  width: 100%;
  border-radius: 3vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-size{
  font-weight: 600;
}

.product-nav{
  scroll-margin-top: 35vh;
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)){

  .products-section {
    gap: 5vh;
    margin: 3vh 0;
  }

  .product-category {
    padding: 2vh;
    border-radius: 2vh;
  }

  .product-row {
    display: block;
    padding: 0;
    gap: 3vh;
  }

  .product-text h1{
    margin-top: 3vh;
    font-size: 4vh;
  }

  .product-image img {
    width: 100%;
    padding: 2vh 0 2vh 0;
    display: block;
  }

  .product-nav{
  scroll-margin-top: 20vh;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 46vw 1fr; 
  gap: 6vw;
  margin-bottom: 8vh;
}

.contact-layout .btn {
  font-size: 3vh;
}

.contact-form-box {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  margin-left: 2vw;
  height: 100%;
  scroll-margin-top: 20vh;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.address-box {
  background: rgba(0,0,0,0.4);
  padding: 20px;
}

iframe {
  width: 32vw;
  height: 100%;
  border: 0;
}

 
form {
  width: 32vw;
  display: flex;
  flex-direction: column;
  min-height: 56vh;
}

form input{
  font-family: 'Segoe UI';
  margin-bottom: 2.5vh;
  padding: 1.5vh;
  font-size: 2.5vh;
}

form textarea {
  font-family: 'Segoe UI';
  margin-bottom: 2vh;
  font-size: 2.5vh;
  padding: 1.5vh;
  flex-grow: 1;
  min-height: 5vh;
  resize: vertical;
}

.bottom-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  font-size: 4vh;
  margin-top: 5vh;
  padding: 10px 0px;
  border-top: 0.25vh solid rgb(100, 100, 100);
  width: 100%;
  margin-bottom: 5vh;
}

.bottom-contact .separator {
  font-size: 7vh;
}

.bottom-email{
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
}

.email-icon{
  height: 8vh;            
  width: auto;
  object-fit: contain;
  margin-top: 0.5vh;
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)){

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 5vh;
    margin-bottom: 6vh;
  }

  .contact-form-box {
    margin-left: 0;
  }

  .contact-layout .btn {
    font-size: clamp(2vh, 4vw, 2.5vh);
    padding: 1.2vh;
  }

  form {
    width: 100%;
    min-height: unset;
  }

  form input,
  form textarea {
    font-size: clamp(2vh, 4vw, 2.5vh);
    padding: 1.2vh;
  }

  form textarea {
    min-height: 8vh;
  }

  .right-column {
    gap: 2vh;
  }

  iframe {
    width: 100%;
    aspect-ratio: 1.1/1;
  }

  .bottom-contact {
    flex-direction: column;
    gap: 1.5vh;
    font-size: clamp(2.5vh, 4.5vw, 3vh);
    margin-top: 6vh;
    margin-bottom: 4vh;
    text-align: center;
  }

  .bottom-contact .separator {
    display: none;
  }

  .email-icon {
    height: 3vh;
    margin-top: 0;
  }
}

.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dialog-box {
  background: #111;
  padding: 3vh 3vw;
  border-radius: 2vh;
  max-width: 90%;
  width: min(90vw, 420px);
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  animation: dialogPop 0.2s ease-out;
}

.dialog-text {
  margin-bottom: 2vh;
  font-weight: 600;
  font-size: 2.4vh;
  color: #fff;
}

@keyframes dialogPop {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 450px) or ((min-width: 451px) and (max-width: 1024px) and (min-height: 600px)) {
  .dialog-box {
    padding: 2.5vh 4vw;
  }
  .dialog-text {
    font-size: clamp(2vh, 4vw, 2.3vh);
  }
}


.local{
  padding: 4vh 0;
}
