

@font-face {
    font-family: "Mermaid";
    src: url("Mermaid1001.ttf") format("ttf"),
         url("Mermaid1001.ttf") format("ttf");
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Mermaid", sans-serif;
    background-color: #CBD8E9;
  }
  
  
  .burger-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2;
  }
  
  .line {
    width: 130%;
    height: 4px;
    background-color: #F2F2F2;
    transition: transform 0.3s;
  }
  
  .burger-icon:hover .line {
    transform: scaleX(0.6);
  }
  
  .side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Set side menu width to 100% */
    max-width: 15%; /* Set maximum width of side menu to 25% */
    height: 100vh; /* Adjust side menu height to 100% viewport height */
    background-color: #D4B8F4;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 1;
    padding: 40px; /* Increase padding to create more space */
    text-transform: uppercase; /* Change text to uppercase */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack menu items vertically */
    justify-content: center;
    font-size: 21px;
  }
  
  .side-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 50px 0;
  }
  
  .side-menu ul li {
    margin-bottom: 20px;
  }
  
  .side-menu ul li a {
    display: block;
    text-decoration: none;
    color: #F2F2F2;
    padding: 10px;
    margin-bottom: 15px;
  }

  .container:hover .side-menu {
    transform: translateX(0);
  }
  
  @media (max-width: 768px) {
    .burger-icon {
      top: 10px;
      left: 10px;
    }
  
    .side-menu {
      width: 80%;
    }
}
  
  
/*HOME PAGE */

.showreel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: auto;
  margin-left: 50px;
  margin-top: 50px;
  margin-right: 0;
  object-fit: contain;
  overflow: hidden;
}

.showreel video {
  width: 100%; /* Take up the maximum width of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .showreel {
    flex-direction: column;
    align-items: center; /* Center both horizontally and vertically */
    width: 90%; /* Adjust width for mobile screens */
    margin-top: 50px; /* Adjust spacing for mobile screens */
    margin-left: 20px;
  }

  .showreel video {
    width: 100%; /* Videos take full width on smaller screens */
    height: auto; /* Maintain aspect ratio */
  }
}




  /*WORK PAGE ANIMATION */

  .container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: calc(100vh - 60px); /* Adjust the height to leave space for the burger menu */
    gap: 20px;
    padding: 20px;
    margin-top: 60px; /* Add margin to create space for the burger menu */
    margin-bottom: 700px;
  }
  
  .box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-color: #F2F2F2;
    color: #D4B8F4;
    padding: 20px;
    transition: background-color 0.3s, color 0.3s;
    aspect-ratio: 1/1; /* Create square boxes */
    text-transform: uppercase; /* Convert text to uppercase */
    font-size: 20px; /* Increase font size to desired value */
  }
  
  .box:hover {
    background-color: rgba(212, 184, 244, 0.7);
    color: #F2F2F2;
  }
  
  @media (max-width: 768px) {
    .container2 {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      padding: 10px;
      margin-top: 0; /* Remove margin for the burger menu on smaller screens */
      height: auto; /* Allow the content to determine the height */
      margin-bottom: 50px;
    }
  
    .box {
      font-size: 16px; /* Adjust font size for smaller screens */
    }
  }


  .animation {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin-top: 60px; /* Add margin to create space for the header */
  }
  
  .square-gif {
    width: 100%; /* Set width for square GIFs */
    max-width: calc(50% - 10px); /* Set maximum width for square GIFs */
  }
  
  .square-gif img {
    width: 100%;
    height: auto;
  }
  

  @media (min-width: 768px) {
    .animation {
      justify-content: center;
    }

    .square-gif {
      max-width: calc(50% - 10px); /* Adjust maximum width for square GIFs */
    }
  }


  /*WORK PAGE AR */


  .AR-content {
    padding-top: 50px; /* Add space between the header and the content */
  }
  
  .video-AR {
    position: relative;
    width: 100%;
    max-width: 600px; /* Set the desired maximum width of the video container */
    margin: 0 auto; /* Center the video container horizontally */
    margin-top: 20px; /* Add space between the video and the text block */
  }
  
  .video {
    width: 100%;
  }
  
  .text-block {
    background-color: #D4B8F4;
    width: 97%;
    padding: 10px;
    margin-top: 10px; /* Add space between the video and the text block */
  }
  
  .text-block p {
    font-family: "Avenir Next", Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    margin: 10px;
    text-align: justify;
  }

  @media (max-width: 768px) {
  
    .video-container {
      margin-top: 30px; /* Adjust the space between the video and the text block for mobile */
    }
  }




  /*WORK PAGE  BRANDING*/


