﻿@font-face {
    font-family: 'ABC Monument Grotesk';
    src: url('ABCMonumentGrotesk-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Serbenta';
    /*    src: url('SebentaTrial-Semibold.woff2') format('woff2');*/
    src: url('/assets/css/SebentaTrial-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Serbenta Italic';
    src: url('SebentaTrial-SemiboldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}




/*
body {
    font-family: 'Serbenta';
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
}*/
* {
    box-sizing: border-box;
}

a {
    text-decoration: none; /* Tar bort understrykning */
}

body {
    background: #f1f0eb;
    font-family: 'ABC Monument Grotesk', sans-serif;

    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
}


/* Huvudbehållaren för navigationen */
.ramklarNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    max-width: 1500px;
    margin: auto;
    width: 100%;
}

/* Logotypen */
.ramklarNav-logo {
    display: flex;
    align-items: center;
    width: auto; /* Endast så bred som innehållet */
    max-width: fit-content;
}

    .ramklarNav-logo svg {
        width: 150px;
        height: auto;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-right: 1rem;
       
    }

/* Navigationslänkarna */
.ramklarNav-nav-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-left: 2rem;
    font-family: 'ABC Monument Grotesk', sans-serif;
}

    .ramklarNav-nav-links a {
        text-decoration: none;
        color: black;
        font-size: 1rem;

        transition: color 0.3s;
    }

/* Ikonerna i navigeringen */
.ramklarNav-nav-icons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}


.ramklarNav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    
}

    .ramklarNav-search-btn svg {
        width: 20px;
        height: 20px;
    }


.ramklarNav-booking-btn {
    background-color: pink;
    color: black;
    border: none;
    padding: 0.6rem 1rem;
 /*   border-radius: 50rem;*/
    cursor: pointer;
    font-size: 0.8rem;
   
}

    /* .ramklarNav-booking-btn:hover {
        background-color: gray;
    } */



.ramklarNav-overlay {
    position: fixed; /* Så den bara täcker viewporten */
    top: 0;
    left: 0;
    width: 100%;
   height: 100vh;
    max-height: 0;
    background-color: rgba(0, 0, 0, 0.94); /* Semi-transparent bakgrund */
    overflow-y: auto; /* Se till att menyn är scrollbar om den blir lång */
    transition: 0.5s ease-in-out;
    display: none; /* Dold från början */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
  
}





.videoContainer {
    margin-left: calc(max(2rem, ((100vw - 1500px) / 2)));
    margin-right: 0px;
}





.ramklarNav-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
}

.ramklarNav-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

    .ramklarNav-overlay a:hover {
        color: #f1f1f1;
    }

.ramklarNav-overlay .ramklarNav-closebtn {
    position: absolute;
    top: 20px;
    right: 1.5rem;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

/* Hamburger-knappen */
.ramklarNav-hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    display: none;
    width: 40px; /* Lägg till en fast bredd */
    height: 40px; /* Lägg till en fast höjd */
    -webkit-tap-highlight-color: transparent;
    color: black !important;
}



/* Dölj blackbaren som standard */
.ramklarNav-blackbar {
    display: none !important;
    height: 60px;
    background-color: black;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}


.ramklarBlackLine {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}


.DLSeniorLanding_Lindberg-text {
    font-size: 1vw;
    font-weight: 400;
    text-align: left;
    margin-top: 0.5vw;
    line-height: 1.2;
    text-align:left;
}


.DLSeniorLanding-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}




@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }



    .DLSeniorLanding-hero-section {
        flex-direction: column-reverse;
        height: auto;
        min-height: 0px;
    }

    .DLSeniorLanding-text-wrapper {
        width: 100%;
        padding: 5%;
    }

    .DLSeniorLanding-image-section {
        width: 100%;
        padding: 3%;
    }

    .DLSeniorLanding-hero-section {
        flex-direction: column-reverse;
        height: auto;
        min-height: 0px;
    }

    .DLSeniorLanding-hero-section {
        background-color: #f3d1ce;
        display: flex;
     
        padding: 0;
        margin: 0;
        justify-content: space-between;
    
        align-items: stretch;
    }
}
@media screen and (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }
}




