/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Trebuchet MS', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* Reset and Fonts */
body {
  font-family: 'Calibri', sans-serif;
}

.brand-name,
.cta-button {
  font-family: 'Trebuchet MS', sans-serif;
}

/* Navbar Base */
/* Navbar styles */
.navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links,
.nav-icons {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 10;
}

.nav-links li a,
.nav-icons li a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Calibri', sans-serif;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-icons li a:hover {
  color: #555;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 40px;
  object-fit: contain;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-right: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-right .nav-icons {
    flex-direction: row;
    justify-content: flex-end;
    width: 120%;
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: none;
  background-color: #111;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease;
}

#backToTop:hover {
  background-color: #555;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  white-space: nowrap; 
  overflow: hidden;
  word-wrap: normal; 
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(40%);
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-shop-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;

  color: whitesmoke;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  {
  border-radius: 8px;
}

  background: transparent;
  border: 2px solid; /* <— this should NOT be "transparent" when using border-image */
  border-image: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.2)) 1;
}



}

.hero-shop-btn:hover {
  background-color: #e0e0e0;
}


.brand-name { font-size: 4rem; letter-spacing: 0.08em; margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .brand-name { font-size: 0.01rem; letter-spacing: 0.01em; }
   }

  
}

.cta-button {
  padding: 0.75rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

/* Featured Products Section */
.featured-products {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

.product-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.product {
  position: relative;
  width: 220px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-now {
  position: absolute;
  bottom: 5%;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.shop-now:hover {
  background: #fff;
  color: #000;
}

.left {
  left: 10%;
}

.right {
  right: 10%;
}

/* Hard Pictures Section */
.hard-pictures {
  display: flex;
  justify-content: space-between;
  padding: 4rem 2rem;
}

.picture {
  width: 45%;
}

.picture img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Email Sign-Up Section */
.email-signup {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f8f8f8;
}

.email-signup h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.email-signup p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.email-signup form {
  display: inline-flex;
  justify-content: center;
}

.email-signup input {
  padding: 1rem;
  font-size: 0.9rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
}

.email-signup button {
  padding: 1rem 2.2rem;
  border: 2px solid #111;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.email-signup button:hover {
  background-color: #f8f8f8;
  color: #111;
}

/* Footer Styles */.footer {
  background-color: black;
  color: white;
  padding: 2em 0;
  font-family: 'Calibri', sans-serif;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.footer-column {
  width: auto;
  min-width: 200px;
  margin-bottom: 2em;
}

.footer-column h3 {
  margin-bottom: 1em;
  font-size: 1.2em;
  border-bottom: 1px solid #666;
  padding-bottom: 0.5em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 0.5em 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ccc;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 1em;
  border-top: 1px solid #555;
  font-size: 0.9em;
}

/* Footer Mobile: 3 columns side by side */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 0;
    text-align: center;
  }

  .footer-column {
    width: 33.33%;
    margin-bottom: 0;
    min-width: auto;
  }
}


  .email-sign

  .explore-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  background: transparent;
  color: black;
  text-decoration: none;
  border: 1.5px solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)) 1;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;

  
}

}

.explore-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}




@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    border-top: 1px solid #ccc;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }
}




@media (max-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    transform: none;
  }

  .brand-name {
    display: none;
  }

  .hero-shop-btn {
    position: static;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}


@media (max-width: 768px) {
  .hero {
    height: 60vh; /* Adjust as needed — try 50vh to 70vh */
  }

  .hero-content {
    bottom: 1.5rem;
  }
}


/* Default: Desktop layout */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Mobile: 2 columns stacked */
            @media (max-width: 768px) {
  .product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .product {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }

  .product-image {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
  }
 
}

@media (max-width: 768px) {
  .shop-now {
    display: none;
  }
}


 /* Hide on desktop by default */
.explore-btn-container {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .explore-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
}

  }

