@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --brown-clr: rgb(153, 101, 21);
    --gold-clr: rgb(255, 196, 0);
    --black-pri-clr: rgb(0, 0, 0);
    --white-clr: rgb(250, 250, 250);
    --grey-clr: rgb(138, 134, 134);
    --darkgrey: rgb(35, 35, 35);
    --less-light-grey-clr: rgb(128, 128, 128);
    --lesser-light-grey-clr: #848484;
    --font-family: "League Gothic", sans-serif;
    --font-family-secondary: "Poppins", sans-serif;
    --medium-font-weight: 700;
    --bold-font-weight: 1000;
    --small-font-size: 1rem;
    --medium-font-size: 1.4rem;
    --semi-medium-font-size: 2rem;
    --large-font-size: 3rem;
    --container-width: 1000px;
    --all-basic-transition: all linear .1s;
}


body    {
    /* overflow: hidden; */
    overflow-x: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    background-color: var(--black-pri-clr);
    color: var(--less-light-grey-clr);
    font-family: var(--font-family);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white-clr);
}

.body-container  {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    /* height: 100vh; */
    margin: 0 auto;
}
.nav-header-container   {
    display: flex;
    width: var(--container-width);
    gap: 5rem;
    /* background-color: blanchedalmond; */
    align-items: center;
    padding: .8rem 0 0 .7rem;
}

.logo img   {
    width: 125px;
    object-fit: cover;
}

.nav-bar    {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: var(--medium-font-size);
}

.nav-list {
    position: relative;
}


.nav-list a {
    display: inline-block;
    width: 100%;
    padding: .1rem .4rem;
    transition: var(--all-basic-transition);
}


.nav-after {
    position: absolute;
    top: 70%;
    left: 85%;
    transform: rotate(230deg);
    color: var(--black-pri-clr);
}




/* USE JAVASCRIPT FOR THIS IF TIME PERMITS */
.nav-list-active {
    background-color: var(--brown-clr);
    color: var(--white-clr);
}


.nav-after-active {
    color: var(--gold-clr);
}


.section-breaker   {
    background-color: var(--brown-clr);
    width: 100vw;
    margin-bottom: 1.4rem;
}

/* Dropdown Button */
.dropbtn {
    background-color: var(--black-pri-clr);
    color: white;
    padding: 0px;
    font-size: 24px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 25px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: var(--all-basic-transition);
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}


  

/* FOOTER CONTAINER */

.footer-container   {
    display: flex;
    flex-direction: column;
    width: var(--container-width);
    gap: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.footer-container>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    margin: 0 auto;
    /* gap: 4rem; */
}

.footer-container>div:first-child div   {
    font-size: var(--medium-font-size);
}

.footer-container>div:nth-child(2)   {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 2px solid var(--gold-clr);
    border-right: 2px solid var(--gold-clr);
    /* margin-top: 1.4rem; */
}

.footer-container>div:nth-child(2)>div  {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16%;
    height: 60px;
    text-align: center;
}

.footer-container>div:nth-child(2)>div:not(:last-child) {
    border-right: 2px solid var(--gold-clr);
}

.footer-container>div:nth-child(3)  {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    margin-bottom: 2.5rem;
}

.footer-container>div:nth-child(3)>div:first-child a  {
    font-size: 1.4rem;
    color: var(--gold-clr);
}

.footer-container>div:nth-child(3)>div:nth-child(2)>span a {
    transition: var(--all-basic-transition);
}


.info-box-2  {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 60%;
}

.socials-btn>a    {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: none;
    background-color: var(--gold-clr);
    font-size: 1rem;
    height: 25px;
    transition: var(--all-basic-transition);
}

.socials-btn>a span:first-child {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: var(--gold-clr);
}

.socials-btn>a span:nth-child(2) {
    padding: 0 .3rem;
}

.icons {
    color: var(--black-pri-clr);
}

.social-main {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: .8rem;
    margin-bottom: .7rem;
}

.ln-btn     {
    display: inline-block;
    /* width: 40%; */
    
}

.ln-btn>button  {
    border-radius: none;
    border: 2px solid var(--gold-clr);
    background-color: var(--white-clr);
    font-weight: var(--medium-font-weight);
    padding: .5rem;
    transition: var(--all-basic-transition);
    cursor: pointer;
}

