/*HEADER*/
header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	z-index: 1000;
	display: flex;
    gap: 10px;
	align-content: center;
    height: 90px;
    transition: 0.5s all;
}

header.scrolled {
    background-color: rgb(13 52 13);
}

.body-flex {
    display: flex;
    flex-direction: column;
    min-height: 100dvh
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background-color: transparent;
    padding: 0px 50px;
}

@media (min-width: 1000px) {
    nav {
        transform: translateY(-10px);
        opacity: 0;
        animation: navbarFadeIn .75s ease-out forwards
    }
}

@keyframes navbarFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (min-width: 1001px) {
    nav .bg {
        display: none;
    }
}
nav .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    transition: 0.5s all;
}
header.scrolled nav .bg {
    background: rgb(13 52 13);
}
.logo {
    z-index: 1;
}

.logo a {
    display: block;
}

.logo img {
	height: 50px;
    width: 200px;
}

.nav-links {
    z-index: 1;
	display: flex;
	gap: 35px;
}

.nav-links a {
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1.5px;
	font-size: 16px;
	color: #ffffff;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: #e86f00;
}

.nav-links a.active {
    color: #ff7f00;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff7f00;
}
.login-btn {
    z-index: 1;
}

.login-btn a,
.burger-login-btn a {
	color: #ffffff;
	display: flex;
	align-items: center;
	padding: 8px;
	border-radius: 50%;
	background-color: #ffffff0c;
	transition: background-color 0.2s ease;
}

.burger-login-btn {
	display: none;
}

.login-btn a:hover,
.burger-login-btn a:hover {
	background-color: #e86f00;
	color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    left: 0;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    left: 0;
}

@media (max-width: 1000px) {
	.nav-links {
		position: fixed;
		inset: 0;
        padding-top: 90px;
		width: 100%;
		height: 100dvh;
		overflow-y: auto;
		background-color: rgb(13 52 13);
		flex-direction: column;
		align-items: center;
		justify-content: space-evenly;
		gap: 20px;
		transform: translateY(-100%);
		opacity: 0;
		transition: transform 0.3s ease, opacity 0.3s ease;
		pointer-events: none;
		z-index: -1;
	}

	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-links a {
		font-size: 18px;
	}

	.burger-login-btn {
		display: flex;
	}

	.hamburger {
		display: flex;
	}

	.login-btn {
		display: none;
	}

    section:not(:first-of-type) {
    padding: 25px 0 !important;
    }

    .heading {
        margin-top: 5px !important;
    }
}

/*footer*/
footer {
    background-color: rgb(24 29 24);
    color: #fff;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 15px;
}

.footer-logo img {
    height: 100px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-block h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.social-flex {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footer-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-block.nav a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-block.nav a:hover,
.footer-block.contact a:hover {
    color: #e86f00;
}

.footer-block.contact a {
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block.social a img {
    height: 45px;
    transition: transform 0.2s;
}

.footer-block.social a:hover img {
    transform: scale(1.1);
}

.footer-nav a,
.footer-contact a,
.footer-social a {
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

.heading {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(22px, 4vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px auto;
}

.heading::before,
.heading::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #e86f00;
}

.heading span {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.paragraph {
    line-height: 1.5;
    font-size: clamp(16px, 3vw, 20px);
    margin: 15px 0px;
    text-align: justify;
    color: rgb(50, 50, 50);
}

section:not(:first-of-type) {
    padding: 50px 0;
}

section {
    position: relative;
}

.section-heading {
    margin: 50px 0px;
}
.section-heading h1 {
    margin: 0px;
}

.aos {
    overflow: hidden;
}

.img-bg {
    position: relative;
    overflow: hidden;
    color: white;
}

.img-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    scale: 1.05;
}

h2 {
    font-size: clamp(20px, 3vw, 24px);
}

.inactive-season {
    background-color: #ffd9d9;
    color: #a90000;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}