
header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #D03374;
    transition: all 0.3s ease;
    margin-left: 0;
    padding-left: 0;
    gap: 15px; /* This creates space between image and text */
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo span {
    color: #8c1f4d;
    font-weight: 500;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo:hover img {
    box-shadow: 0 4px 8px rgba(208, 51, 116, 0.2);
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.desktop-nav ul li a:hover {
    color: #D03374;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #D03374;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #D03374;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
}

.mobile-nav ul li a:hover {
    color: #D03374;
    transform: translateX(10px);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #D03374;
    cursor: pointer;
}


@media (max-width: 992px) {
    .header-container {
        padding: 12px 20px 12px 30px;
    }
    
    .logo {
        font-size: 22px;
        gap: 12px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-container {
        padding: 10px 15px 10px 20px;
    }
    
    .logo {
        font-size: 20px;
        gap: 10px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px 8px 15px;
    }
    
    .logo {
        font-size: 18px;
        gap: 8px;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
}