/* Responsiv design */
@media screen and (max-width: 768px) {



    .DLSeniorLanding_Lindberg-text {
        font-size: 2vw;
    }


    .ramklarNav-nav-links {
        display: none;
    }

    .ramklarNav-search-btn,
    .ramklarNav-booking-btn {
        display: none;
    }

    .ramklarNav-hamburger {
        display: block;
        padding: 0; /* Förhindra extra padding */
        margin: 0; /* Förhindra extra marginal */
    }



    .ramklarNav {
        padding: 1rem 1rem;
        padding-top: 1.5rem;
        padding-bottom: 0.2rem;
    }

    .ramklarNav-blackbar {
        display: flex !important;
    }

    .ramklarBlackLine {
        margin-left: 1rem;
        margin-right: 1rem;
    }


    .videoContainer {
        margin-left: 1rem;
        margin-right: 0px;
    }

    .centered-text-section.optician {
        margin: 1vw;
        margin-top: 0vh;
        font-size: 4vw !important;
    }

    .DLSeniorLanding-image-section  {
        position: relative;
        height: 100%;
        width: 100%;
        padding: 3%;
    }

    .DLSeniorLanding-hero-section {
        flex-direction: column-reverse;
        height: auto;
        min-height: 0px;
    }
}
    








/* the new container */
.MySwiperContainer {
    position: relative;
    width: 100%;
    padding: 2% 4vW;
    padding-right:0px;
}

/* fix the buttons positions */
.swiper-button-prev {
    left: 1vw;
}

.swiper-button-next {
    right: 1vw;
}

.custom-button-right {
    background-color: rgba(240, 240, 240, 1);
    border-radius: 50%;
    border: 0.5px solid black;
    width: 2.2vw;
    height: 2.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-size: 1.2rem; /* Size of Material Icon */
    color: black;
    transform: translateX(0.5vw) translateY(-25vw);
}

.material-icons-outlined {
    font-size: 1.5vw;
}

.custom-button-left {
    background-color: rgba(240, 240, 240, 1);
    border-radius: 50%;
    border: 0.5px solid black;
    width: 2.2vw;
    height: 2.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-size: 20vw; /* Size of Material Icon */
    color: black;
    transform: translateX(95.5vw) translateY(-27.5vw);
}


.custom-button.hidden-left {
    display: none !important;
}

.custom-button.hidden-right {
    display: none !important;
}

.swiper-navigation {
    display: flex;
    justify-content: space-between; /* Place the buttons on opposite ends */
    align-items: center;
    width: 100%; /* Ensure it spans the full width of the Swiper container */
    position: relative;
}

.swiper-nav-left,
.swiper-nav-right {
    display: flex;
    align-items: center;
    width: 50%; /* Split space between left and right buttons */
}

.swiper-nav-left {
    justify-content: flex-start; /* Align the left arrow to the start */
}

.swiper-nav-right {
    justify-content: flex-end; /* Align the right arrow to the end */
}


.custom-button-right {
    transform: translate(0.75vw, -25vw);
}

.custom-button-left {
    transform: translate(-0.75vw, -25vw); /* Reset any previous transforms */
}

/* Optional: Add specific styles if the button positioning needs fine-tuning */
.swiper-nav-left .custom-button-right {
    /* Additional styling if needed */
}

.swiper-nav-right .custom-button-left {
    /* Additional styling if needed */
}





.hero-container-Text {
    background: #f1f0eb;
    max-width: 1500px;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    padding-top: 1.5rem;
    padding-bottom: 0.2rem;
    max-width: 1500px;
    margin: auto;
    width: 100%
}




.NewButtonFlexContainer {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
   /* align-items: center;*/
    margin-left: 2rem;
}

.NewPinkButton {
    background-color: pink;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1rem; /* anpassa efter ditt typsnitt så texten blir som i din bild */
}

.NewGreyButton {
    background-color: rgb(224, 224, 224);
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1rem;
}





@media (max-width: 768px) {
    .gradient-overlay {
        display: none !important;
    }



    .NewButtonFlexContainer {
      
        margin-left: 0px;
    }


}




.hero-container-Text {
    background: #f1f0eb;
    max-width: 1500px;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    padding-top: 1.5rem;
    padding-bottom: 0.2rem;
    max-width: 1500px;
    margin: auto;
    width: 100%;
    margin-bottom:150px;
    
}




/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 0;
    aspect-ratio: 2.215 / 1;
}


