*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Michroma", sans-serif;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #333;
}

/* Header Body */
header {
  background-color: #111;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px; /* space between image and name */
}

.logo {
  height: 70px;
  width: auto;
  display: block;
}

.BrandName{
    text-decoration: none;
    color: inherit;
}

.brand-name {
  font-size: 2rem;
  color: white;
  margin: 0;
  padding: 0;
  font-weight: 800;
}

.container {
  width: 100%;
  padding: 10px 10px; /* ✅ only 10px from left and right */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}


nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.products {
  padding: 40px 10%;
  background-color: #f8f8f8;
  text-align: center;
}

.products h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #444;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.product p {
  color: #888;
  font-weight: bold;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
}




/* the spance b/t the headder and main body */
.spacer {
  height: 80px; /* Same as your header height */
}


/* Main Body */
/* Hero Banner */
.hero {
  background: url('/New/img/Products/openart-image_yTTiSrL9_1750486689682_raw.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh; /* 80px = height of your fixed header */
  padding: 0 20px;
  margin-top: 80px; /* pushes hero below the fixed header */
}


.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
}



.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}


/* Product Section */
.products {
  padding: 60px 10%;
  background-color: #f8f8f8;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h3 {
  margin: 15px 0 5px;
}

.product p {
  font-weight: bold;
  color: #444;
}

/* About Section */
.about {
  padding: 50px 10%;
  background-color: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}


/* For phones and so */
/* Tablet adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-list {
    gap: 20px;
  }

  .product {
    width: 45%; /* Two per row on tablets */
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Mobile phone adjustments */
@media (max-width: 480px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }
}



/* The about section */
.about {
  padding: 80px 10% 60px;
  background-color: #fff;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 480px) {
  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1rem;
  }
}


/* Bisection Section Line */
.section-divider {
  margin: 60px auto;
  width: 80%;
  border: none;
  border-top: 2px solid #ccc;
  opacity: 0.6;
}



/* Contacts */
.contact {
  padding: 60px 10%;
  background-color: #fefefe;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}


.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details a {
  color: #007b5e;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #007b5e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005f48;
}


.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.form-wrapper iframe {
  width: 100%;
  max-width: 600px;
  height: 600px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}



/* Perfume section */
/* Hero Banner */
.hero1 {
  background: url('/New/img/Products/PerfumeBanner.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh; /* 80px = height of your fixed header */
  padding: 0 20px;
  margin-top: 80px; /* pushes hero below the fixed header */
}

.hero-content1 {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
}

.hero1 h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero1 p {
  font-size: 1.2rem;
}

/* Nav Bar */
/* Dropdown Navigation */
/* DROPDOWN STYLING */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%; /* ✅ Makes dropdown sit directly below */
  left: 0;
  background-color: #222;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #444;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Prevent dropdown from showing when .clicked is active */
.dropdown.clicked .dropdown-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
}



/* MOBILE OVERRIDE */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-content {
    position: static;
    background-color: #111;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0;
    border-radius: 0;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content a {
    padding: 12px;
    width: 100%;
    border-bottom: 1px solid #333;
  }
}


/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Nav styles for mobile */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Mobile nav hidden by default */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 100%;
    padding: 20px;
    display: none;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-in-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu a {
    margin: 10px 0;
    font-size: 1.2rem;
  }

  .dropdown-content {
    position: static;
    background-color: #222;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }
}
