* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    width: 100%;
    background-color: #f9f6e8 ;
    overflow-x: hidden;
    
}
section{
    height: 100vh;  
     width: 100vw;
}
.nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    font-family: Arial ;
    width: 100vw;
    flex-wrap: wrap;
}
.logo img {
     padding-top: 10px;
    
}
.nav-items a{
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 20px;
    margin:10px;
    font-style: italic;
    font-weight: 500 ;
    right:30px;
    padding: 10px 10px;
    border-radius: 0.7em;
    transition: color 0.6s ease-in;
}
 a:hover{
    background-color:#EFE7C6;
}  
.contact{
    background-color:#EFE7C6
} 
.contact:hover{
    background-color:#efe4b7
}

.intro{
    width: 1200px;
    margin-left: 310px;
}

.my-name{
    font-size: 90px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 30px;
    margin-top: 140px;
    text-shadow: 6px 4px 4px rgba(0, 0, 0, 0.3);
    width: 880px;
    border-right: 5px solid black;
    white-space: nowrap;
    padding-right: 5px;
    overflow: hidden;
    animation: 
        typing 2s steps(22) ,
        cursor .4s step-end infinite alternate;
    ;
}

@keyframes cursor {
    50%{ border-color: transparent;}
}


@keyframes typing{
    from{width: 0;}
}
.about-stuff{
    font-size: 25px;
    margin-left: 20px;
    width: 850px;
    text-align: center;
    font-family: Arial;
    font-weight: 200;
}
.intro-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    cursor: pointer;
}
.intro-icons img{
    width: 60px;
}
.intro-text{
    font-family: Arial;
    font-size: 20px;
    border-radius: 2em;
    padding: 15px 40px;
    background-color: #EFE7C6;
}

.thumbanail-title{
     font-weight: bold;
    font-style: italic;
    font-size: 60px;
    text-align: center;
    margin-top: 100px;
}
.thumbnail-img {
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, 1fr);    /* 2 rows */
    gap: 20px;
    padding: 0 20px;
    max-width: 1300px; /* Prevents grid from getting too wide */
}

.thumbnail-img img {
    max-width: 100%; /* Prevents overflow */
    width: 600px; /* Base width */
    height: auto; /* Maintains aspect ratio */
    border-radius: 1em;
    /* Remove margin-left - using gap instead */
}

.description{
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
}
.descrip-text{
   font-size: 20px;
   text-align: center;
   font-family: Arial;
   margin-bottom: 80px;
   width:600px;;

}

#sample-videos{
    margin-top: 700px;
}
.sample-title{
    font-weight: bold;
    font-style: italic;
    font-size: 60px;
    text-align: center;
    margin-bottom: 50px;
}
.warning{
    display: flex;
    justify-content:center;
    align-items: center;
    gap:10px;
    font-family: Arial;
    font-size: 20px;
    margin-bottom: 70px;
}
.warning img{
    width:70px;
}
.video-title{
    font-size: 40px;
    font-weight: bold;
    font-style: oblique;
    margin-bottom: 40px;
    text-align: center;
    
}
.stock-videos{
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
     align-items: center;
    flex-wrap: wrap;

}
.sample-card{
    display: flex;
    flex-direction: column;
    align-items: center;
   justify-content: space-evenly;
}
.video{
    width:640px;
    height:360px;
    border-radius: 0.9em;
}
.video-text{
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 50px;
    font-size: 20px;
    font-weight: 400;
    width: 600px;
    
}
#faqs{
   width: 900px;
   margin: 300px auto;
   
}
.question-title{
    margin-top: 100px;
    font-weight: bold;
    font-style: italic;
    font-size: 60px;
    text-align: center;
    margin-bottom: 90px;
}
.faq-list{
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
}
.question-cards{
    border-bottom: 2px solid black;
    padding: 20px 40px;
}
.questions-list{
    font-size: 22px;
    font-weight: 530;
    font-style: oblique;
    cursor: pointer;
    margin-bottom: 20px;
}
.answer{
   display:none;
    transition: max-height ease-in;
    max-height: 0px;
    font-size: 18px;
 
}
.answer.show{
    display: block;
    max-height: 500px;
}
.arrow{
    font-size: 20px;
   cursor: pointer;
    position: absolute;
    left: 78%;
    display: inline-block;
  transition: transform 0.3s ease;
}
.arrow.rotate {
  transform: rotate(180deg); 
}
.submit-title{
    font-weight: bold;
    font-style: italic;
font-size: 70px;
   margin-bottom: 60px;
   background-color: #EFE7C6;
   border-radius: 0.6em;
   margin-top: 30px;
   width: 600px;
}
#lets-get-in-touch{
    margin: 200px auto;
   width: 900px;
   height: 500px;
   
}

