@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=GFS+Didot&family=Gruppo&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Racing+Sans+One&display=swap');

:root {
    --kolor-glowny:#4B5028;
    --kolor-uzupelniajacy:#DCDC4B;
    --kolor-ciemny:#5A1432;
}

html{
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    font-size: 10px; /* zeby łatwiej liczyć jednostki rem; 1rem=10px*/
}

body {
    background-color: white;
    font-size: 1.6rem;
    font-weight: 400;
}
    
.boldonse-regular {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    }

.inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    }

h1 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(8rem, 16vw, 25rem);
    color: #DCDC4B;
    }

h2 {
    font-size: clamp(4rem, 17vw, 20rem);
    color: white;
    }

h2, h3, h4, h5, h6{
    font-family: "Inter", sans-serif; 
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: center;
}   

a {
    font-style: normal;
    color: rgb(255, 255, 255);
}

a:hover {
  color: var(--kolor-uzupelniajacy);
}

a:link {
  text-decoration: none;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ol{
   display: flex;
    gap: 6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a{
    color: white;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    transition: opacity .3s;
}

nav a:hover{
    opacity: .7;
}

nav p{
    margin: 0;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

#home{
    background-image: url("../img/background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .zawartosc{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#home .zawartosc h1{
    margin-bottom: 10px;
}
#home .zawartosc h2{
    font-size: clamp(4rem, 5vw, 8rem);
}

#lookbook{
    position: relative;
    min-height: 100vh;
    background: #f4f4f4;
    display: grid;
    grid-template-columns: minmax(600px,1.6fr) minmax(420px,0.9fr);
    padding: 80px 0 0px 80px;
    overflow: hidden;
}

#lookbook h2{
    grid-column: 1;
    width: 100%;
    margin: 0 0 40px 0;
    text-align: center;
    font-family: "Boldonse", system-ui;
    font-size: 16rem;
    font-weight: 400;
    color: var(--kolor-ciemny);
    position: relative;
    z-index: 10;
    margin-top: 130px;
}

.left-gallery{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 70px;
    z-index: 2;
}

.left-gallery img{
    width:min(18vw);
    height:auto;
    object-fit: cover;
    aspect-ratio: 2/3;
    border: 1.8px solid black;
}

.right-photo{
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    height: 100%;
    z-index: 3;
}

.right-photo img{
    width: min(42vw, 720px);
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 260px;
    display: block;
}

.description{
    grid-column: 1;
    text-align: center;
    margin-top: 25px;
    z-index: 2;
    padding-bottom: 80px;
}

.description h3{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.description p{
    margin-top: 20px;
    font-size: 1.3rem;
}

.description span{
    color: #68103b;
}

.ticker {
    width: 100%;
    height: 40px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.ticker-content span {
    color: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    text-transform: lowercase;
    margin-right: 120px;
}

#inspiration{
    min-height: 70vh;
    background-image: url("../img/Rectangle\ 24.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px;
}

.inspiration-gallery{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.inspiration-gallery img{
    width: 250px;
    height: 420px;
    object-fit: cover;
    transition: transform .3s ease;
}

.inspiration-gallery img:hover{
    transform: translateY(-10px);
}

.inspiration-text{
    text-align: center;
}

.inspiration-text h3{
    font-family: "Boldonse", system-ui;
    font-size: 7rem;
    font-weight: 700;
    color: #dcdc4b;
    margin: 0;
}

.inspiration-text p{
    font-family: "Inter", sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    margin-top: 32px;
}

#lookbook-grid{
    position: relative;
    background: #f4f4f4;
    padding: 80px 0 120px;
    overflow: hidden;
}

.grid-gallery{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 120px;
    margin-bottom: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.grid-gallery img{
   flex: 1 1 250px;
    max-width: 260px;
    height: 420px;
    object-fit: cover;
    transition: .3s ease;
    border: 1px solid #000;
}

.grid-gallery img:hover{
    transform: translateY(-8px);
}

.dots-bg{
    position: absolute;
    left: 0;
    bottom: -300px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

#collections{
    background-image: url("../img/Rectangle\ 37.jpg");
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#collections h2{
    font-family: "inter", sans-serif;
    /* font-size: 20rem; */
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
}

.collection-card{
    position: relative;
    width: 95%;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255,255,255,.15);
}

.collection-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.collection-card span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Inter", sans-serif;
    font-size: 7rem;
    font-weight: 700;
    color: #DCDC4B;
    z-index: 2;
}

.collection-card:hover img{
    transform: scale(1.05);
    filter: brightness(.75);
}

.collection-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    transition: .3s;
}

