 *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Luckiest Guy", cursive;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html{
    font-size: 90%;
    overflow-x: hidden;
}
body{
    overflow-x: hidden;
}
header{
    background: rgb(190, 156, 5);
    background: rgb(190, 156, 5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top of other content */
    padding: 0 20px; /* Optional: adjust padding if needed */
}

section{
    min-height: 95vh;
    margin: 0;
    padding: 0;
}

.container{
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.logo img{
    display: block;
    object-fit: cover;
    width: 90px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar nav{
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}

.navbar nav li{
    list-style: none;
    margin-left: 1.5rem;
}

.navbar nav li a{
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    padding: 0.7rem 0.6rem;
    border-radius: 6px;
    transition: all 0.4rem ease in;
}

.navbar nav li a:hover{
    color: rgb(140, 86, 0);
}

section video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90vh;
    width: 60%;
}

.content h2{
    color: white;
    font-size: 8rem;
}

.content h3{
    line-height: 1.5;
    color: chocolate;
    font-size: 3.5rem;
}

.content p{
    color: white;
    margin-top: 0.7rem;
    text-align: justify;
}

.word1{
    color: chocolate;
    font-size: 2rem;
}

span{
    color: white;
    font-size: 2.5rem;
}

.word{
    font-size: 2rem;
    color: chocolate;
}

.content button{
    display:block;
    margin: 2rem 0;
    width: 21%;
    padding: 0.7rem 0;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: inherit;
    color: #ddd;
    transition: all 0.1s ease in out;
}

.content button:hover, .content i:hover{
    background: chocolate;
}

.content .social-media{
    display: flex;
    justify-content: space-between;
    width: 30%;
    font-size: 1.9rem;
    cursor: pointer;
    margin-top: 1.2rem;
}

.content .social-media i{
    padding: 0.4rem;
    color: white;
    border: 1px solid #ddd;
    transition: all 0.5s ease in out;
}

#btn{
    font-size: 1.2rem;
    color: white;
    align-items: center;
    cursor: pointer;
    display: none;
}

/* About Section */
#about {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
    margin: 0;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: chocolate;
}

#about p {
    font-size: 1.2em;
    line-height: 1.6em;
    color: #666;
    margin-bottom: 20px;
}

#about img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Clips Section */
#clips {
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
}

#clips h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: chocolate;
}

.curve-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 90vh;
}

.image-list {
    display: flex;
    position: absolute;
    transform: translateX(50%);
    animation: slide 10s infinite linear;
}

.image-list img {
    width: 200px;
    height: 200px;
    margin: 0 10px;
    border-radius: 20%;
    transition: transform 0.5s ease;
}

@keyframes slide {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-50%);
    }
}

footer {
  background-color: rgb(190, 156, 5);
  padding: 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  gap: 15rem;
}

.footer-top {
  margin-bottom: 20px;
  flex-direction: column;
}

.nav-1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-1 li {
  margin: 0 10px;
}

.nav-1 a {
  color: #333;
  text-decoration: none;
}

.nav-1 a:hover {
  color: #ddd;
}

.footer-middle {
  margin-bottom: 20px;
}

.footer {
  width: 150px; /* adjust the width to your image size */
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer-bottom {
  font-size: 14px;
  color: #666;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.links li {
  margin: 0 10px;
}

.links a {
  color: #666;
  text-decoration: none;
}

.links a:hover {
  color: #ddd;
}

.studio-link {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.studio-link:hover {
  color: #ddd;
}

.social{
    font-size: 1.5rem;
    color: #333;
}
#social1{
    padding: 0.4rem;
    color: black;
}
#social1:hover{
    color: #ddd;
}

/* BREAKPOINT */
@media(max-width: 1200px){
    html{
        font-size: 60%;
    }

    .curve-slider {
        height: 90vh;
    }
}
@media(max-width:1058px){
    .conatiner{
        padding: 0 25px;
    }

    .content h2{
        font-size: 4rem;
        color: #ddd;
    }

    .content button{
        width: 50%;
    }

    .navbar nav li a{
        font-size: 1rem;
    }

    .curve-slider {
        height: 90vh;
    }
}

@media(max-width: 991px){    
    .content{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        height: 90vh;
        align-items: center;
        text-align: center; /* Center the text horizontally */
    }

    .content h2{
        font-size: 3.5rem;
        text-align: center; /* Ensure all text elements are centered */
    }

    .content button{
        width: 50%;
    }
    
    .content .social-media{
        justify-content: space-evenly;
        width: 100%;
    }

    .curve-slider {
        height: 90vh;
    }
}

@media(max-width: 768px) {
    .navbar nav {
        display: none;
    }

    #btn {
        display: block;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
    }

    .nav-list.active {
        display: flex;  
        flex-direction: column;  
        position: fixed;  /* Fix position to stay within the viewport */
        top: 0;  
        right: 0;  
        width: 100%;  
        height: 100vh;  
        background: rgb(140, 86, 0);  
        justify-content: center;  
        align-items: center;  
        z-index: 10;
    }

    .nav-list li {
        margin: 1rem 0;  /* Add some spacing between items */
    }

    .content {
        width: 100%;
    }

    .content h2 {
        font-size: 5rem;
    }

    .content h3 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1.2rem;
    }

    .content button {
        width: 50%;
        font-size: 1.1rem;
    }

    .social-media a {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 3rem;
    }

    .curve-slider {
        height: 90vh;
    }
}

