/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Header Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #000, #111);
}
.logo {
  width: 120px;
  margin-bottom: 20px;
}
.hero p {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  color: #ecdeb1;
  letter-spacing: 2px;
}
.tagline {
  text-align: center;
  font-size: 14px;
  color: #d4af37;
}

/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.nav-bar a,
.dropdown-button {
  text-decoration: none;
  color: #d4af37;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

/* Dropdowns */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 10px;
}
.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.icon-bar {
  display: flex;
  gap: 20px;
}

.icon-bar a.icon {
  color: #333;
  font-size: 20px;
  transition: color 0.3s ease;
  position: relative;
}

.icon-bar a.icon:hover,
.icon-bar a.icon.active {
  color: #ff4081;
}

.icon-bar a.icon.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 50%;
  background-color: #ff4081;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin: 10px 0;
    flex-direction: column;
    gap: 10px;
  }

  .icon-bar {
    align-self: flex-end;
  }
}
/* Image Rows */
#hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#hero .container {
  position: relative;
  width: 100%;
}

#hero img {
  width: 100%;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; /* Adjust for visibility */
  font-family: 'The Seasons', serif;
}

.hero-text h1 {
  font-size: 7rem;
  margin-bottom: 20px;
  color: #69443c; /* Optional: Gold for visibility and branding */
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #69443c;
}

.hero-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #fefefd;
  color: #69443c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-text .btn:hover {
  background-color: #bfa433;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
}
.image-row img {
  width: 50%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .image-row img {
    width: 100%;
  }
}
.products {
  padding: 60px 20px;
  background-color: #111;
}
.products h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 40px;
}
.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-card {
  width:700px;
  margin: 5px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.1);
}
.product-fade {
  position: relative;
  width: 100%;
  height: 1000px;
  overflow: hidden;
  border-radius: 10px;
}
.product-fade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.6s ease-in-out;
}
.product-fade .back {
  opacity: 0;
}
.product-card:hover .product-fade .back {
  opacity: 1;
}
.product-card:hover .product-fade .front {
  opacity: 0;
}
.product-card h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
  color: #fff;
}
.product-card p {
  color: #d4af37;
  font-weight: bold;
}
.product-card button {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.product-card button:hover {
  background-color: #fff;
  color: #000000;
}
.signature-series-banner {
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.signature-series-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #d4af37;
}

.signature-series-banner h1 span {
  font-weight: normal;
  color: #fff;
}

.signature-series-banner p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Slider Section */
.brand-slider {
  overflow: hidden;
  position: relative;
  background: #ffffff;
  width: 100%;
  height:580px;
}

.brand-track {
  display: flex;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
}
#brandTrackClone {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.brand-track a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 50px;
  flex-shrink: 0;
}

.brand-track img {
  height: 400px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  margin-top: 20px;
  margin-bottom: -140px;
}

.brand-logo {
  max-width: 300px;
  filter: dark (1) invert(1);
  margin-top:-10px;
  align-items: center;
  margin-left: -30px;
}

.brand-track a:hover img,
.brand-track a:hover .brand-logo {
  opacity: 1;
  transform: scale(1.05);
}
/* Footer */
.footer {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  width: 100%;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-country {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(0) invert(1);
  transition: filter 0.3s, transform 0.3s;
}

.social-icons a img:hover {
  filter: none;
  transform: scale(1.1);
}

/* Email Subscribe Bar */
.subscribe-bar {
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
}

.subscribe-bar h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  padding: 8px;
  border-radius: 4px;
  border: none;
  width: 250px;
}

.subscribe-form button {
  padding: 8px 16px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #ddd;
}

footer {
  text-align: center;
  padding: 30px;
  color: #777;
  border-top: 1px solid #333;
}

/* ============================
   Contact Page Styles
============================ */
/* Reset basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
}

/* Fixed Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a.active,
.main-nav a:hover {
  color: #e91e63;
}

/* Contact Page Layout */
.contact-page {
  padding-top: 100px;
  background-color: #f7f7f7;
  min-height: 100vh;
}

/* Contact Banner */
.contact-banner {
  text-align: center;
  padding: 3rem 1rem;
  background: #d4af37;
  color: #333;
}

.contact-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact Info + Form Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 0.8rem;
}

/* Form Styling */
.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  margin-bottom: 1rem;
}

.contact-form label {
  font-weight: 600;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: #e91e63;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #c2185b;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 1rem;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

/* ============================
   Men's T-shirt Page Styles
============================ */
/* Reset basic elements */