.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px; /* Size of the page */
  margin-top: 50px; /* Margin at the top */
  background-color: #D4B8F4; /* Purple background */
  color: #FFFFFF; /* White text color */
  text-align: center;
}

.branding-heading {
  font-family: "Mermaid", Arial, sans-serif; /* Use Mermaid font for the heading */
  font-size: 40px;
  margin: 10px 0;
}

.branding-text {
  font-family: "Avenir Next", Arial, sans-serif; /* Use Avenir Next font for the body text */
  font-size: 18px;
  margin: 0 20px;
  width: 50%;
  line-height: 1;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px; /* Size of the page */
  overflow: hidden;
  margin: 0;

}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
margin: 0;

}

.image-container1{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px; /* Size of the page */
  overflow: hidden;
}

.image-container1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (max-width: 768px) {

    .branding {
      height: auto; /* Adjust height automatically */
    }
  
    .branding-text {
      width: 90%; /* Adjust width for mobile screens */
      margin: 10px; /* Adjust margin for mobile screens */
    }
  }





  .content-wrapper {
    display: flex;
    justify-content: center;
  }

  .content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1920px; /* Maximum width of the container */
    width: 70%;
    margin-top: 50px;
  }
  
  .content img {
    width: calc(50% - 20px); /* Set the width of each image with spacing */
    height: auto; /* Maintain aspect ratio */
    margin: 10px; /* Add spacing between the images */
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: center;
    }
  
    .content img {
      width: 80%; /* Images take full width on smaller screens */
      margin: 10px 0; /* Add spacing between the images */
    }
  }




  /*ABOUT ME*/

  .about-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
background-color: #D4B8F4;
padding: 50px;
  }
  
  .image img {
    margin-left: 50px;
    margin-right: 10px;
    width: 400px; /* Adjust the width of the image */
    max-width: 100%;
    border-radius: 40%; /* Add border-radius to create a rounded square */
  }
  
  .text {
    width: 40%; /* Adjust the width of the text block */
    color: #F2F2F2; /* Set the text color to black */
    padding-right: 20px;
  }
  
  .text h2 {
    font-size: 18px;
    font-family: "Mermaid", sans-serif;
  }
  
  .text h3 {
    font-size: 35px;
    font-family: "Mermaid", sans-serif;
  
  }
  
  .text p {
    font-size: 21px;
    line-height: 1;
    font-family: "Avenir Next", Arial, sans-serif;
  }


  @media (max-width: 768px) {
    .about-me {
      flex-direction: column;
    }
  
    .image img {
      width: 90%;
      margin-left: 0;
    }
  
    .text {
      margin-top: 10px;
      width: 80%;
    }








  }
  .heading {
    text-align: center;
    margin-top: 80px; /* Add margin at the top of the heading */
    font-size: 40px;
    color: #F2F2F2;
    width: 60%;
  }

  .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 20px; /* Add spacing between the edge and the form */
    box-sizing: border-box; /* Ensure padding does not affect the width */
    margin-top: 50px;

  }
  
  form {
    background-color: #F2F2F2;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px; /* Limit the width of the form */
    width: 100%; /* Fill the available width */
    margin-bottom: 40px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #D4B8F4;
    resize: none; /* Disable textarea resizing */
  }

  textarea {
    font-family: "Mermaid", sans-serif; /* Set the font to Mermaid */
  }
  
  
  input[type="submit"] {
    background-color: #D4B8F4;
    color: #FFF;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: "Mermaid", sans-serif; /* Set the font to Mermaid */
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px; /* Limit the width of the social icons */
    width: 100%; /* Fill the available width */
    margin-top: 20px; /* Add spacing between the form and social icons */
  }
  
  .social-icons img {
    width: 60px; /* Increase the size of the icons */
    height: 60px;
    margin: 0 15px; /* Increase spacing between the icons */
  }

  .social-icons .behance-icon {
    width: 70px; /* Increase the width of the Behance icon */
    height: 70px;
  }
  
  @media (max-width: 480px) {
    .form {
      padding: 20px;
    }

  .heading{
width: 90%;

  }

  }

  
  
  
  