/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Georgia', serif;
  background: #fdfaf7;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

.logo span {
  color: #b29559;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #555;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #b29559;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #111;
  color: #fff;
  position: relative;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.logo img{
  width:70px;
}

.navbar .logo span {
  color: #e0b084;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e0b084;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Responsive Navbar */


/* About Summary */
.about-summary {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}
.about-summary h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}
.about-summary p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #555;
}

/* Hero Section */
.about-hero {
  position: relative;
  background: url('../images/perfume-bg.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.about-hero .hero-text {
  position: relative;
  z-index: 2;
}
.about-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 1.2rem;
}

/* Section Styling */
section {
  padding: 60px 20px;
}
.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
p {
  color: #555;
  line-height: 1.6;
}

/* Mission Box */
.mission-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.mission-box div {
  flex: 1;
  min-width: 280px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.mission-box h3 {
  margin-bottom: 10px;
  color: #222;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.1rem;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 {
  margin-bottom: 20px;
}
.cta .btn {
  background: #d4af37;
  padding: 12px 30px;
  color: #111;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.cta .btn:hover {
  background: #fff;
  color: #111;
}


/* Featured Section */
.featured {
  padding: 60px 20px;
  text-align: center;   /* centers heading + button */
}
.featured h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 800px;        /* Limit total width for 1–2 cards */
  margin: 0 auto;          /* Center the grid horizontally */
  justify-content: center; /* Center when fewer cards */
}

/* Product Card */
.product-card {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #333;
}

.product-card .price {
  font-size: 16px;
  font-weight: bold;
  color: #b91c1c;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Center Button */
.center-btn {
  text-align: center;
  margin-top: 40px;
}
.center-btn .btn {
  background: #d4af37;
  padding: 12px 25px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.center-btn .btn:hover {
  background: #b9972f;
}





/* Why Choose Us */
.why-us {
  padding: 60px 20px;
  text-align: center;
}
.why-us .features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
}
.feature img {
  width: 100%;
  margin-bottom: 15px;
}
.feature h4 {
  color: #d4af37;
  margin-bottom: 10px;
}

.mission p, .about p, .story p{
  color:#000000;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.testimonial p {
  font-style: italic;
  color: #444;
}
.testimonial h4 {
  margin-top: 15px;
  color: #222;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  text-align: center;
  background: #222;
  color: #fff;
}
.newsletter form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter input {
  padding: 12px;
  width: 250px;
  border-radius: 6px;
  border: none;
  outline: none;
}
.newsletter button {
  background: #d4af37;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  background: #b9972f;
}


/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero.jpg') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  padding: 10px 25px;
  background: #b29559;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #8a6f3f;
}

/* Products */
/* Hero Section */
.hero-products {
  background: url("../images/perfume-banner.jpg") center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-products::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-products .hero-text {
  position: relative;
  z-index: 1;
}

.hero-products h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.hero-products p {
  font-size: 18px;
  color: #eee;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 50px;
}

.filter-bar label {
  margin-right: 10px;
  font-weight: bold;
  color: #444;
  margin: 13px;
}

.filter-bar select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;

}
.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  width:100%;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-family: 'Georgia', serif;
  font-size: 20px;
  margin: 10px 0;
  color: #333;
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  color: #e6b800;
}


/* About & Contact */
/* Contact Section */

.two-column {
  padding: 60px 20px;
  background: #f9f9f9;
}

.two-column .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.two-column .left {
  flex: 1;
  min-width: 300px;
}

.two-column .left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.two-column .left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.two-column .left .btn {
  background: #333;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.two-column .left .btn:hover {
  background: #555;
}

.two-column .right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.two-column .right img {
  max-width: 50%;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}


.contact {
  padding: 80px 10%;
  background: #fafafa;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form, .contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-form h2,
.contact-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.contact-form p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.btn:hover {
  background: #444;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  /*filter: grayscale(100%);*/
  transition: filter 0.3s;
}

/*.social-icons img:hover {
  filter: grayscale(0%);
}*/

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}




/* Footer */
footer {
  background: #111;
  color: #ddd;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-container h3 span {
  color: #e6b800; /* gold accent */
}

.footer-container h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

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

.footer-container ul li {
  margin: 8px 0;
}

.footer-container ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-container ul li a:hover {
  color: #e6b800;
}

.footer-contact p {
  margin: 6px 0;
}

.social-icons {
  display: flex;
 
}

.social-icons a img {
  width: 24px;
  height: 24px;
  /*filter: brightness(0) invert(1);*/ /* make white */
  transition: transform 0.3s;
}

/*.social-icons a:hover img {
  transform: scale(1.2);
  filter: invert(64%) sepia(80%) saturate(500%) hue-rotate(20deg) brightness(100%) contrast(90%);
}*/

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}


@media(max-width: 769px) {

.filter-bar {
    display: block;
    justify-content: flex-end;
    align-items: center;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}
.filter-bar label {
    margin-right: 10px;
    font-weight: bold;
    color: #444;
    display: block;
    /* width: 100%; */
}

.filter-bar select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}


  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    z-index: 9;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