/* Responsive Media Queries */

/* Small laptop (max-width: 1024px) */
@media (max-width: 1024px) {

    .logo img {
      padding-top: 10px;
      width: 250px;
    
     }
     .nav-items a{
        right: -15px;
        font-size: 16px;
        padding: 10px 10px;

    }
     .my-name{
      margin-top: 150px;
      font-size: 70px;
       width: 690px;
       position: relative;
       left:-120px;
    }
    .about-stuff{
        position: relative;
       right: 150px;
       width: 690px;
    }

    .intro-icons{
       position: relative;
       left:30px;
  

    }
      .intro-icons img{
    width: 60px;
   
    }
     .thumbanail-title{
        margin-top: 250px;
       left:30px;

    }
     .thumbnail-img {
        margin: 40px auto;
        gap: 15px;
        padding: 0 15px;
        grid-template-columns: repeat(2, 1fr); 
    }
    .video-essay{
        position: relative;
        top: 40px;
    }
    
    .thumbnail-img img {
        width: 450px;
        max-width: none; 
    }
    .description{
        margin-top: 30px;
    }

    .descrip-text{
        width: 450px;   
        position: relative;
        left: 20px;
    }

    #sample-videos{
        position: relative;
        top:100px;
    }
    .video-title{
        font-size: 45px;
    }
    .video-text{
        margin-bottom: 40px;
    }
    #questions{
        position: relative;
        top:900px;
        left:80px;
    }
    .answer{
        font-size: 20px;
    }
    #lets-get-in-touch{
         position: relative;
        top:1050px;
         left:80px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .logo img {
        width: 290px;
    }
    
    .nav-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-items a {
        font-size: 16px;
        margin: 5px;
        right: 0;
    }
    
    .my-name{
      margin-top: 120px;
      font-size: 50px;
       width: 500px;
       position: relative;
       left:-190px;
    }
    .about-stuff{
        position: relative;
       left:-300px;
       width: 690px;
       font-size: 20px;
    }

    .intro-icons{
       position: relative;
       left:-30px;


    }
    .intro-icons img{
        left:-190px
   
    }
    .intro-icons img {
        width: 40px;
    }
    
    .intro-text {
        font-size: 15px;
        padding: 6px 30px;
    }
    
    .thumbanail-title, .sample-title {
        font-size: 40px;
        margin-top: 50px;
    
    }
    .thumbanail-title{
        margin-bottom: 90px;
    }
    #Thumbnail-designs{
        margin-top: 150px;
    }
    .thumbnail-img {
        flex-direction: column;
        gap: 40px;
    }
    
    .thumbnail-img img {
        width: 300px;
        margin-left: 0;
    }
    
    .descrip-text {
        width: 300px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 30px;
    }
    
    #sample-videos {
        margin-top: 290px;
    }
    
    
    .warning {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        font-size: 17px;
    }
    
    .warning img {
        width: 50px;
    }
    
    .stock-videos {
        flex-direction: column;
        margin-left: 0;
        gap: 60px;
    }
    
    .video-title {
        font-size: 35px;
    }
    
    video {
        width: 360px;
        height: 200px;
    }
    
    .video-text {
        width: 350px;
        font-size: 18px;
    }
    
    #faqs {
        width: 90%;
        margin: 0px auto;
    }
    .question-title{
        margin-top: -50px;
    }
    .questions-list {
        font-size: 22px;
        position: relative;
        
    }
    .answer{
        font-size: 17px;
    }
    #lets-get-in-touch {
        width: 90%;
        margin: 400px auto;
    }
    
    .submit-title {
        font-size: 45px;
        width: 100%;
        text-align: center;
    }
}

