@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1a4d7a;
    /* Deep Blue */
    --accent-color: #d4af37;
    /* Elegant Gold */
    --light-color: #e8f4f8;
    --text-color: #0d3a5c;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.fashion-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.brand-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.fashion-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.fashion-nav a {
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s;
}

.fashion-nav a:hover {
    color: var(--accent-color);
}

.lang-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    transition: background 0.3s;
}

.lang-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* Sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-header h2 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.sidebar-nav a,
.sidebar-lang-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.sidebar-nav a:hover,
.sidebar-lang-btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.sidebar-nav a i,
.sidebar-lang-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
}

/* Hero */
.hero-fashion {
    height: 80vh;
    background: linear-gradient(rgba(26, 77, 122, 0.5), rgba(13, 58, 92, 0.7)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-fashion {
    padding: 12px 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-fashion:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-text {
    padding: 25px;
    text-align: center;
}

.card-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Services */
.bg-light {
    background-color: var(--light-color);
}

.services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.service-box {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact */
.contact-flex {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.detail-row i {
    color: var(--primary-color);
}

.detail-row a {
    color: var(--text-color);
    transition: color 0.3s;
}

.detail-row a:hover {
    color: var(--primary-color);
}

.map-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .fashion-nav {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
}