@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: #fff;
    --border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
    --border-radius-hover: 4% 95% 6% 95% / 95% 4% 92% 5%;
    --border: .2rem solid var(--main-color);
    --border-hover: .2rem dashed var(--main-color);
}


* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}
body {
    background: rgb(85, 42, 8);
    background: linear-gradient(90deg, rgba(85, 42, 8, 1) 0%, rgba(20, 19, 19, 1) 42%, rgba(85, 42, 8, 1) 100%);
}


    ::-webkit-scrollbar {
        width: 0px; 
    }
    
    ::-webkit-scrollbar-track {
        background-color: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}


section {
    padding: 2rem 9%;
}

.heading {
    font-size: 9rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: .05rem var(--main-color);
    letter-spacing: .2rem;
    text-align: center;
    pointer-events: none;
    position: relative;
}

.heading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--main-color);
    font-size: 3rem;
}

.btn {
    display: inline-block;
    padding: .9rem 1.5rem;
    border: var(--border);
    border-radius: var(--border-radius);
    color: var(--main-color);
    background: none;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1.7rem;
}

.btn:hover {
    border-radius: var(--border-radius-hover);
    border: var(--border-hover);
}
.carousel-item {
    height: 65vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%;
    background: rgb(85, 42, 8);
    background: linear-gradient(90deg, rgba(85, 42, 8, 1) 0%, rgba(20, 19, 19, 1) 42%, rgba(85, 42, 8, 1) 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-logo a {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.header-nav {
    display: flex;
    padding-right: 20rem;
}

.header-tab {
    padding: 0.5rem 1rem;
    font-size: 2.0rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: text-decoration 0.9s, filter 0.8s; 
}

.header-tab:hover {
    text-decoration: underline;
    text-decoration-color: hsl(70, 100%, 40%);
    filter: brightness(0.3);
}

.header-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .header-menu-btn {
        display: block;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgb(85, 42, 8);
        background: linear-gradient(90deg, rgba(85, 42, 8, 1) 0%, rgba(20, 19, 19, 1) 42%, rgba(85, 42, 8, 1) 100%);
        padding: 1rem 0;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 999;
    }

    .header-nav.active {
        display: flex;
    }

    .header-tab {
        margin: 0.5rem 0;
    }
    @media only screen and (max-width: 600px) {

        .header-nav {
            display: none;
            flex-direction: column;
            width: 100%;
            text-align: center;
            background-color: rgb(85, 42, 8);
            padding: 1rem 0;
            position: absolute;
            top: 60px;
            left: 0;
            z-index: 999;
        }
        .header-nav.active {
            display: flex;
        }
        .header-tab {
            margin: 0.5rem 0;
        }
    

        .home {
            padding-top: 8rem;
        }
        .home .content {
            text-align: center;
        }
        .homebtn {
            margin-top: 2rem;
        }
    
        .about {
            padding: 2rem;
            text-align: center;
        }
        .aboutbtn {
            margin-top: 2rem;
        }
    
        .menu {
            padding: 2rem;
            text-align: center;
        }
        .box-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .box {
            margin: 0 auto;
        }
        .box img {
            margin-bottom: 1rem;
        }
    
        .footer {
            padding: 2rem;
            text-align: center;
        }
        .box-container {
            gap: 1rem;
        }
        .box {
            margin-bottom: 2rem;
        }
        .credit {
            margin-top: 2rem;
        }
        .homelogo {
            display: none; 
        }
    }
    
}





  
#menu-btn {
    font-size: 3rem;
    color: white;
    cursor: pointer;
    display: none;
}

.home {
    min-height: 100vh;
    padding-top: 12rem;
    background: url(../img/homebg.png) no-repeat;
    background-position: center;
    background-size: cover;
}
.home .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home .row .content {
    flex: 1 1 42rem;
}

.home .row .image {
    flex: 1 1 0px;
    padding-top: 10rem;
    text-align: center;
}

.home .row .image img {
    height: 31rem;
    animation: float 4s linear infinite;
}
.homebtn {
    display: inline-block;
    padding: .9rem 4.5rem;
    border: .2rem solid rgb(85,42,8);
    border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
    color: white;
    background: none;
    cursor: pointer;
    margin-top: 38rem;
    font-size: 3.7rem;
}
.homebtn:hover {
    border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
    border: .2rem solid red;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0rem);
    }
    50% {
        transform: translateY(-7rem);
    }
}

.home .row .content h3 {
    font-size: 8.5rem;
    color: white;
    text-transform: uppercase;
}
.home h2 {
    margin-top: 10rem;
    font-size: 5.5rem;
    color: white;
    text-transform: uppercase;
}

