:root {
    /* Brand (from project brief) */
    --brand-green: #044c26;   /* Main Color in logo */
    --brand-gold:  #c39933;   /* Secondary Color in logo */
    --brand-green-trans: #004e2594;
    /* --brand-green-trans: #044c2694; */

    /* Neutrals */
    --grey-900: #1a1a1a;
    --grey-800: #2a2a2a;
    --grey-700: #4a4a4a;
    --grey-600: #5f5f5f;
    --grey-500: #8a8a8a;
    --grey-300: #e6e6e6;
    --grey-200: #efefef;
    --grey-100: #f7f7f7;
    --white:    #ffffff;


    --ts-strong-white: 0 2px 6px rgba(255, 255, 255, 0.603);
    --ts-gold:   0 0 8px rgba(195, 153, 51, .65); /* brand glow */
}

.container{
    width: 80%;
    margin-left: 10%;
}

hr{
    margin-top: 50px;
    margin-bottom: 50px;
    color: var(--grey-300);
}

h1{
    font-size: 50px;
}



/* hero */
.hero-section{
    height: auto;
}
.hero-details{
    width: 80%;
    margin-left: 10%;
    margin-top: 100px;
    z-index: 2;
}
.hero-section .hero-img{
    margin-top: -100px;
    position: absolute;
    z-index: -2;

}
.hero-section .container{
    margin-top: 100px;
    z-index: 2;
}
.lead{
    width: 50%;
    text-shadow: var(--ts-strong);
    color: #1a1a1a;
}

.sub-title{
    margin-top: 100px;
}

/* products */
.products-list{
    margin-top: 600px;
}

/* product circles */
.wrapper{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    gap: 125px;
}

.product-img{
    width: 150px;
    height: auto;
    border-radius: 50%;
 
}
.circle, .circle-2{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    align-content: center;
    text-align: center;
}
.circle{
    background-color: var(--brand-green);
}
.circle-2{
    background-color: var(--brand-gold);
}
.circle-text{
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}
.circle-text-2{
    font-size: 20px;
    font-weight: 500;
}

.product-details{
    margin-left: 20px;

    width: 100%;


}

.product-card__img{
    width: 250px;
    border-radius: 8px;
    position: relative;
}
.product-card__body{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    
}
.product-card__list{
    width: 100%;
    display: flex;
    flex-direction: row;

}
.product-card__list div{
    width: 100%;

}
.products-delivery{
    margin-bottom: 50px;
}

/* 1080-wide tier: */
@media (max-width: 1080px) {
    .container{
        width: 90%;
        margin-left: 5%;
    }
    /* hero */
    .hero-section h1{
        font-size: 30px;
        margin-top: 20px;
    }
    .lead{
        width: 74%;
    }

    .hero-details{
        width: 90%;
        margin-left: 5%;
        margin-top: 0;
        z-index: 2;
    }
    .hero-section .hero-img{
        margin-top: -20px;
    }
    
    /* products */
    .products-list{
        margin-top: 0px;
    }
    .wrapper{
        margin-top: 100px;
        gap: 75px;
    }
    .product-img{
        width: 100px;
        height: 100px;
    }
    .circle, .circle-2{
        width: 100px;
        height: 100px;
    }
    .product-card__img{
        width: 20%;
        height: 20%;
    }
    .product-card__list{
        display: flex;
        /* flex-direction: column; */
    }

}

/* Mobile ~480-wide: full-bleed with safe padding */
@media (max-width: 520px) {
    .container{
        width: 90%;
        margin-left: 5%;
    }
    /* hero */
    .hero-details{
        width: 90%;
        margin-left: 5%;
        z-index: 2;
    }
    .lead{
        width: 100%;
    }
    .hero-section .hero-img{
        position: static;
        margin-top: 0;
    }

    /* products */
    .products-list{
        margin-top: 0px;
    }
    .wrapper{
        margin-top: 100px;
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    .product-img{
        width: 100px;
        height: 100px;
    }
    .circle, .circle-2{
        width: 100px;
        height: 100px;
    }
    .product-card__body{
        display: flex;
        flex-direction: column;
    }
    .product-card__img{
        width: 100px;          /* or a fixed size like 160px */
        aspect-ratio: 1 / 1;  /* forces a square box */
        object-fit: cover;    /* fills the square, crops the excess */
        object-position: center; /* change to '50% 30%' to bias crop */
        display: block;
        border-radius: 50%;     /* optional: 50% for circle */
        
    }
    .product-card__list{
        display: flex;
        flex-direction: column;
    }
    .product-details{
        margin-left: 0;
    }



}

@media (min-width: 2560px){
    /* glabals */
    p, li{
        font-size: 20px;
    }

    /* hero section */
    .hero-section h1{
        font-size: 50px;
    }
    .hero-img{
        width: 100%;
    }
    .lead{
        font-size: 20px;
    }

    .products-list{
        margin-top: 450px;
    }

    .product-img{
        width: 200px;
        height: 200px;
    }
    .circle, .circle-2{
        width: 200px;
        height: 200px;
    }
    .sub-title{
        margin-top: 300px;
    }
}