.collection-card:hover::after{
    background: rgba(0,0,0,.3);
}

#products{
    position: relative;
    padding-top: 120px;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 0;
    overflow: hidden;
}

.products-heading{
    position: relative;
    height: 280px;
    margin-top: -30px;
}


#products .background-text{
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Boldonse", system-ui;
    font-size: clamp(20rem, 22vw, 40rem);
    line-height: .8;
    color: #5A1432;
    z-index: 0;
    white-space: nowrap;
}

.products-content{
    display: flex;
    gap: 5vw;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.featured-look{
    display: flex;
    justify-content: flex-start;
    align-self: stretch;
    z-index: 3;
}
.featured-look img{
    width: min(42vw, 720px);
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    object-position: center;
    border-top-right-radius: 260px;
    display: block;
    margin-left: -150px;
}

.categories-grid{
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    padding-bottom: 4rem;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 50px 20px;
    /* width: 100%; */
    /* max-width: 1100px; */
}


.category-card{
    flex: 0 1 300px;
    text-align: center;
    color: #111;
}
@media (min-width:1825px){
    .category-card{flex: 0 1 400px;}
}
@media (max-width:1825px){
    .category-card{flex: 0 1 250px;}
}
@media (max-width:1578px){
    .category-card{flex: 0 1 200px;}
}

.category-card img{
    width: 100%;
    /* height: 320px; */
    /* object-fit: contain; */
    transition: .3s;
}

.category-card:hover img{
    transform: translateY(-5px);
}

.category-card span{
    display: block;
    margin-top: 12px;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

footer{
    background: #4B5028;
    padding: 40px 10% 25px;
}

.footer-logo{
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo h2{
    font-family: "Inter", sans-serif;
    font-size: 5.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    align-items: start;
    gap: 60px;
}

.footer-column{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3{
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: left;
    margin: 0 0 4px;
}

.footer-column a{
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: white;
    transition: .3s;
}

.footer-column a:hover{
    color: #DCDC4B;
}

.social-icons{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a{
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #5A1432;
    color: white;
    font-size: 16px;
}

.social-icons a:hover{
    transform: translateY(-3px);
}

.social{
    align-items: center;
}

.copyright{
    text-align: center;
    margin-top: 50px;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;

    color: rgba(255,255,255,.9);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px){

html{
    font-size:8px;
}

nav{
    padding: 0;
    height: 130px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container{
    width: 100%;
    justify-content: center
}

nav ol{
    display:none;
}

nav p{
    position:static;
    font-family: "Inter", sans-serif;
    font-size:3rem;
    text-align: center;
    font-weight: 500;
    margin-top: 60px;
}

.hamburger{
    display:block;
}


#home{
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    background-image: url("../img/Group\ 25.jpg");
}

#home .zawartosc{
    width: 100%;
    align-items: center;
    display: flex;
}

#home .zawartosc h2{
    display: none;
    width: 100%;
    padding: 18px 0;
     font-family: "Inter", sans-serif;
     font-size: 12rem;
     font-weight: 700;
     background: rgba(255,255,255,0.12);
     backdrop-filter: blur(10px);
     margin-bottom: 40px;
}

#home .zawartosc h1{
    font-family: "Boldonse", system-ui;
    font-size: 12rem;
    line-height: .72;
    color: #DCDC4B;
    text-align: center;
    width: 100%;
    padding-left: 0px;
    margin-top: 320px;
}


.ticker{
    height: 42px;
}

.ticker-content span{
    font-size: 2rem;
    margin-right: 60px;
    font-weight: 500;
 }



#lookbook{
    display:flex;
    flex-direction:column;
    padding:12px 0 30px;
    min-height:auto;
    background: #f4f4f4;
    overflow: hidden;
    position: relative;
}

#lookbook h2{
    font-size:7rem;
    margin:0;
    margin-left:0;
    position: absolute;
    bottom: 1420px;
    z-index: 10;
    color: #fff;
    font-family: "Boldonse", system-ui;
}


.background-text{
    display: none;
}

.left-gallery{
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.left-gallery img{
    width: auto;
    height: 400px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,.15);
    position: relative;
    z-index: 2;
}

.right-photo{
    order: 1;
    margin: 0;
    display: block;
    width: 100%;
}

.right-photo img{
    width: 92%;
    height: 460px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center top;
}

.description{
    order: 3;
    margin-top: 18px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.description h3{
    font-size: 2.4rem;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 8px;
}

.description p{
    font-size: 1.3rem;
    line-height: 1.35;
    max-width: 260px;
    margin: 0 auto;
}


#inspiration{
    padding:20px 10px 25px;
    min-height: auto;
    gap: 20px;
    background-position: center;
    background-size: cover;
}

.inspiration-gallery{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
}

.inspiration-gallery img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.inspiration-text{
    padding: 0 20px;
}

.inspiration-text h3{
    font-family: "Boldonse" system-ui;
    font-size: 3.4rem;
    font-weight: 700;
    color: #DCDC4B;
    line-height: 1.1;
    margin-bottom: 10px;
    line-height: 1.5;
}

.inspiration-text p{
    font-size:1.5rem;
    line-height: 1.3;
    color: white;
    margin: 0;
}


.grid-gallery{
     width: 100%;
    display: flex;
    flex-wrap: nowrap;    
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 0 15px;
    margin-bottom: -30px;
    justify-content: flex-start;}

.grid-gallery img{
    height: 540px;
    width:auto;
    flex-shrink:0;
}


#collections h2{
    font-size:6rem;
    font-family: "Boldonse", system-ui;
}

