


html{
    background-color: #dbdbdb;
    background-image: url(Images/Mesh.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Readex Pro", serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 20px 20px 20px 20px;
}

body {
    margin: 0;
    padding: 0;
}

main {
    margin: 20px 20px 20px 20px;
}


.nav-links{
    display: none;

    @media screen and (min-width:850px) {
        Display: grid;
    }
}

.hamburger {
    background-color: none;
    border: none;
    font-size: 2rem;
    color: black;
    padding: 0 .3rem 0 .3rem;

    @media screen and (min-width:850px) {
        Display: none;
    }
}


.logo {
    width: 40px;
}

.logo2 {
    display: none;
}

.landing{
    display: grid;
    justify-items: center;
}

.imageProfile {
    margin-top: 3rem;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    object-fit: cover;
}


.landing h1 {
    font-size: 3rem;
    font-weight: 200;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 5rem;
}

.landing h1 em {
    font-size: 6rem;
    font-weight: 900;
    font-style: normal;
}

.landing p {
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 2rem;
    margin-right: 30%;
}

.landing #downloadButton {
    width: 100%;
    font-family: "Readex Pro", serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 5px 50px;
    border: solid 2px black;
    background-color: white;
    text-decoration: none;
    color: black;
    text-align: center;
    margin-bottom: 1rem;
}

.socialAccount {
    width: 100%;
    font-family: "Readex Pro", serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 5px 50px;
    border: solid 2px black;
    background-color: white;
    text-decoration: none;
    color: black;
    text-align: center;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
}


.social-icons {
    display: none;
}

/* Carousel container */

.carousel {
    margin-top: 8rem;
}

.carousel h2 {
    font-size: 2rem;
}

.content-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;

  }
  
  /* Slider container */
  .slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Assuming 3 slides */
  }
  
  /* Individual slides */
  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  /* Navigation buttons */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
  }
  
  .arrow-left {
    left: 1rem;
  }
  
  .arrow-right {
    right: 1rem;
  }
  
  .arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Card styles */
  .card {
    width: 100%;
    height: 600px;
    background: rgb(255,255,255,0.5);
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}
  
.card img {
    width: 300px;
}

.image2 {
    display: none;
}

.card:hover {
    .image2 {
        display: block;
    }

    .image1 {
        display: none;
    }
}

.card h2 {
    font-size: 2rem;
    font-weight: 900;
}

  .card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;

}

.cardInfo {
    display: grid;
}
  
  button#moreButton {
    width: 100%;
    font-family: "Readex Pro", serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 5px 50px;
    margin-top: .5rem;
    border: solid 2px black;
    background-color: white;
    cursor: pointer;
    color: black;
}

#moreButton:hover {
    border: 2px solid black;
    background-color: #e7ed73;
    box-shadow: 5px 5px;
    text-align: center;
}

#moreButton:focus {
    background-color: #eaeda5;
    box-shadow: none;
}

 

.contactMe{
    display: grid;
    margin-top: 15rem;
    margin-bottom: 5rem;
    background-color: rgb(255,255,255, 0.5);
    padding: 2rem;
    max-width: 500px;
    margin-right:auto;
    margin-left: auto;
}

.contactMe h2 {
    font-family: "Readex Pro", serif;
    font-size: 1.5rem;
    color: black;
}


form {
    font-family: "Readex Pro", serif;
    margin-top: 2rem;
    font-weight: 900;
    font-style: normal;
    box-sizing: border-box;
}

#email, #name, #message {
    font-family: "Readex Pro", serif;
    font-size: .8rem;
    margin-top: .5rem;
    margin-bottom: 0;
}


input {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 3px;
}

textarea {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 3px;
}

.submit {
    width: 100%;
    font-family: "Readex Pro", serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 5px 50px;
    border: solid 2px black;
    background-color: white;
    cursor: pointer;
    color: black;
}


footer {
    margin-top: 10rem;
    background-color: black;
    height: 50px; 
    padding: 1rem;
    margin: 0;
}

footer p {
    color: white;
    text-align: center;
    font-weight: 200;
}



/*  RESPONSIVENESS */



@media screen and (min-width:850px) {


header {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
}

.logo {
   display: none;
}

.logo2 {
    display: block;
}

    
nav {
    font-family: "Readex Pro", serif;
    font-weight:220;
    font-size: 1rem;
    grid-column: 3;
}

nav ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center; 
}

nav ul li {
    list-style-type: none;  
    text-align: center;
    width: 100%;
}

nav ul li a{
    text-decoration: none; 
    color: black;
}

.landing .imageProfile  {

    @media screen and (min-width:850px) {
        box-shadow: 20px -15px 0 1px rgb(234, 242,10, 28%), -20px 15px 0 1px #dbdbdb, -20px 15px 0 2px rgb(0,0,0); 
        }
}

