﻿ 

h1, h2, h3 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Hero / Banner */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background-image: url('https://lh3.googleusercontent.com/pw/AP1GczMtnrRJWIZG9Z8sTz2TCU_TpPxw7RvR6BOttjAqSAtvnQ3HdmFymnWZg9dcfEbFADesoSVg_SjbtAu3Pb7xz7AEL9ELb8BCJXZAFU6qbX2dYBg4uaQmMAL61tk5URlRnzoocvyUk-iT-aetLmzzsvs=w1430-h953-s-no-gm?authuser=2'); /* your high quality hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    animation: heroFadeIn 2.5s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0,0,0,0.4); /* dark overlay */
    }

    .hero .hero-text {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

        .hero .hero-text h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero .hero-text p {
            font-size: 1.2rem;
            margin-top: 1rem;
        }







.fashion-section {
    padding: 60px 10%;
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #222;
}

.fashion-item {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.col-left,
.col-right {
    flex: 1 1 45%; 
}

  
 



.fashion-section img {
    width: 100%;
    border-radius: 6px; 
    transition: transform 0.3s ease;
}

    .fashion-section img:hover {
        transform: scale(1.03);
    }


.imgGrid {
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.imgGrid:hover {
    transform: scale(1.03);
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.desc {
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}




.fade-up,
.fade-down {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-up {
    transform: translateY(40px);
}

.fade-down {
    transform: translateY(-40px);
}

    .fade-up.show,
    .fade-down.show {
        opacity: 1;
        transform: translateY(0);
    }



 

/* --- Responsive --- */
@media (max-width: 992px) {
    .fashion-item,
    .fashion-item.reverse {
        flex-direction: column;
    } 
}



/* Responsive tweaks */
@media (max-width: 768px) {
    .hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero .hero-text p {
        font-size: 1rem;
    }


    .fashion-section {
        padding: unset;
    }

    .fashion-item {
        flex-direction: column;
    }

    .col-left,
    .col-right {
        flex: 1 1 100%;
    }

    .title {
        font-size: 1.3rem;
    }

    .desc {
        font-size: 0.95rem;
    }
}




/* Phones */
@media (max-width: 575.98px) {
    .hero {
        height: 35vh;
    }

    .fashion-section {
        padding: unset;
    }
 
}

/* Tablets (iPad portrait) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        height: 40vh;
    }

    .fashion-section {
        padding: unset;
    }
 
}

/* iPad Landscape & Small Laptops */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero {
        height: 55vh;
    }

    .fashion-section {
        padding: unset;
    }
}


/* Desktop */
@media (min-width: 992px) {

    .hero { 
        height: 70vh; 
    }

    .col-left,
    .col-right {
        opacity: 0;
        transition: all 0.8s ease-out;
    }


    .col-left {
        transform: translateX(-60px);
    }

    .col-right {
        transform: translateX(60px);
    }

        /* When visible on scroll */
        .col-left.show,
        .col-right.show {
            opacity: 1;
            transform: translateX(0);
        }
}   

 