/* Mobile (max-width: 425px) */
@media (max-width: 435px) {
    .nav-bar {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo img {
        width: 600px;
        position: relative;
        left:50px;
    }
    
    .nav-items {
        display: none;
    }
    
    .my-name{
      margin-top: 60px;
      font-size: 50px;
       width: 500px;
       position: relative;
       left:-190px;
    }
    .about-stuff{
        position: relative;
       left:-300px;
       width: 690px;
       font-size: 20px;
    }

    .intro-icons{
       position: relative;
    left: 150px;

    }
    .intro-icons img {
        width: 40px;
    }
    .intro-text {
        font-size: 20px;
        padding: 6px 30px;
         white-space: nowrap;
    }
    .arrow{
        position: absolute;
         left: 90%;
    }
    
    .thumbanail-title, .sample-title {
        font-size: 40px;
        margin-top: 50px;
        
    }
    .thumbanail-title{
        margin-bottom: 90px;
        position: relative;
        left: 140px;
    }
    #Thumbnail-designs{
        margin-top: 150px;
    }
    .thumbnail-img {
        flex-direction: column;
        gap: 40px;
    }
    
    .thumbnail-img img {
        width: 300px;
        margin-left: 0;
    }
    
    .descrip-text {
        width: 300px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 30px;
    }
    
    #sample-videos {
        margin-top: 290px;
        position: relative;
        left: 130px;
    }
    .sample-title{
        margin-bottom: 20px;
    }
    
    .warning {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        font-size: 16px;
    }
    
    .warning img {
        width: 45px;
    }
    
    .stock-videos {
        flex-direction: column;
        margin-left: 0;
        gap: 60px;
    }
    
    .video-title {
        font-size: 35px;
    }
    
    video {
        width: 360px;
        height: 200px;
    }
    
    .video-text {
        width: 350px;
        font-size: 15px;
    }
    
    #faqs {
        width: 100%;
        margin: 0px auto;
    }
    .question-title{
        margin-top: -70px;
        position: relative;
        left: 50px;
    
    }
    
    .questions-list {
        font-size: 22px;
    }
    .answer{
        font-size: 17px;
    }
    #lets-get-in-touch {
        width: 90%;
        margin: 300px auto;
    }
    
    .submit-title {
        font-size: 45px;
        width: 100%;
        text-align: center;
    }
}

