@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: helvetica, sans-serif;
}


/* header */

.header--hidden {
    transform: translateY(-100%);
}

.header--compact {
    transform: translateY(-36px); 
}

.header {
    display: flex;
    flex-direction: column;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    background-color: white;
}

.header-top {
    height: 36px;
    width: 100%;
    padding: 0px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(243, 243, 243);
}

.top-nav-items ul  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav-items ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.top-nav-items ul li a {
    font-family: Helvetica;
    text-decoration: none;
    color: black;
}

.top-nav-items ul li a:hover {
    text-decoration: underline;
    color: rgb(106, 105, 105);
}

.vertical-line {
    border-left: 1px solid black;
    height: 12px;
    margin: 0px 15px;
}

.header-main-section {
    height: 60px;
    width: 100%;
    padding: 0px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid #cfcfcf;
    position: relative;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header-main-logo {
    display: inline-block;
    height: 59px;
    width: 59px;
    margin: 1px 0;
    z-index: 1000;
}

.header-main-logo svg {
    transform: scale(1.33);
    height: 100%;
    width: 100%;
}

.header-main-nav {
    margin-left: 230px;
}

.header-main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.header-main-nav ul li {
    display: inline-block;
}

.header-main-nav ul li a {
    text-decoration: none;
    font-family: 'Geist';
    color: black;
    font-weight: 500;
    font-size: 16px;
}

.header-main-nav > ul > li > a {
    text-underline-offset: 4px;
}

.header-main-nav ul li a:hover,
.dropdown:hover > a {
    text-decoration: underline;
}

.header-main-items {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 50px;
    padding: 7px 10px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    max-width: 180px;
}

.search-bar:hover {
    background-color: #e2e4e8;
}

.search-bar .search-icon {
    font-size: 20px;
    color: #333333;
    margin-right: 8px;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.search-bar input::placeholder {
    color: #999;
}

.heart-icon, .bag-icon {
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1000;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.heart-icon:hover, .bag-icon:hover {
    background-color: #e2e4e8;
}

/* dropdown */

.dropdown {
    position: relative;
    z-index: 999;
}

.dropdown > a {
    position: relative;
    z-index: 9999;
    display: block;
    padding: 20px 0;
}

.dropdown-content {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 40px 48px;
    top: 96px;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    border: none;
    outline: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-container {
    position: relative;
    z-index: 1002;
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border: none;
    outline: none;
}

.dropdown-column {
    min-width: 200px;
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.dropdown-column h4,
.dropdown-column ul,
.dropdown-column li,
.dropdown-column a {
    position: relative;
    z-index: 1002;
}

.dropdown-column h4 {
    font-family: 'Geist';
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;  
    margin: 0; 
}

.dropdown-column ul li {
    margin: 0; 
    line-height: 1; 
}

.dropdown-column ul li a {
    color: #707072;
    font-size: 13px;
    font-family: 'Geist';
    text-decoration: none;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    padding: 2px 0; 
}

.dropdown-column ul li a:hover {
    color: #111;
}

.dropdown:hover::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 96px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    pointer-events: none;
}

.dropdown:last-child:hover::after {
    background: none;
}

.header-scrolled .dropdown-content {
    top: 96px;
}

.header-scrolled .dropdown:hover::after {
    top: 96px;
    height: calc(100vh - 0px);
}

@media screen and (max-width: 1200px) {
    .search-bar {
        padding: 7px;
        width: 34px;
        height: 34px;
        display: flex;
        justify-content: center;
        max-width: unset;
        background-color: transparent;
        box-shadow: none;
    }
    
    .search-bar:hover {
        background-color: #f3f4f6;
    }
    
    .search-bar .search-icon {
        margin-right: 0;
    }
    
    .search-bar input {
        display: none;
    }

    .dropdown-container {
        gap: 10px;
    }

    .dropdown-column {
        min-width: 140px;
    }

    .dropdown-column h4{
        font-size: 14px;
    }

    .dropdown-column ul li a {
        font-size: 13px;
    }
}

/* ------ main ----- */

.main-container {
    margin-top: 120px;
}

/* hero section 1 */

.hero-section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1800px;
}

.hero-section1-image {
    width: 100%;
    box-sizing: border-box;
}

.hero-section1-image img {
    width: 100%;
    height: auto; 
    min-height: 350px; 
    max-height: 517px;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-section1-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-section1-desc h1 {
    font-family: helvetica;
    font-size: clamp(32px, 5vw, 55px); 
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    margin-top: 40px;
}

.hero-section1-desc p {
    font-size: clamp(14px, 2vw, 16px); 
    margin: 10px 0 20px;
    color: #000;
    max-width: 600px; 
}

.hero1-button {
    padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 20px); 
    font-size: clamp(14px, 2vw, 16px); 
    font-weight: bold;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero1-button:hover {
    background-color: #444444;
    transform: translateY(-2px);
}

/* hero section 2 */

.hero-section2 {
    margin-top: 120px;
    padding: 0px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    max-width: 1800px;
    margin: 120px auto 0;
}

.hero-section2-head {
    align-self: flex-start;
}

.hero-section2-head h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    width: 100%;
}

.hero-section2-image {
    width: 100%;
    box-sizing: border-box;
}

.hero-section2-image img {
    width: 100%;
    height: auto;
    min-height: 450px;
    max-height: 715px;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-section2-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-section2-desc span {
    margin-top: 40px;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-section2-desc h1 {
    font-family: helvetica;
    font-size: clamp(32px, 5vw, 55px);
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.hero-section2-desc p {
    font-size: clamp(14px, 2vw, 16px);
    margin: 10px 0 20px;
    color: #000;
    max-width: 600px;
}

.hero2-button {
    padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s ease;
}

.hero2-button:hover {
    background-color: #444444;
    transform: translateY(-2px);
}

/* Media Queries hero section 1 and 2 */

@media screen and (max-width: 1024px) {
    .hero-section1 , .hero-section2 {
        padding: 0 48px;
    }
    
    .hero-section1-desc , .hero-section2-desc {
        padding: 0 16px;
    }
}

@media screen and (max-width: 960px) {
    .hero-section1 , .hero-section2 {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section1-desc h1 {
        margin-top: 24px;
    }
}

@media screen and (max-width: 600px) {
    .hero-section1-image img {
        min-height: 560px;
    }

    .hero-section1-desc {
        padding: 0px;
        align-items: flex-start;
    }

    .hero-section2-image img {
        min-height: 600px;
    }

    .hero-section2-head h3 {
        font-size: 20px;
    }

    .hero-section2-desc {
        padding: 0;
        align-items: flex-start;
        text-align: left;
    }

    .hero-section2-desc span {
        margin-top: 24px;
    }
}

/* section 1 */

.section1 {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    padding: 0px 48px;
    width: 100%;
    box-sizing: border-box;
}

.section1-heading h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.section1-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.s1-image-card {
    position: relative;
    width: 100%;
    max-width: 465px;
    aspect-ratio: 465/570;
    flex: 1;
}

.s1-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.s1-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.s1-overlay p {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
}

.s1-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: bold;
    transition: all 0.3s ease;
}

.s1-button:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

@media screen and (max-width: 960px) {
    .section1 {
        padding: 0px 20px;
    }
}

@media screen and (max-width: 600px) {
    .section1-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .s1-image-card {
        width: 100%;
        max-width: 100%;
    }
    
    .section1-heading h3 {
        font-size: 20px;
    }
    
    .s1-overlay {
        bottom: 20px;
        left: 20px;
    }

    .s1-overlay p {
        font-size: 22px;
    }

    .s1-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* section 2 , 3 , 4 */

.section2, .section3, .section4 {
    margin-top: 120px;
    padding: 0px 48px;
    width: 100%;
    box-sizing: border-box;
}

.section2-header, .section3-header, .section4-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section2-title, .section3-title, .section4-title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.image-scroll-containers2, .image-scroll-containers3, .image-scroll-containers4 {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-behavior: smooth;
    width: 100%;
}

.image-scroll-containers2::-webkit-scrollbar,
.image-scroll-containers3::-webkit-scrollbar,
.image-scroll-containers4::-webkit-scrollbar {
    display: none;
}

.image-scroll-containers2,
.image-scroll-containers3,
.image-scroll-containers4 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.s2-nav-buttons, .s3-nav-buttons, .s4-nav-buttons {
    display: flex;
    gap: 10px;
}

.s2-nav-buttons i, .s3-nav-buttons i, .s4-nav-buttons i {
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #cdcdcd;
    transition: background-color 0.3s, transform 0.3s;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section 2 specific styles */

.s2-image-item {
    flex: 0 0 auto;
    width: clamp(250px, 30vw, 300px);
    aspect-ratio: 1/1;
    overflow: hidden;
}

.s2-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Section 3 specific styles */

.s3-image-item {
    flex: 0 0 auto;
    width: clamp(300px, 40vw, 455px);
    aspect-ratio: 455/310;
    overflow: hidden;
    position: relative;
}

.s3-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.s3-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.s3-button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.s3-button:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

/* Section 4 specific styles */

.s4-image-item {
    flex: 0 0 auto;
    width: clamp(300px, 40vw, 455px);
    aspect-ratio: 455/569;
    overflow: hidden;
    position: relative;
}

.s4-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.s4-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.s4-overlay span {
    font-weight: 500;
}

.s4-overlay p {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 400;
}

.s4-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.s4-button:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

@media screen and (max-width: 960px) {
    .section2, .section3, .section4 {
        padding: 0px 20px;
        margin-top: 80px;
    }

    .section2-title, .section3-title, .section4-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .s2-image-item {
        width: clamp(200px, 75vw, 250px);
    }

    .s3-image-item, .s4-image-item {
        width: clamp(280px, 85vw, 350px);
    }

    .s3-overlay, .s4-overlay {
        bottom: 20px;
        left: 20px;
    }

    .s4-overlay p {
        font-size: 20px;
    }

    .s3-button, .s4-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .s2-nav-buttons i, .s3-nav-buttons i, .s4-nav-buttons i {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* section 5 */

.section5 {
    margin-top: 70px;
    padding: 0px 48px;
    display: flex;
    justify-content: center;
    gap: 120px;
}

.seection5-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
}

.seection5-column ul {
    list-style: none;
    padding: 0;
}

.seection5-column li {
    margin-bottom: 15px;
    font-size: 17px;
}

.seection5-column a {
    text-decoration: none;
    color: #5f5f5f;
}

.seection5-column a:hover {
    color: #000;
}

/* footer */

.footer-divider {
    margin: 80px 48px;
    border: none;
    border-top: 1px solid rgb(201, 201, 201);
}

@media screen and (max-width: 960px) {

    .section5 {
        padding: 0px 24px;
        gap: 50px;
    }

    .footer-divider {
        margin: 80px 24px;
    }
}

@media screen and (max-width: 670px) {
    .section5 {
        flex-direction: column;
        gap: 20px;
    }
    
    .seection5-column {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .seection5-column h3 {
        margin-bottom: 0;
        cursor: pointer;
    }
    
    .seection5-column ul {
        display: none;
    }
}