/*-----------------------------------------------------------------
	Banner & Menu
------------------------------------------------------------------- */

/* BANNER */

.banner {
	background-color: #f0f0f0;
	background-image: url("../../images/background/DSC06810.avif");
	background-size: cover;
	background-position: center center;
	background-attachment: scroll;
	background-repeat: no-repeat;
	height: 485px;
	position:relative;
}

.title-banner {
	font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
	text-align: right;
	padding-right: 3rem;
}

.description-banner {
	font-size: 1.8rem;
	text-align: right;
	padding-right: 3rem;
}

.banner-inside-box {
	display: block;
	padding-top: 3rem;
}

@media (max-width: 600px) {
	.banner {
		background-image: url("../../images/background/19082022-DSC03854.avif");
	}

	.title-banner {
		font-size: 3rem;
		font-weight: 300;
		line-height: 1.2;
		text-align: center;
		padding-right: 0rem;
	  }
	
	  .description-banner {
		font-size: 1.5rem;
		text-align: center;
		padding-right: 0rem;
	  }

	  .banner-inside-box {
		padding-top: 7rem;
	  }
}

.banner-overlay-gradient{
	opacity: .4;
    background: linear-gradient(270deg, var(--global-palette4, #000) 34%, rgba(255, 255, 255, 0) 93%);
	top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    filter: opacity(100%);
}

.banner-copyright{
    position:absolute;
    bottom:10px;
    right:14px;
    z-index:3;
    font-size:11px;
    color:rgba(255,255,255,.8);
    background:rgba(0,0,0,.35);
    padding:3px 8px;
    border-radius:4px;
    backdrop-filter:blur(4px);
}

.img-copyright{
	position: absolute;
	transform-origin: bottom right;
    bottom: 0px;
    right: 0px;
    transform: rotate(270deg) translateX(100%);
    margin: 7px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	z-index: 10;
}

/* Menu Chatgpt */

.menu-icon {
	position: fixed;
	top: 40px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-color: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1000;
}

.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	z-index: 999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.active {
	opacity: 1;
	visibility: visible;
}

.fullscreen-menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
}

.fullscreen-menu ul li {
	margin: 15px 0;
}

.fullscreen-menu ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	transition: color 0.3s ease;
}

.fullscreen-menu ul li div, .fullscreen-menu ul li div button {
	color: #f39c12;
	text-decoration: none;
	font-size: 24px;
	transition: color 0.3s ease;
}

.fullscreen-menu ul li a:hover {
	color: #f39c12;
}

.close-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

.menuButton, .toTop{
	background: var(--background-color);
}