.collection-card{
    height:180px;
}

.collection-card span{
    font-size:3rem;
}


#products{
    padding: 40px 0px;
    position: relative;
}

.products-heading{
    height:100px;
}

#products h2{
    position: absolute;
    font-size:7rem;
    margin: 0;
    left:50%;
    top:420px;
    font-family: "Boldonse", system-ui;
    transform: translateX(-50%);
    z-index: 20;
    color: white;
}

.products-content{
    display:block;
    margin-top:0;
}

.featured-look img{
    width: 92%;
    height: 460px;
    display: block;
    margin: 0 auto;
    margin-top: -50px;
    object-fit: cover;
    object-position: center top;
}

.categories-grid{
    margin-top:30px;
    grid-template-columns:repeat(2, 160px);
    gap:15px;
    display: grid;
    justify-content: center;
}

.category-card img{
    height:150px;
}


footer{
    padding:35px 20px 25px;
}

.footer-logo h2{
    font-size:2.8rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo{
    margin-bottom: 35px;
}

.footer-content{
    grid-template-columns:repeat(2,1fr);
    display: grid;
    column-gap: 35px;
    row-gap: 40px;
    align-items: start;
}

.footer-column{
    gap: 8px;
}

.footer-column h3{
    font-size:1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.footer-column a{
   font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
}

.social{
    align-items: center;
}

.social-icons{
    justify-content: center;
    gap: 12px;
}

.social-icons a{
    width:42px;
    height:42px;
}

.social-icons img{
    width:30px;
    height: 30px;
    object-fit: contain;
}

.copyright{
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}

}