/* Fonts and Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333;
}
header nav {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav ul li {
    display: inline-block;
    margin: 0 15px;
    position: relative;
}
header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4f4f4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}
.dropdown-content li {
    display: block;
}
.dropdown-content li a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    display: block;
}
header nav ul li:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: url('hero-women.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}
.cta-button {
    background-color: #f4a261;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
}

/* Newsletter & About Sections */
.newsletter, .about {
    padding: 60px 20px;
    text-align: center;
}
.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    max-width: 80%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}
.newsletter button {
    background-color: #2a9d8f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}
footer {
    background-color: #eee;
    padding: 20px;
    text-align: center;
}

/* Icon Style */
.flower-icon {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Optional overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