.RamklarHomepageHeading {
    font-size: clamp(2.5rem, 6vw, 80px);
    font-size: clamp(2.5rem, 7vw, 80px);
    /*   margin-left: 2rem;*/
    margin-right: 0%;
    letter-spacing: -0.3vw;
    letter-spacing: -0.2vw;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 0px;
    font-weight: normal;
    RamklarHomepageHeading font-weight: 300;
    font-family: 'Serbenta';
    font-family: 'ABC Monument Grotesk', sans-serif;
    max-width: 1500px;
    /*font-family: 'ABCMonumentGroteskLightTrial';*/
    /*  font-family: 'ABCMonumentGrotesk-Medium-Trial';*/
}

.RamklarHomepageHeadingH1 {
    font-size: clamp(1rem, 1vw, 20px);
    margin-left: 2rem;
    margin-right: 40%;
    margin-top: 150px;
    letter-spacing: normal;
    font-size: 1.25rem;
    margin-bottom: 15px;
   
    font-family: 'ABC Monument Grotesk', sans-serif;
}

.RamklarHomepageHeadingP {
    margin-left: 2rem;
    margin-right: 40%;
    font-family: 'ABC Monument Grotesk', sans-serif;
    letter-spacing: normal;
    margin-bottom: 60px;
   
    line-height: 1.7rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.RamklarHomepageHeadingButtonContainer {
    margin-left: 2rem;
    display: flex;
    gap: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}




.video-header {
    width: 100%;
    font-weight: normal;
    box-sizing: border-box;
    padding-left: calc(max(2rem, ((100vw - 1500px) / 2)));
    padding-right: 50vw;
    padding-bottom: 10px;
    background: #f1f0eb;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: clamp(1.5rem, 1.9vw, 80px);
    line-height: clamp(1.5rem, 2.4vw, 80px);
    
}




.h3underVideo {
    text-align: left;
    margin-bottom: 0.2rem;
    margin-top: 0.75rem;
    font-size: 1.5rem;
   
}


.PunderVideo {
    text-align: left;
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 0px;
}


.image-blockRayBanSun {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0rem 0;
}

    .image-blockRayBanSun picture,
    .image-blockRayBanSun img {
        display: block;
        width: 100%;
        height: auto;
    }

.overlay-textRayBanSun {
    position: absolute;
    top: 70%;
    left: 5%;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    z-index: 1;
    max-width: 90%;
}





    .raybanSunbutton{
                background: #E0E0E0;
                color: black;
                margin: 0px;
                padding: 0.75rem 1.5rem;
                font-size: 1rem
       }
.h2RaybanSol {
    font-size: clamp(2.5rem, 3vw, 100px);
 
}

.Tom-Ford-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 2%;
    box-sizing: border-box;
}

.Tom-Ford-full-width-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Logo overlay */
.Tom-Ford-logo-overlay {
    position: absolute;
    top: 32vW; /* Adjust the top position */
    left: 9vW; /* Adjust the left position */
    width: 25vW; /* Adjust logo size as necessary */
    height: auto;
    z-index: 10; /* Ensure the logo is above the image */
}



.Tom-Ford-UnderImageText {
    color: #efefef;
    margin-top: 10px;
}









@media (max-width: 1500px) {
    .RamklarHomepageHeadingH1 {
        margin-right: 30%;
    }
}

@media (max-width: 1200px) {
    .RamklarHomepageHeadingH1 {
        margin-right: 20%;
    }
}

