* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: white;
  color: black;
  text-decoration: none;
}
a{
  text-decoration: none;
}
section{
  overflow: hidden;
}
/* NAVBAR */
.navbar {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
.logo img{
  width: 20%;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #001F3F;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}



/* HERO SECTION */
.hero-section {
  padding: 80px 20px;
  height: 95vh;
  background: center center/cover  no-repeat url("IMG_0581.JPG");
}

.container {
  max-width: 1200px;
  margin: auto;
  position: absolute;
  bottom: 10%;
  left: 10%;
}

/* Slider */
/* Slider basics */
.slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }

/* Arrows */
.slider-nav {
  position: absolute;
  top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}
.slider-nav span {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  transition: background 0.3s;
}
.slider-nav span:hover { background: rgba(0,0,0,0.7); }

/* Bars */
.slider-bars {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  width: 80%;
  max-width: 320px;
  z-index: 10;
}
.bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  overflow: hidden;
}
.bar .fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
}
@keyframes fillAnim {
  from { width: 0%; }
  to { width: 100%; }
}


.hero-text {
  padding: 20px;
  filter: invert(1);
  mix-blend-mode: difference;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: bold;
}

.hero-text p {
  font-size: 16px;
  margin: 20px 0;
}

.cta-button {
  background-color: #001F3F;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #001234;
}

    /* Animation classes */
    .fade-in {
      animation: fadeIn 2s forwards;
    }

    .slide-in-left {
      animation: slideInLeft 1.5s forwards;
    }

    .slide-in-right {
      animation: slideInRight 1.5s forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInLeft {
      from { transform: translateX(-100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInRight {
      from { transform: translateX(100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    /* Slider controls */
    .slider-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .slider-dot.active {
      background-color: white;
    }

/* FOOTER */
.footer {
  background-color: #f5f5f5;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #001F3F;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start; /* Align links to the left */
    justify-content: flex-start;
    background-color: white;
    position: fixed; /* Full screen overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    padding: 80px 30px; /* space for links */
    box-shadow: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    margin: 15px 0; /* spacing between links */
    text-decoration: none;
    color: #333;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1100; /* stays above nav */
  }

  .container {
    flex-direction: column;
    text-align: center;
    margin: 100px 0 0 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .cta-button {
    margin-top: 10px;
  }
  .logo img{
  width: 30%;
}
}








.product-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.view-all {
  font-size: 14px;
  color: #001F3F; /* Navy */
  text-decoration: underline;
  font-weight: 500;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.discount {
  color: #B10000;
  font-size: 13px;
  position: absolute;
  top: 10px;
  left: 15px;
  font-weight: bold;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 4px;
}

.colors {
  font-size: 13px;
  color: gray;
  margin-bottom: 5px;
}

.price {
  font-size: 14px;
  color: black;
}

.price span {
  font-weight: bold;
}

.price del {
  color: gray;
  margin-left: 6px;
  font-size: 13px;
}





.promo-section {
  background: center center/cover  no-repeat url("IMG_0581.jpg"); 
  padding: 80px 20px;
}

.promo-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.promo-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

.promo-text h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #040404;
}

.promo-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #292929;
}

.promo-button {
  display: inline-block;
  background-color: #000000; /* Navy Blue */
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.promo-button:hover {
  background-color: #001234;
}

.promo-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
}

.promo-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .promo-text h2 {
    font-size: 28px;
  }

  .promo-button {
    margin-top: 10px;
  }
}





.carousel-wrapper {
  width: 100%;
  height: 85vh;
  padding: 60px 20px;
  background-color: #fefefe;
}

.carousel-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}

.promo-card {
  min-width: 90%;
  max-width: 90%;
  background-color: white;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  scroll-snap-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.promo-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

.promo-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.promo-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.promo-button {
  display: inline-block;
  background-color: #001F3F;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.promo-button:hover {
  background-color: #001234;
}

.promo-image {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  text-align: center;
}

.promo-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}












.promo-card.ss25-beach {
  background-image: url('1\ T-SHIRT\ 2900\ DA.jpg');
}

.promo-card.summer-shirts {
  background-image: url('2\ T-SHIRT\ 5000.jpg');
}

.promo-card.summer-fits {
  background-image: url('IMG_4083.JPG');
}

.promo-card {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 3rem;
  min-height: 300px;
  display: flex;
  align-items: center;
}



















/* Scrollbar Hidden for Webkit */
.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .promo-card {
    min-width: 850px;
    max-width: 850px;
  }

  .promo-text h2 {
    font-size: 32px;
  }

  .promo-image img {
    max-width: 400px;
  }
}



.carousel-wrapper {
  padding: 60px 20px;
  background-color: #fefefe;
  position: relative;
}

.carousel-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
  scroll-padding: 20px;
}

.promo-card {
  min-width: 90%;
  max-width: 90%;
  background: center center/cover  no-repeat url("IMG_4108.JPG");
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  scroll-snap-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.promo-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  
}

.promo-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.promo-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.promo-button {
  display: inline-block;
  background-color: #001F3F;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.promo-button:hover {
  background-color: #001234;
}

.promo-image {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  text-align: center;
}

.promo-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}

/* HIDE SCROLLBAR */
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* NAV BUTTONS */
.carousel-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-nav button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s;
}

.carousel-nav button:hover {
  background-color: #001F3F;
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .promo-card {
    min-width: 850px;
    max-width: 850px;
  }

  .promo-text h2 {
    font-size: 32px;
  }

  .promo-image img {
    max-width: 400px;
  }
}




.carousel-dots {
  text-align: center;
  margin-top: 20px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #001F3F; /* Navy */
}







.footer {
  background-color: #001F3F; /* Dark Navy */
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-brand h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 15px;
  max-width: 300px;
  color: #dddddd;
}

.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social .social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #cccccc;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #003366;
  padding-top: 20px;
  font-size: 14px;
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand, .footer-links, .footer-social {
    width: 100%;
  }

  .footer-social .social-icons {
    margin-top: 10px;
  }
}



.catalog-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.catalog-header h2 {
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.catalog-header p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.product-btn {
  display: inline-block;
  background-color: #001F3F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-btn:hover {
  background-color: #001234;
}









.product-page {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.product-gallery {
  flex: 1;
  min-width: 300px;
}

.main-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.thumbnail-row {
  display: flex;
  margin-top: 15px;
}

.thumbnail-row img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.thumbnail-row img:hover {
  border-color: #001F3F;
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h1 {
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 24px;
  color: #111;
  margin-bottom: 20px;
}

.product-info .description {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-info label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #000;
}

.product-info select {
  padding: 10px 12px;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.add-to-cart {
  background-color: #001F3F;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #001234;
}

.back-link {
  text-align: center;
  color: #001F3F;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.back-link:hover {
  color: #000;
}

/* Responsive layout */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }

  .thumbnail-row {
    justify-content: center;
  }
}







.cart-button {
  background-color: #001F3F;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: background-color 0.3s;
}

.cart-button:hover {
  background-color: #000;
}
