@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Oswald&display=swap');

/* bg- #ccc5b9 */
/* text- #252422 */

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* background-color: #ccc5b9; */
}

/* NAVBAR */

#logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

#logo div span{
    font-family: 'Oswald', sans-serif;
    color: rgb(32, 167, 23);
    font-size: 32px;
}

#logo img {
    height: 50px;
    width: auto;
}

#navbar {
    /* background-color: rgb(79, 87, 87); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    /* top: 0px;
    z-index:10;
    opacity: 0.8; */
    margin: 0;
  padding: 0;
  background-color: transparent; /* Set the background to transparent */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensure the navbar appears above other content */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Optional: Add a subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for depth */
}

.nav-list {
    list-style-type: none;
    
}

.list-item {
    display: inline-block;
    padding: 20px 10px;
    margin-right: 5px;
}

.nav-list .list-item a {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color:rgb(246, 238, 238) ;
}


#navbar a:hover {
    color: rgb(15, 146, 175);
}

.menu {
    display: none;
}

.menu-line{
    width: 20px;
    height: 3px;
    background-color: aliceblue;
    margin-bottom: 4px;
    margin-right: 45px;
}
/* ------------------------------------------------------------------------------ */

/* HERO SECTION */
#hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Set the hero section height to be the viewport height */
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain the video's aspect ratio and cover the entire hero section */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: whitesmoke; /* Text color for the hero content */
}

.social-icons {
    margin-top: 20px; /* Adjust the spacing as needed */
    margin-left: 130px;
    display: flex;
}

.social-icon-1 {
    margin-right: 40px;
    color: green;
}

.social-icon-2 {
    margin-right: 40px;
    color: red;
}

.social-icon-3 {
    margin-right: 40px;
    color: orange;
}

.social-icon-4 {
    margin-right: 30px;
    color: blue;
}

.social-icon-5 img{
    margin-right: 30px;
    height: 40px;
    width: 40px;
}

.hero-content h1 {
    font-size: 120px; /* Adjust the font size as needed */
    margin-bottom: 20px;
    /* font-family: 'DynaPuff', cursive; */
    font-family: 'Oswald', sans-serif;
}

.hero-content p {
    font-size: 1.5rem; /* Adjust the font size as needed */
    margin-bottom: 30px;
    /* font-family: 'DynaPuff', cursive; */
    font-family: 'Oswald', sans-serif;
}

.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(235 94 40); /* Button background color */
    color: #fff; /* Button text color */
    text-decoration: none;
    border-radius: 5px; /* Button border radius */
    font-size: 1.2rem; /* Adjust the font size as needed */
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #0056b3; /* Hover background color */
}

/* ------------------------------------------------------------------------------ */
section {
    min-height: 100vh;
    
}


/* experience */

.experience-container{
    background-color: #ccc5b9;
}

.experience-main-div{
    background-color: #ccc5b9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.experience-heading-main{
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
}

img {
    height: 400px;
    width: 400px;
    border-radius: 28px;
}

.experience-item{
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.experience-item-mid{
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.heading{
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
}

.div-content {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;   
}

.experience-description{
    margin-left: 30px;
}
/* ---------------------------------------------------------------------------------------- */

/* Live Show gallery */
#gallery-container {
    background-color: #ccc5b9;
    padding: 20px;
    text-align: center;
}
  
.gallery-main-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ccc5b9;
}
  
.gallery-heading {
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
}
  
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
  
.gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
  
.gallery-item:hover {
    transform: scale(1.05);
}
  
.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
  
/* Button styling */
.gallery-button {
    background-color: #10100f; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px; /* Adjust padding as needed */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px; /* Adjust font size as needed */
    transition: background-color 0.3s ease;
  }
  
  .gallery-button:hover {
    background-color: #9d9782; /* Button background color on hover */
  }
  
/* ---------------------------------------------------------------------------------------- */
/* FOOTER */
#footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-logo h3 {
    font-size: 24px;
    margin-left: 10px;
}

.footer-social a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
}

.fa.fa-twitter::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    background-color: currentColor;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 -8 26 30" xmlns="http://www.w3.org/2000/svg"><g><path fill="white" d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 -8 26 30" xmlns="http://www.w3.org/2000/svg"><g><path fill="white" d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>') no-repeat center;
    background-position: center 3px;
}

.spreebuzz{
    height: auto;
    width: 100px;
}

/* Style your social media icons here */


@media screen and (max-width: 768px){
    .experience-item{
        width: 90vw;
    }

    .experience-description{
        margin-right: 30px;
    }
    img {
        height: 200px;
        width: 200px;
    }
    #gallery-container{
        background-color: #ccc5b9;   
        height: 500px;
    }
}

@media screen and (max-width: 480px) {
    /* NAVBAR */
    #navbar {
        flex-direction: column;
    }
    #logo {
       margin-right: 300px;
    }
    .menu {
        display: block;
        position: absolute;
        right: 1px;
        top: 20px;
        margin-bottom: 10px;
    }
    .list-item {
        display: block;
        padding: 20px 10px;
        margin-right: 5px;
        border-top: 1px solid antiquewhite;
        background-color: beige;
    }
    .nav-list .list-item a {
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        color:black;
    }
    .nav-list {
        list-style-type: none;
        width: 100%;
        text-align: center;
        display: none;
    }

    .active {
        display: block;
    }

    .hero-content h1 {
        font-size: 60px; /* Adjust the font size as needed */
        margin-bottom: 20px;
        font-family: 'Oswald', sans-serif;
    }
    
    .hero-content p {
        font-size: 15px; /* Adjust the font size as needed */
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
    }
    
    /* experience */
    .experience-item {
        display: flex;
        flex-direction: column;
        width: 80vw;
        gap: 30px;
     }
    .experience-item-mid{
        display: flex;
        flex-direction: column-reverse;
        width: 80vw;
        gap: 30px;
    }
    img {
        height: 350px;
        width: 350px;
    }
    .social-icons {
        margin-top: 20px; /* Adjust the spacing as needed */
        margin-right: 80px;
        display: flex;
    }

    /* Live Show gallerys */
    #gallery-container {
        background-color: #ccc5b9;
        padding: 20px;
        text-align: center;
        height: 1100px;
    }

    .gallery {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .gallery-image {
        width: 50vw;
        height: 30vh;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    }

    
    
}





