﻿body {
    margin: 0;
    font-family: 'Segoe UI', Arial;
    background-color: #f5f5f5;
}

/* NAVBAR */
.navbar {
    background-color: #000;
    padding: 15px;
    color: white;
    text-align: center;
}

    .navbar .logo {
        font-size: 22px;
        font-weight: bold;
        margin-right: 30px;
    }

    .navbar a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-size: 16px;
    }

        .navbar a:hover {
            color: #f1c40f;
        }

/* PAGE TITLE */
.page-title {
    text-align: center;
    margin: 30px 0;
    font-size: 32px;
    color: #333;
}

/* GALLERY GRID */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

.card {
    width: 220px;
    margin: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    }

    .card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    .card h4 {
        margin: 10px 0 5px 0;
        color: #333;
    }

    .card .price {
        color: #f1c40f;
        font-weight: bold;
        margin-bottom: 10px;
    }

/* FOOTER */
.footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
/* ===== HOME PAGE ===== */

/* HERO SECTION */
.hero {
    background: url('../Images/dress10.jpg') center/cover no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5); /* dark overlay */
    }

.hero-content {
    position: relative;
    z-index: 1;
}

    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }

.btn-hero {
    padding: 12px 25px;
    background-color: #f1c40f;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-hero:hover {
        background-color: #e0b70f;
        transform: scale(1.05);
    }

/* FEATURES SECTION */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
}

.feature-card {
    width: 280px;
    margin: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        margin: 10px 0;
        color: #333;
    }

    .feature-card p {
        color: #666;
        font-size: 14px;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px