#newsletter-container  {
    width: 60%;
}

.media-container   {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    overflow: hidden;
    background-color: inherit;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.media-container>div:first-child, .media-container>div:nth-child(2)  {
    font-size: var(--medium-font-size);
}

.media-box   {
    /* width: 250px;
    height: 250px; */
    /* overflow: hidden; */
    /* background-color: red; */
    /* text-align: center; */
    display: flex;
    width: 100%;
    height: 100%;
    /* gap: 2rem; */
    transition: transform 0.5s ease;
    /* box-shadow: 0px 2px 2px 1px var(--gold-clr); */
}

.media-box>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
}

.media-box>a>img   {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-right-arrow {
    font-size: .1rem;
    right: 0;
}

.media-left-arrow {
    font-size: .1rem;
    left: 0;
}

#media-id {
    display: flex;
    gap: .1rem;
    position: absolute;
    top: 40%;
}

/* .media-box>select option    {
    background-color: rgb(148, 143, 143);
    color: var(--white-clr);
    font-weight: var(--medium-font-weight);
} */

/* .media-container>div:last-child  {
    width: 80%;
    text-align: center;
    font-size: .7rem;
} */

#socials>div>span:first-child, #socials>a>div>span:first-child {
    font-size: var(--medium-font-size);
}


.sections {
    display: flex;
    position: relative;
    flex-direction: column;
    width: var(--container-width);
    gap: 1.2rem;
}

.right-arrows {
    right: -4%;
    bottom: 30%;
}

.left-arrows {
    left: -4%;
    bottom: 30%;
}

.sections-title     {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gold-clr);
    border-top: 1px solid var(--gold-clr);
    padding: .3rem 0;
    margin: 1.2rem 0 0 0;
}

.sections-title>span {
    font-size: var(--semi-medium-font-size);
}

.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-clr);
}

.section-icon i     {
    color: var(--white-clr);
    font-size: 1.2rem;
}


/* AUDIO SECTION  */
.audio-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* justify-content: space-between; */
    padding: .35rem 0;
    width: 100vw;
    gap: .3rem;
    background-color: var(--darkgrey);
}
.audio-controller {
    display: flex;
    gap: .3rem;
    padding-right: 10rem;
}

#music-icon {
    display: none;
}





/* HOVER EFFECT */

.nav-list:hover a {
    background-color: var(--gold-clr);
    color: var(--brown-clr);
}




.nav-list:hover i {
    color: var(--gold-clr);
}


.footer-container>div:nth-child(3)>div:nth-child(2)>span a:hover {
    color: var(--brown-clr);
}

.ln-btn>button:hover  {
    border: 2px solid var(--brown-clr);
    color: var(--brown-clr);
}

.socials-btn>a:hover span:nth-child(2)  {
    color: var(--brown-clr);
}



.menu-icon {
    font-size: var(--medium-font-size);
    display: none;
    align-items: center;
    justify-content: space-between;
}

.nav-bar.onscreen {
    display: flex;
}

#progress-container-bar {
    width: 100vw;
    height: 3px;
    overflow: hidden;
    border-radius: 10px;
}

#progress-bar {
    width: 0;
    height: 100%;
    border-radius: 10px;
    background-color: var(--gold-clr);
}


@media (max-width: 1100px) {

    .body-container {
        width: 95vw;
    }
    .nav-header-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        justify-content: center;
    }


    .menu-icon {
        margin-left: 20px;
        width: 95%;
        display: flex;
        color: var(--gold-clr);
    }
    .nav-bar-main {
        text-align: center;
        width: 100%;
    }

    .nav-bar {
        display: none;
        flex-direction: column;
        gap: 1rem;
        /* font-size: 1rem; */
    }

    .nav-after {
        display: none;
    }

    .nav-list-active {
        background-color: black;
        color: inherit;
    }

    .dropdown-content {
        left: 40%;
    }

    .audio-main {
        justify-content: space-between;
    }

    .audio-controller {
        padding-right: 1rem;
    }

    #music-icon {
        padding-left: 1rem;
        display: block;
    }

    #audio-title {
        margin-right: auto;
    }

    .footer-container {
        width: 100%;
    }

    .footer-container>div:nth-child(2) {
        display: none;
    }
   
  }
  