@media only screen and (min-width: 769px) {
    #btn {
        display: none;
    }

    .navbar nav {
        display: flex; /* Ensure nav is displayed on larger screens */
    }
}

/* For screens 704px and smaller */
@media(max-width: 704px) {
    .logo img{
        width: 70px;
    }
    #home {
        height: 100vh; /* Allow height to adjust based on content */
        padding: 0;
        margin: 0;
    }

    .content{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        height: 90vh;
        align-items: center;
        text-align: center;
    }
    #clips {
        padding: 30px 0; /* Adjust padding for smaller screens */
    }

    #clips h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        margin-bottom: 15px; /* Adjust margin for smaller screens */
    }

    .curve-slider {
        height: 90vh;
    }

    .image-list {
        transform: translateX(0); /* Adjust the transform to fit smaller screens */
        animation: slide 8s infinite linear; /* Adjust animation duration for better fit */
    }

    .image-list img {
        width: 120px; /* Adjust image width */
        height: 120px; /* Adjust image height */
        margin: 0 5px; /* Adjust image margin */
    }
    .footer-container {
        flex-direction: column; /* Stack footer elements vertically */
        align-items: center; /* Center align footer items */
        gap: 1rem; /* Adjust gap between elements */
    }

    .footer-top {
        margin-bottom: 15px; /* Adjust margin */
    }

    .footer-middle {
        margin-bottom: 15px; /* Adjust margin */
    }

    .footer {
        width: 120px; /* Adjust width of footer image */
    }

    .footer-bottom {
        font-size: 12px; /* Adjust font size */
    }

    .links {
        flex-direction: column; /* Stack links vertically */
        gap: 10px; /* Adjust spacing between links */
    }

    .links li {
        margin: 5px 0; /* Adjust margin for vertical stacking */
    }

    .studio-link {
        font-size: 14px; /* Adjust font size */
    }

    .social {
        font-size: 1.2rem; /* Adjust font size */
    }
}

/* For screens 617px and smaller */
@media(max-width: 617px) {
    .content h2 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .content button {
        width: 50%;
        font-size: 0.9rem;
    }

    .social-media a {
        font-size: 1.25rem;
    }
}

/* For screens 450px and smaller */
@media(max-width: 450px) {
     /* Home Section */
    #home {
        padding: 10px; /* Reduce padding */
        height: auto; /* Allow height to adjust based on content */
    }

    .content {
        flex-direction: column; /* Stack content elements vertically */
        width: 100%; /* Full width */
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center content horizontally */
        text-align: center; /* Center text */
    }

    .content h2 {
        font-size: 2.5rem; /* Smaller font size */
        margin: 10px 0; /* Adjust margins */
    }

    .content h3 {
        font-size: 1.8rem; /* Smaller font size */
        margin: 20px 0; /* Adjust margins */
    }

    .content p {
        font-size: 1.2rem; /* Smaller font size */
        margin: 10px 0; /* Adjust margins */
    }

    .content button {
        width: 50%; /* Full width */
        font-size: 0.8rem; /* Smaller font size */
        padding: 0.5rem; /* Adjust padding */
    }

    .social-media a {
        font-size: 1.2rem; /* Smaller icon size */
        padding: 0.5rem; /* Adjust padding */
    }

    /* About Section */
    #about {
        padding: 20px 10px; /* Reduce padding */
        text-align: center; /* Center text */
    }

    /* Clips Section */
    #clips {
        padding: 10px 0; /* Reduce padding for very small screens */
    }

    .curve-slider{
        height: 70vh;
    }

    /* Footer */
    footer {
        padding: 15px; /* Reduce padding */
    }

    .footer-container {
        flex-direction: column; /* Ensure vertical stacking */
        align-items: center; /* Center-align footer content */
        gap: 10px; /* Adjust gap between footer elements */
    }

    .footer-top {
        margin-bottom: 10px; /* Adjust margin */
    }

    .footer-middle {
        margin-bottom: 10px; /* Adjust margin */
    }

    .footer {
        width: 100px; /* Adjust width of footer image */
    }

    .footer-bottom {
        font-size: 10px; /* Smaller font size */
    }

    .links {
        flex-direction: column; /* Stack links vertically */
        gap: 8px; /* Adjust spacing between links */
    }

    .links li {
        margin: 3px 0; /* Adjust margin for vertical stacking */
    }

    .studio-link {
        font-size: 12px; /* Smaller font size */
    }

    .social {
        font-size: 1rem; /* Smaller font size for social icons */
    }

    .social a {
        font-size: 1rem; /* Adjust icon size */
    }
}