.home .image-slider {
    text-align: center;
    padding: 3rem 0;
}
.homelogo {
    height: 200px;
    margin-left: 150px;
}
.home .image-slider img {
    height: 9rem;
    margin: 0 .5rem;
    cursor: pointer;
    margin-top: 5rem;
}

.home .image-slider img:hover {
    transform: translateY(-2rem);
}
.menuimg {
    border: 2px solid #ccc;
    padding: 10px; 
    border-radius: 100%; 
    display: inline-block;
}
.menu {
    background: url(../img/menubg.png) no-repeat;
    background-position: center;
    background-size: cover;

}

.menu .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.menu .box-container .box {
    flex: 1 1 42rem;
    padding: 2rem;
    border: var(--border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 6rem;
}

.menu .box-container .box:hover {
    border: var(--border-hover);
    border-radius: var(--border-radius-hover);
}

.menu .box-container .box img {
    height: 8rem;
    margin-left: -6rem;
}

.menu .box-container .box .content h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    line-height: 1.8;
}

.menu .box-container .box .content p {
    font-size: 1.6rem;
    color: var(--main-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.menu .box-container .box .content span {
    font-size: 2rem;
    color: var(--main-color);
    line-height: 1.8;
}
.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    gap: 1.5rem;
    
}




.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about .row .image {
    flex: 1 1 42rem;
}

.about .row .image img {
    width: 90%;
    animation: aboutImage 4s linear infinite;
}

@keyframes aboutImage {

    0%,
    100% {
        transform: scale(.9);
        border-radius: var(--border-radius-hover);
    }

    50% {
        transform: scale(.8);
        border-radius: var(--border-radius);
    }
}

.about .row .content {
    flex: 1 1 42rem;
}

.about .row .content .title {
    color: var(--main-color);
    font-size: 3rem;
    line-height: 1.8;
}

.about .row .content p {
    color: var(--main-color);
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 1rem 0;
}

.about .row .content .icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 3rem;
}

.about .row .content .icons-container .icons {
    flex: 1 1 15rem;
    padding: 1.5rem;
    text-align: center;
    border: var(--border);
    border-radius: var(--border-radius);
}

.about .row .content .icons-container .icons img {
    height: 5rem;
}

.about .row .content .icons-container .icons h3 {
    font-size: 1.7rem;
    padding-top: 1rem;
    color: var(--main-color);
}

.aboutbtn {
    display: inline-block;
    border: .2rem solid rgb(85,42,8);
    border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
    color: white;
    background: none;
    cursor: pointer;
    font-size: 3.7rem;
    margin-top: 9rem;
}
.aboutbtn:hover {
    border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
    border: .2rem solid red;
}


.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: white;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: 1rem 0;
    color: white;
}

.footer .box-container .box a i {
    padding-right: .5rem;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: center;
    font-size: 2rem;
    padding: 2rem 1rem;
    margin-top: 1rem;
    color: white;
}

.footer .credit span {
    border-bottom: var(--border-hover);
}
.footer {
    background: rgb(85,42,8);
    background: linear-gradient(90deg, rgba(85,42,8,1) 0%, rgba(20,19,19,1) 42%, rgba(85,42,8,1) 100%);
}



.menu {
    background-position: center;
    background-size: cover;
}

.menu .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.menu .box-container .box {
    flex: 1 1 42rem;
    padding: 2rem;
    border: var(--border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 6rem;
}

.menu .box-container .box:hover {
    border: var(--border-hover);
    border-radius: var(--border-radius-hover);
}

.menu .box-container .box img {
    height: 8rem;
    margin-left: -6rem;
}

.menu .box-container .box .content h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    line-height: 1.8;
}

.menu .box-container .box .content p {
    font-size: 1.6rem;
    color: var(--main-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.menu .box-container .box .content span {
    font-size: 2rem;
    color: var(--main-color);
    line-height: 1.8;
}

#backgroundButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    z-index: 1000;
}


@media only screen and (max-width: 600px) {
    .discord-cta {
        width: 100%;
        
    }
    .home .row .image {
        flex: 1 1 0px;
        padding-top: 10rem;
        text-align: center;
    }
    
    .home .row .image img {
        height: 150px;
        animation: float 4s linear infinite;
    }
    .heading {
        font-size: 3rem;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: .05rem var(--main-color);
        letter-spacing: .2rem;
        text-align: center;
        pointer-events: none;
        position: relative;
    }
    
    .heading span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        color: var(--main-color);
        font-size: 15px;
    }

    .home .row .content h3 {
        font-size: 3.5rem;
        color: var(--main-color);
        text-transform: uppercase;
    }
    
}
