/* RESET STYLES*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI' , sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* HEADER SECTION */
header {
    background-color: #111;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e1b12c;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #e1b12c;
}

.shop-button {
    background-color: #e1b12c;
    color: #111;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e1b12c;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Secction */
.hero {
    text-align: center;
    background-image:url(Images/27ceb1dc-8188-4885-bc48-530ec218ad3b.jpg);
    height: 90vh;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    margin: 15px 0;
    color: chocolate;
}

.hero-button {
    background-color: #e1b12c;
    color: #111;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

/* Section styling */
section {
    padding: 80px 40px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #e1b12c;
}

/* Featured Categories Section */
.categories {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.categories h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e1b12c;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.category-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
}
.category-card:hover {
    transform: scale(1.03);
}

.category-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.category-card:hover img {
    transform: scale(1.05);
}


.image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.image-wrapper .hover-image {
    opacity: 0;
}

.category-card:hover .hover-image {
    opacity: 1;
}

.category-card:hover .main-image {
    opacity: 0;
}

/* Best Sellers Section */
.best-sellers {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.best-sellers h2 {
    font-size: 32px;
    color: #e1b12c;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(225, 177, 44, 0.4);
}

.product-card img {
    width: 100%;
    height: 250px;
    border-radius:4px;
}

.product-card h3 {
    margin: 10px 0;
    color: #fff;
}

.product-card .price {
    font-weight: bold;
    color: #e1b12c;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #111;
    padding: 80px 20px;
    text-align: center;
}

.why-choose-us h2 {
    color: #e1b12c;
    margin-bottom: 10px;
}

.why-choose-us .tagline {
    font-style: italic;
    color: #ccc;
    margin-bottom: 40px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #1c1c1c;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: #e1b12c;
}

.benefit-card p {
    font-size: 14px;
    color: #ccc;
    font-size: 14px;
}

/* Lookbook / Lifestyle Gallery Section */
.lookbook {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.lookbook h2 {
    font-size: 32px;
    color: #e1b12c;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lookbook-tagline {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Newsletter Signup Section */
.newsletter {
    background-color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.newsletter input {
    width: 250px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 4px;
    border: none;
}

.newsletter button {
    color: #111;
    padding: 10px 20px;
    background-color: #e1b12c;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}


/* Footer Section */
.footer {
    background-color: #000;
    color: #777;
    padding: 40px 20px;
    text-align: center;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 10px;
}

.site-footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer p {
    margin: 6px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        background-color: #111;
        position: absolute;
        top: 70px;
        right: 40px;
        padding: 20px;
        border-radius: 5px;
    }

    .nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .shop-btn {
        display: none;
    }

    .navbar {
        flex-wrap: nowrap;
    }
}