/* Small mobile (max-width: 320px) */
@media (max-width: 320px) {
    .nav-bar {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo img {
        width: 600px;
        position: relative;
        left:50px;
    }
    
    .nav-items {
        display: none;
    }
    
    .my-name{
      margin-top: 60px;
      font-size: 50px;
       width: 500px;
       position: relative;
       left:-190px;
    }
    .about-stuff{
        position: relative;
       left:-300px;
       width: 690px;
       font-size: 20px;
    }

    .intro-icons{
       position: relative;
    left: 150px;

    }
    .intro-icons img {
        width: 40px;
    }
    .intro-text {
        font-size: 20px;
        padding: 6px 30px;
         white-space: nowrap;
    }
    .arrow{
        position: absolute;
         left: 90%;
    }
    
    .thumbanail-title, .sample-title {
        font-size: 40px;
        margin-top: 50px;
        
    }
    .thumbanail-title{
        margin-bottom: 90px;
        position: relative;
        left: 140px;
        font-size: 35px;
    }
    #Thumbnail-designs{
        margin-top: 150px;
    }
    .thumbnail-img {
        flex-direction: column;
        gap: 40px;
    }
    
    .thumbnail-img img {
        width: 300px;
        margin-left: 0;
    }
    
    .descrip-text {
        width: 300px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 30px;
    }
    
    #sample-videos {
        margin-top: 290px;
        position: relative;
        left: 130px;
    }
    .sample-title{
        margin-bottom: 20px;
        font-size: 35px;
    }
    
    .warning {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        font-size: 16px;
    }
    
    .warning img {
        width: 45px;
    }
    
    .stock-videos {
        flex-direction: column;
        margin-left: 0;
        gap: 60px;
    }
    
    .video-title {
        font-size: 35px;
    }
    
    video {
        width: 360px;
        height: 200px;
    }
    
    .video-text {
        width: 350px;
        font-size: 15px;
    }
    
    #faqs {
        width: 100%;
        margin: 0px auto;
        .nav-bar {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo img {
        width: 600px;
        position: relative;
        left:50px;
    }
    
    .nav-items {
        display: none;
    }
    
    .my-name{
      margin-top: 60px;
      font-size: 50px;
       width: 500px;
       position: relative;
       left:-190px;
    }
    .about-stuff{
        position: relative;
       left:-300px;
       width: 690px;
       font-size: 20px;
    }

    .intro-icons{
       position: relative;
    left: 150px;

    }
    .intro-icons img {
        width: 40px;
    }
    .intro-text {
        font-size: 20px;
        padding: 6px 30px;
         white-space: nowrap;
    }
    .arrow{
        position: absolute;
         left: 90%;
    }
    
    .thumbanail-title, .sample-title {
        font-size: 30px;
        margin-top: 50px;
        
    }
    .thumbanail-title{
        margin-bottom: 90px;
        position: relative;
        left: 140px;
    }
    #Thumbnail-designs{
        margin-top: 150px;
    }
    .thumbnail-img {
        flex-direction: column;
        gap: 40px;
    }
    
    .thumbnail-img img {
        width: 300px;
        margin-left: 0;
    }
    
    .descrip-text {
        width: 300px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 30px;
    }
    
    #sample-videos {
        margin-top: 290px;
        position: relative;
        left: 130px;
    }
    .sample-title{
        margin-bottom: 20px;
    }
    
    .warning {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        font-size: 16px;
    }
    
    .warning img {
        width: 45px;
    }
    
    .stock-videos {
        flex-direction: column;
        margin-left: 0;
        gap: 60px;
    }
    
    .video-title {
        font-size: 35px;
    }
    
    video {
        width: 360px;
        height: 200px;
    }
    
    .video-text {
        width: 350px;
        font-size: 15px;
    }
    
    #faqs {
        width: 100%;
        margin: 0px auto;
    }
    .question-title{
        margin-top: -70px;
    
    }
    .faq-list{
        position: relative;
        left:50px;
    }
    .questions-list {
        font-size: 22px;
    }
    .answer{
        font-size: 17px;
    }
    #lets-get-in-touch {
        width: 90%;
        margin: 300px auto;
    }
    
    .submit-title {
        font-size: 30px;
        width: 100%;
        text-align: center;
    }
    }
    .question-title{
        margin-top: -70px;
        position: relative;
        left: 50px;
    
    }
    
    .questions-list {
        font-size: 22px;
    
    }
    .answer{
        font-size: 17px;
    }
    #lets-get-in-touch {
        width: 100%;
        margin: 300px auto;
        position: relative;
        left:120px;
    }
    
    .submit-title {
        font-size: 45px;
        width: 100%;
        text-align: center;
    }
    .submit-title{
        font-size: 30px;
    }
}