/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f5f0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== MODERN HEADER ===== */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5d4037;
    margin: 0;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: #5d4037;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover {
    color: #8d6e63;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #8d6e63;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hamburger menu icon */
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #5d4037;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background-color: #5d4037;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.main-footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 0;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    background-color: #8d6e63;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #5d4037;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    margin-top: 40px;
    text-align: center;
}

.rounded-image {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== FEATURED SECTION ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.featured-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.featured-item:hover {
    transform: translateY(-10px);
}

.featured-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.featured-item h3 {
    color: #5d4037;
    margin-bottom: 10px;
}

/* ===== CATALOG STYLES ===== */
.catalog-header {
    background-color: #5d4037;
    color: white;
}

.catalog-header h1 {
    margin-bottom: 15px;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: none;
    border: 1px solid #8d6e63;
    color: #5d4037;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #8d6e63;
    color: white;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.perfume-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.perfume-item:hover {
    transform: translateY(-5px);
}

.perfume-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.perfume-info {
    padding: 20px;
}

.perfume-info h3 {
    margin-top: 0;
    color: #5d4037;
}

.perfume-desc {
    color: #666;
    font-size: 0.9rem;
}

.perfume-category {
    font-size: 0.8rem;
    color: #8d6e63;
    font-style: italic;
    margin-top: 10px;
}

/* ===== CONTACT STYLES ===== */
.contact-header {
    background-color: #5d4037;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    background-color: #f0e6dd;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h2 {
    color: #5d4037;
    margin-top: 0;
}

.social-links {
    margin-top: 30px;
}

.social-icon {
    display: inline-block;
    margin-right: 15px;
    color: #5d4037;
    text-decoration: none;
}

.social-icon:hover {
    text-decoration: underline;
}

.contact-form h2 {
    color: #5d4037;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #5d4037;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 60px 0;
    background-color: #f9f5f0;
}

.map-placeholder {
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 10px;
}
/* --- Modern Horizontal Navbar --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #d76b6b;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}