/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfaf6;
  color: #4b3f2f;
}

/* Navbar */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b6f47;
  color: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #4b3f2f;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 1.5em;
  color: #4b3f2f;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 40px;
    background-color: #d8d2cb;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    display: none;
  }

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

.logo img{
  height: 40px;
  margin-top: 5px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero-image {
  max-width: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  aspect-ratio: 1 / 1;
}

.fragrance-name {
  font-size: 2.5em;
  margin: 20px 0 10px;
  color: #8b6f47;
}

.short-description {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
}

/* Info Blocks */
.info-block {
  padding: 80px 20px;
  text-align: center;
  background-color: #fdfaf6;
}

.info-block.alt {
  background-color: #d8d2cb;
}

.info-block h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #8b6f47;
}

.info-block p {
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image {
    max-width: 80%;
  }

  .fragrance-name {
    font-size: 2em;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}
