body {
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;

    /* Firefox */
    scrollbar-width: none;
    /* IE/Edge Legacy */
    -ms-overflow-style: none;
    ::-webkit-scrollbar {
        display: none;
    }
}

.navbar {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 8px 32px 8px 32px;
    margin: 0;
}

.feedback-tab {
    position: fixed;
    top: 60%;
    right: -45px;
    transform: translateY(-50%) rotate(-90deg);

    border-radius: 8px 8px 0 0;
    padding: 8px 24px 24px 24px;
    z-index: 9999;

    text-decoration: none;
    transition: all 0.3s ease;
}

.feedback-tab:hover {
    right: -35px;
}

.bg-video {
    position: fixed; 
    top: -5%; left: -5%;
    min-width: 110%; min-height: 110%;
    z-index: -100;
    object-fit: cover;
    filter: brightness(0.5);
}

.landing-page-title {
    color: rgb(235, 233, 233);
    position: relative;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    font-size: 6rem;
    line-height: 1.2;
}

.landing-page-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -32px;
    
    width: 60%;
    height: 8px;

    border-radius: 0 4px 4px 0;
    background-color: rgb(235, 236, 236);
}

.landing-page-container {
    display: flex;
    flex-direction: column;
    margin: 9rem 0 0 6rem;
}

.landing-page-text {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.9rem;

    margin-top: 48px;
    max-width: 58rem;
    overflow-wrap: break-word;
}

.landing-page-button-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 4rem;
    align-items: center;
}

.btn-custom {
    border-color: rgb(225, 225, 225);
    border-radius: 100px;
    border-width: 1.5px;
    background-color: none;
    color: rgb(225, 225, 225);

    width: 10rem;
}

.btn-custom:hover {
    border-color: rgb(225, 225, 225);
    background-color: rgb(225, 225, 225);
    color: rgb(18, 17, 17);
}

.btn-custom-secondary {
    border-radius: 100px;
    border-width: 1.5px;
    background-color: rgb(236, 35, 35);
    color: rgb(243, 242, 242);

    width: 10rem;
}

.btn-custom-secondary:hover {
    background-color: rgb(167, 29, 22);
    color: rgb(180, 176, 176);
}

.btn-custom:active {
    color: #aeaeae;
    transform: scale(0.95);
}

.icon-btn-custom {
    display: inline-block;
    margin: 0 0 5px 2rem;

    font-size: 250%;
    color: rgb(211, 209, 209);
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-btn-custom:hover {
    transform: translateY(-3px);
    color: rgb(125, 125, 125);
}

.full-bleed {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.banner-wrapper {
    position: relative;
}

.banner-wrapper img {
    display: block;
    width: 100%;
    height: 48vh;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0s ease;

    color: white;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 500%;
    font-weight: bold;
    margin: 0;
}

.banner-title::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);

    width: 30vw;
    height: 4px;

    background-color: white;
    border-radius: 2px;
}

.banner-text {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 60px));

    color: white;
    text-align: center;
    margin: 0;
    max-width: 30vw;
    text-overflow: clip;

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
}

.content-background {
    background-color: rgb   (26, 26, 26);
}

.content-background h1 {
    margin-left: 3rem;
    color: rgb(233, 232, 232);
}

.container-about {
    background-color: rgb(15, 39, 61);
    color: white;
    position: relative;
}

.container-descriptions {
    background-color: rgb(31, 30, 30);
    color: white;
    position: relative;
}

.content-hover-lift {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.content-hover-lift:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.537);
}

.container-descriptions {
    position: relative;
    color: white;
    z-index: 3;
}

.container-descriptions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('resources/ocean-background-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(0.4) blur(2px);
    z-index: -1;
}

.container-personal {
    background-color:rgb(6, 20, 30);
    color: rgb(234, 232, 232);
}   

.container-personal-2 {
    background-color:rgb(4, 13, 19);
    color: rgb(234, 232, 232);
}

.container-benefits {
    position: relative;
    color: white;
}

.container-benefits::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;

    background-image: url('resources/ocean-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(0.4);
    z-index: -1;
}

.container-fishing-video {
    background-color: rgb(12, 26, 39);
    color: rgb(230, 230, 230);
}

.container-fishing-locations {
    background-color: rgb(9, 30, 48);
    color: rgb(230, 230, 230);
}

.badge-urban {
    background-color: rgb(248, 181, 56);
    color: white;
}

.badge-boat-required {
    background-color: rgb(146, 22, 22);
    color: white;
}

.fish-card {
    cursor: pointer;
}

.fish-card-img {
    transition: transform 0.3s ease;
}

.fish-card-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fish-card:hover .fish-card-overlay {
    opacity: 1;
}

.fish-card:hover .fish-card-img {
    transform: scale(1.08);
}

.container-end {
    background-color: #1a1a1a;
    color: rgb(230, 230, 230);
}

.bold-on-hover {
    font-weight: lighter;
    transition: font-weight 0.1s ease;
}

.bold-on-hover:hover {
    font-weight: normal;
}

.badge-uncommon {
    background-color: rgb(81, 85, 197);
    color: rgb(231, 231, 231);
}

.badge-rare {
    background-color: rgb(197, 81, 162);
    color: rgb(231, 231, 231);
}

.badge-legendary {
    background-color: rgb(228, 67, 67);
    color: rgb(231, 231, 231);
}

.badge-baits {
    background-color: rgb(110, 56, 24);
    color: white;
}

.badge-lures {
    background-color: rgb(27, 24, 110);
    color: white;
}

.container-bestiary {
    position: relative;
    color: white;
    z-index: 3;
}

.container-bestiary::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;

    background-image: url('resources/mangrove-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(0.3) blur(4px);
    z-index: -1;
}

.hidden, .hidden-bestiary {
    display: none;
}

.carousel-custom {
    overflow: hidden;
    width: 150%;

    .carousel-inside {
        display: flex;
        width: max-content;
        gap: 3vh;
        animation: scroll 60s linear infinite;

        .carouselc-item {
        height: 35vh;
        width: 55vh;
        }
    }
}

@keyframes scroll {
    from {
    transform: translateX(0);
    }
    to {
    transform: translateX(-50%);
    }
}