.landing .imageProfile.scrolled {
    box-shadow: 20px -15px 0 4px #dbdbdb, 20px -15px 0 5px rgb(0, 0, 0), -20px 15px 0 5px rgba(234, 242, 10, 0.28);
}

.landing {
    font-family: "Readex Pro", serif;
    margin-top:100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center; 
    gap: 50px;
    width: 100%;
    height: 100%;
}

.carousel h2 {
    text-align: center;

}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    font-size: 24px; /* Adjust the size as needed */
    margin: 20px 0; /* Adjust spacing */
}

.header-line::before,
.header-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background: black; /* Solid line */
    margin: 0 10px; /* Spacing around the text */
}

.header-line {
    white-space: nowrap;
}


}




@media screen and (min-width:1000px) {


    
    .logo {
        width: 350px;
    }



    .nav-links a {
        background-color: #ffffff;
        border: 2px solid black;
        padding: .2rem 1.2rem .2rem 1.2rem;
    }


    .nav-links a:hover {
        background-color: #e7ed73;
        box-shadow: 5px 5px;
    }
    
    .landing {
    
        font-family: "Readex Pro", serif;
        margin-top:100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center; 
        gap: 50px;
        width: 100%;
        height: 100%;
    }
    
    .landing h1 {
        font-size: clamp(5rem, 1vw, 10rem);
    }
    
    .landing h1 em {
        font-style: normal;
        font-size: clamp(6rem, 10vw, 20rem);

    }
    
    .landing p {
        font-weight:200;
        font-size: clamp(.5rem, 10vw, 1.2rem);
    
    }
    
   .socialAccount {
        cursor: pointer;
    }

    #downloadButton {
        cursor: pointer;
    }

    
    #downloadButton:hover {
        border: 2px solid black;
        background-color: #e7ed73;
        box-shadow: 5px 5px;
        text-align: center;
    }

    .socialAccount:hover{
        border: 2px solid black;
        background-color: #e7ed73;
        box-shadow: 5px 5px;
        text-align: center;
    }
    

    .submit:hover {
        border: 2px solid black;
        background-color: #e7ed73;
        box-shadow: 5px 5px;
        text-align: center;
    }

    .submit:focus {
        background-color: #eaeda5;
        box-shadow: none;
    }


    .landing .imageProfile{
        max-width: 50vw;
        max-height: 50vw;
        width: 400px;
        height: 400px;
    }


    .content-slider {
        position: relative;
        width: 100%;
        max-width: 1065px;
        margin: auto;
        overflow: hidden;
        margin-top: 5rem;
    
      }
      
      /* Slider container */
      .slider-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 45%; /* Assuming 3 slides */
        gap: 1rem;
      }
      
      /* Individual slides */
      .slide {
        min-width: 100%;
        box-sizing: border-box;
      }
      
      /* Navigation buttons */
      .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 15px;
        cursor: pointer;
        z-index: 10;
        border-radius: 100%;
        font-size: 1rem;
      }
      
      .arrow-left {
        left: 1.5rem;
      }
      
      .arrow-right {
        right: 1.5rem;
      }
      
      .arrow:hover {
        border: 2px solid black;
        background-color: #e7ed73;
        box-shadow: 2px 2px;
        color: black;
      }
      
      /* Card styles */
      .card {
        width: 100%;
        background: rgb(255,255,255,0.5);
        padding-left: 4rem;
        padding-right: 4rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
      
    .card img {
        width: 300px;
    }
    
      .card h2 {
        font-size: 2rem;
        font-weight: 900;
    }
    
      .card p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.3rem;
    
    }

}



@media screen and (min-width:1200px) {

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links a:focus {
        background-color: #eaeda5;
        box-shadow: none;
    }

    .logo2 {
        width: 400px;
    }

    header {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
    }

    .content-slider {
        max-width: 1300px;
      }

    .slider-container {
        width: 35%; /* Assuming 3 slides */
        gap: 1rem;
      }


    .landing #downloadButton {
            width: 50%;
            font-size: 1.2rem;
            margin-bottom: 0;
    }


    #downloadButton:focus {
        background-color: #eaeda5;
        box-shadow: none;
    }
        
    .socialAccount {
            width: 50%;
            height: auto;
            margin-top: 0;
            font-size: 1.2rem;
            
    }

    .socialAccount:focus {
        background-color: #eaeda5;
        box-shadow: none;
    }

    .buttonsWrap {
        display: flex;
        flex-direction: row;
        gap: .5rem;
    }

    .landing h1{
        line-height: 7rem;
    }

    .landing {
        margin-bottom: 10rem;
    }



}

