 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;

 }

 :root {
     --primary-color: #C00F0C;


     --primary-color-dark: #9A0C0A;
 }



 body {
     font-family: 'peyda', sans-serif;

     line-height: 1.6;
     background-color: #060913;
     color: #ffffff;



 }

 html {
     scroll-behavior: smooth;
 }

 .container {

     max-width: 1200px;

     margin: 0 auto;

     padding: 0 20px;
 }

 .header-content {
     display: flex;
     justify-content: space-between;

     align-items: center;

     padding: 20px;
 }

 .visually-hidden-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

 .cta-button {

     display: inline-block;
     padding: 8px 15px;

     margin-right: 0px;


     background-color: var(--primary-color);
     color: white !important;


     border-radius: 5px;
     font-weight: bold;
     text-decoration: none;
     transition: background-color 0.3s;
     border: none;

 }


 .cta-button:hover {

     background-color: var(--primary-color-dark);
 }

 header nav ul {

     list-style: none;

     display: flex;

     align-items: center;
     margin: 0;
     padding: 0;
 }


 header nav li {
     margin-left: 30px;

 }



 header nav ul li a:not(.cta-button) {
     color: #ffffff;
     text-decoration: none;
     font-size: 1em;
     padding: 5px 0;

     transition: color 0.3s ease;
 }


 header nav ul li a:not(.cta-button):hover {
     color: #ff3b30;

 }

 .hamburger-menu {
     display: none;
 }


 @media (max-width: 768px) {

     #main-navigation {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         background-color: #060913;
         z-index: 150;


         transform: translateX(-100%);
         transition: transform 0.4s ease-in-out;

         display: flex;
         align-items: center;
         justify-content: center;
     }


     #main-navigation.active {
         transform: translateX(0);

     }


     #main-navigation ul {
         flex-direction: column;
         gap: 30px;

         list-style: none;
         padding-left: 0px;
         margin: 0px;

         display: flex;
         align-items: center;
     }

     #main-navigation ul li {
         align-items: center;
     }


     header nav li {
         margin-left: 0px;
     }

     .hamburger-menu {
         display: flex;

         flex-direction: column;
         justify-content: space-around;

         width: 30px;
         height: 25px;
         background: transparent;
         border: none;
         cursor: pointer;
         padding: 0;
         z-index: 200;
     }

     .hamburger-menu .bar {
         display: block;

         width: 100%;
         height: 3px;

         background-color: #ffffff;

         border-radius: 3px;
         transition: all 0.3s ease-in-out;
     }


     .gallery .work-item {
         grid-column: span 12 !important;

     }

     .logos-grid {
         grid-template-columns: repeat(3, 1fr) !important;
     }

     .main-content-grid {
         grid-template-columns: 1fr !important;
         gap: 40px;
     }

     .footer-content {
         flex-direction: column;

         gap: 20px;
         padding: 20px 20px;
     }

     .social-icons {
         order: 1;

         flex-direction: column;

         justify-content: center;
         align-items: center;

         width: 100%;
         gap: 15px;

     }


     .icon-row-1,
     .icon-row-2 {
         justify-content: center;
         width: 100%;
     }


     .icon-row-1 a,
     .icon-row-2 a {
         margin: 0 10px;

     }


     .icon-row-1 a:first-child,
     .icon-row-2 a:first-child {
         margin-left: 10px;

     }

     .icon-row-1 a:last-child,
     .icon-row-2 a:last-child {
         margin-right: 10px;

     }


     .footer-info {
         order: 2;
         text-align: center;

     }



 }


 .gallery {
     display: grid;

     grid-template-columns: repeat(12, 1fr);
     gap: 20px;

 }


 .gallery img,
 .gallery video {
     width: 100%;

     height: auto;
     display: block;
     object-fit: cover;

     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }



 .gallery .full-row {
     grid-column: span 12;
 }



 .gallery .two-third-right {

     grid-column: 1 / span 8;
 }



 .gallery .one-third-left {

     grid-column: 9 / span 4;
 }



 .logo img {

     height: 40px;

     width: auto;
     display: block;
 }



 #trusted-by {
     padding-top: 60px;
     padding-bottom: 60px;
 }

 #trusted-by h2 {
     text-align: left;
     color: #ffffff;
 }

 .logos-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     align-items: center;
 }

 .logos-grid img {
     width: 100%;
     max-height: 100px;
     transition: filter 0.3s ease;
 }

 .logos-grid img:hover {
     filter: drop-shadow(0 0 25px #ffffff);
 }


 .contact-form {
     display: grid;
     grid-template-columns: 1fr;

     gap: 15px;

 }

 .contact-form input[type="text"],
 .contact-form input[type="email"],
 .contact-form textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #31343b;
     background-color: #1D2028;

     color: #ffffff;
     font-family: inherit;

     border-radius: 4px;
     transition: border-color 0.3s;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     outline: none;
     border-color: var(--primary-color);

 }

 .main-content-grid {
     display: grid;

     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
 }

 footer {
     background-color: #060913;
     color: #ffffff;

     border-top: 1px solid #333;
     margin-top: 60px;
 }

 .footer-content {

     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 30px 20px;
 }




 .footer-info {
     line-height: 1.4;
 }

 .studio-name {
     font-size: 18pt;
     margin-bottom: -5px;
 }

 .copyright-text {
     font-size: 0.8em;
     opacity: 0.5;
 }


 .social-icons {

     display: flex;
 }


 .icon-row-1,
 .icon-row-2 {
     display: flex;

     flex-shrink: 0;
 }

 .icon-row-1 a,
 .icon-row-2 a {
     margin: 0 5px;
 }



 .icon-row-1 a:first-child,
 .icon-row-2 a:first-child {
     margin-left: 0px;
 }

 .social-icons img {
     height: 40px;

     width: auto;


     transition: transform 0.2s;

     filter: brightness(0) invert(1);
 }

 .social-icons img:hover {

     transform: scale(1.3);
 }


 .about-text {
     text-align: justify;
     margin-top: 10px;
 }


 .background-glow-effect {
     position: fixed;

     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;

     background-color: #060913;



     background-image:

         radial-gradient(circle at 20% 70%, rgba(41, 56, 114, 0.35) 0%, transparent 50%);


     filter: blur(100px);


     transform: translateZ(0);
 }