.italic-word { /* kursiv stil för ”rätt glasögon”                  */
    font-style: normal;
}


        @media (max-width: 768px) {
            /*   .RamklarHomepageHeading {
        margin-right: 6vw;
        margin-left: 4vw;
        font-size: clamp(1.5rem, 9vw, 80px);
        font-size: clamp(1.5rem, 11vw, 80px);
        line-height: normal;
        line-height: 11vw;
    }*/


            /*.hero-image {
        width: 100%;
        aspect-ratio: 1140 / 2157;*/ /* Samma proportioner som din bild */
            /*height: auto;
        display: block;
    }*/

            .NewButtonFlexContainer {
         
                width: 202px;
                flex-direction: column;
            }

         

            .Tom-Ford-image-wrapper {
                width: 100%;
                height: 80vw; /* Maintain 4:5 aspect ratio by setting height as 80% of viewport width */
                overflow: hidden; /* Ensures that anything outside the aspect ratio is cropped */
                padding: 5%;
            }

            .Tom-Ford-full-width-image {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
            }

            .Tom-Ford-logo-overlay {
                top: 60vW; /* Adjust the top position */
                left: 9vW; /* Adjust the left position */
                width: 40vW; /* Adjust logo size as necessary */
            }

            .raybanSunbutton {
                background: white;
                color: black;
                margin: 0px;
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
                margin-top:1rem;
            }

            .h2RaybanSol {
                color: red;
                line-height: 12vw;
              
            }

            .overlay-textRayBanSun {
             
                top: 65%;
          
              
            }






            .h3underVideo {
                font-family: "Serbenta";
                margin-bottom: 0.5rem;
            }







            .video-header {
                padding-left: 1rem;
                font-size: clamp(1.5rem, 1.7vw, 80px);
                line-height: clamp(1.5rem, 1.9vw, 80px);
                font-family: 'Serbenta';
                padding-right: 0px;
            }


            .italic-word { /* kursiv stil för ”rätt glasögon”                  */
                font-style: italic;
            }






            .hero-container-Text {
                background: #f1f0eb;
                max-width: 1500px;
                align-items: center;
                justify-content: space-between;
                padding: 1rem 1rem;
                padding-top: 1.5rem;
                padding-bottom: 3rem;
                max-width: 1500px;
                margin: auto;
                width: 100%
            }


            .RamklarHomepageHeading {
                margin-right: 0rem;
                margin-left: 0rem;
                font-size: clamp(1.5rem, 7.5vw, 80px);
                min-width: 0px;
                line-height: 10vw;
                font-family: 'Serbenta';
            }

            .RamklarHomepageHeadingP {
                margin-right: 0rem;
                margin-left: 0rem;
            }

            .RamklarHomepageHeadingButtonContainer {
                margin-left: 0rem;
                display: flex;
                gap: 20px;
            }



            .RamklarHomepageHeadingH1 {
                font-size: clamp(1rem, 1vw, 20px);
                margin-left: 0rem;
                margin-top: 50px;
                margin-right: 0px
            }


            /*    .RamklarHomepageHeadingH1 {
        font-size: clamp(1rem, 1vw, 20px);
        margin-left: 4vw;
        margin-top: 150px;
    }
*/



            .hero-container img {
                width: 100%;
            }


            .hero-container {
                aspect-ratio: unset;
            }
        }
        /* --- HUVUDSTILAR --- */
        .DLSeniorLanding-new-section {
    background-color: #d78fb8;
    display: flex;
    flex-direction: row;
    padding: 0;
    justify-content: space-between;
    height: 40vw;
    align-items: stretch;
}

.DLSeniorLanding-image-section-new {
    width: 50%;
    position: relative;
    height: 100%;
    padding: 2%;
    padding-right: 0;
}

    .DLSeniorLanding-image-section-new img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.DLSeniorLanding-text-wrapper-new {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 2%;
}

    .DLSeniorLanding-text-wrapper-new.Lindberg {
        padding: 2%;
    }

.DLSeniorLanding-new-text {
    text-align: center;
    font-size: 10vw;
    line-height: 1.5;
    color: white;
}

.DLSeniorLanding-new-button {
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: white;
    border: none;
    color: #d78fb8;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.DLSeniorLandingUnderImageText {
    font-size: 2vw;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5vw;
}

.DLSeniorLanding_Lindberg-text {
    font-size: 1vw;
    font-weight: 400;
    text-align: center;
    margin-top: 0.5vw;
    line-height: 1.2;
}

.DLSeniorLanding-Lindberg-Logo {
    display: block;
    margin: 0 auto;
    height: 5vw;
}

.DLSeniorLanding-new-section-FrameImage {
    width: 90%;
    margin-top: 3vw;
    margin-bottom: 0vw;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .DLSeniorLanding-new-section {
        flex-direction: column;
        height: auto;
    }

    .DLSeniorLanding-text-wrapper-new {
        flex-direction: column;
        height: auto;
    }

    .DLSeniorLanding-image-section-new,
    .DLSeniorLanding-text-wrapper-new {
        width: 100%;
        padding: 5%;
    }

        .DLSeniorLanding-text-wrapper-new.Lindberg {
            padding: 5%;
            padding-top: 1%;
        }

    .DLSeniorLanding-new-text {
        font-size: 4vw;
    }

    .DLSeniorLanding-new-button {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .DLSeniorLandingUnderImageText {
        font-size: 4vw;
    }

    .DLSeniorLanding_Lindberg-text {
        font-size: 2vw;
    }

    .DLSeniorLanding-Lindberg-Logo {
        height: 10vw;
    }

    .DLSeniorLanding-new-section-FrameImage {
        width: 90%;
        margin-top: 0vw;
        margin-bottom: 0vw;
    }
}