html,
body {
	font-family: "Now Regular";
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Inter", sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
	font-family: "Now Regular";
	color: #444444;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus, select:focus, button:focus, textarea:focus {
    outline: none;
}

a:hover, a:focus {
    text-decoration: none; outline: none; color: #ffffff;
}

ul, ol {
    padding: 0; margin: 0;
}

/* === Helper CSS === */
.section-title {
    margin-bottom: 40px; position: relative; z-index: 1;
}

.section-title.center-title {
    text-align: center;
}

.section-title h2 {
    font-size: 42px; color: #f2f2f2; font-weight: 700; text-transform: uppercase;
}

.section-title h1 {
    font-size: 100px; color: #CBA135; font-family: "Rockville Solid Regular"; position: absolute; left: 0; top: -45px; width: 100%; opacity: 70%; z-index: -1;
}

.set-bg {
    background-repeat: no-repeat; background-size: cover; background-position: top center;
}

.spad {
    padding-top: 100px; padding-bottom: 100px;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
    color: #fff;
}

/* === Buttons === */
.primary-btn {
    display: inline-block; font-size: 15px; text-transform: uppercase; padding: 14px 25px 12px; color: #111111; background: #FFD700; letter-spacing: 2px;
}

.site-btn {
    font-size: 15px; color: #111111; background: #FFD700; font-weight: 700; letter-spacing: 2px; border: none; text-transform: uppercase; display: inline-block; padding: 14px 30px; width: 100%; transition: all 0.3s ease;
}

.site-btn:hover {
    background: #111111; color: #FFD700; cursor: pointer;
}

/* === Preloder === */
#preloder {
    position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 999999; background: #000;
}

.loader {
    width: 40px; height: 40px; position: absolute; top: 50%; left: 50%; margin-top: -13px; margin-left: -13px; border-radius: 60px; animation: loader 0.8s linear infinite; -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% { transform: rotate(0deg); border: 4px solid #f44336; border-left-color: transparent;
}

50% {
    transform: rotate(180deg); border: 4px solid #673ab7; border-left-color: transparent;
}

100% {
    transform: rotate(360deg); border: 4px solid #f44336; border-left-color: transparent;
}

}
@-webkit-keyframes loader {
    0% { -webkit-transform: rotate(0deg); border: 4px solid #f44336; border-left-color: transparent;
}

}

.header__logo {
    padding: 8px 0;
}

.header__logo a {
    display: inline-block;
}

.header__logo img {
    max-width: 100%; height: auto; width: 100px;
}

.header__nav {
    text-align: right;
}

.header__menu {
    padding: 20px 0 15px; display: inline-block; margin-right: 45px;
}

.header__menu ul li {
    list-style: none; display: inline-block; margin-right: 45px; position: relative;
}

.header__menu ul li.active a:after {
    opacity: 1;
}

.header__menu ul li:hover a:after {
    opacity: 1;
}

.header__menu ul li a {
    font-size: 15px; text-transform: uppercase; color: #ffffff; display: block; padding: 6px 0; position: relative;
}

.header__menu ul li a:after {
    position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #ffffff; content: ""; transition: all, 0.5s; opacity: 0;
}

.header__right__social {
    display: flex !important; align-items: center !important; gap: 14px !important;
}

.header__right__social a {
    position: relative; padding-bottom: 4px; display: flex; align-items: center; justify-content: center; height: 38px; width: 38px; font-size: 15px; color: #ffffff;
}

.header__right__social a::after {
    content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f1d600;
  bottom: 0;
  
  left: 50%;
  transform: translateX(-50%);

  transition: width 0.3s ease-in-out;
}

.header__right__social a:hover::after {
    /* La linea si espande al 60% della larghezza del suo contenitore */
  width: 60%;
}

/* === Fine sezioni pulite === */

/* === Responsive Media Queries === */
@media only screen and (max-width: 991px) {
    
}

.header__logo a {
    display: inline-block;
}

.header__menu ul li:hover .dropdown {
    top: 34px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li .dropdown {
    position: absolute;
	left: 0;
	top: 56px;
	width: 150px;
	background: #111111;
	text-align: left;
	padding: 2px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
    display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
    font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	padding: 8px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
    display: none;
}

.header__right__social a:last-child {
    margin-right: 0;
}

.linear__icon {
    position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -16px;
	-webkit-animation: mymove 0.5s infinite alternate;
	animation: mymove 0.5s infinite alternate;
}

.linear__icon i {
    font-size: 50px;
	color: #5c00ce;
}

@-webkit-keyframes mymove {
    0% {
		bottom: 0;
}

}

@keyframes mymove {
    0% {
		bottom: 0;
}

}


/*---------------------
  Track
-----------------------*/

.track {
    padding-top: 120px;
	padding-bottom: 40px;
	overflow: hidden;
}

.track .section-title {
    margin-bottom: 105px;
}

.track__content {
    height: 200;
	overflow-y: scroll;
}

.track__all {
    text-align: right;
	margin-bottom: 100px;
}

.jp-play {
    position: relative;
	height: 50px;
	width: 50px;
	background: transparent;
	border: 2px solid #e1e1e1;
	border-radius: 50%;
}

.jp-play:after {
    position: absolute;
	display: block;
	left: 17px;
	top: 12px;
	width: 16px;
	height: 20px;
	background: url(../img/play-default.png);
	content: "";
}

.jp-state-playing .jp-play {
    background: #5c00ce !important;
	border-color: #5c00ce !important;
}

.jp-state-playing .jp-play:after {
    background: url(../img/pause.png) !important;
	left: 15px;
	top: 12px;
}

.jp-audio .jp-play:focus {
    background: #5c00ce !important;
	border-color: #5c00ce !important;
}

.jp-audio .jp-play:focus:after {
    background: url(../img/play.png);
}

.jp-seek-bar>div {
    height: 5px;
	background: #e1e1e1;
	cursor: pointer;
	width: 245px;
}

.player_bars {
    width: 350px;
	display: table;
	padding-left: 50px;
	position: relative;
	padding-top: 25px;
	float: left;
	margin-right: 30px;
}

.jp-play-bar {
    position: relative;
	height: 100%;
	background: #5c00ce;
	overflow: visible !important;
}

.jp-current-time {
    font-size: 15px;
	color: #111111;
	position: absolute;
	left: -50px;
	top: -9px;
}

.jp-duration {
    font-size: 15px;
	color: #111111;
	position: absolute;
	right: 0;
	top: 16px;
}

.player_controls_box {
    width: 50px;
	float: left;
	margin-right: 20px;
}

.jp-mute {
    font-size: 18px;
	border: none;
	background: none;
	color: #111111;
	position: absolute;
	left: 0;
	top: 13px;
}

.jp-volume-bar {
    height: 5px;
	width: 70px;
	background: #e1e1e1;
	cursor: pointer;
}

.jp-volume-bar-value {
    background: #5c00ce;
	height: 100%;
}

.jp-volume-controls {
    position: relative;
	width: 95px;
	float: left;
	padding-left: 30px;
	padding-top: 25px;
}

.single_player_container {
    overflow: hidden;
	margin-bottom: 40px;
}

.single_player_container:last-child {
    margin-bottom: 0;
}

.single_player_container h4 {
    font-size: 26px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

/*---------------------
  Youtube
-----------------------*/

.youtube {
    padding-bottom: 50px;
}

.youtube .section-title {
    text-align: center;
}

.youtube .section-title h1 {
    font-size: 90px;
}

.youtube__item {
    -webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-bottom: 30px;
}

.youtube__item:hover {
    -webkit-box-shadow: 0px 3px 30px rgba(22, 41, 124, 0.1);
	box-shadow: 0px 3px 30px rgba(22, 41, 124, 0.1);
}

.youtube__item__pic {
    height: 240px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.youtube__item__pic .play-btn {
    font-size: 16px;
	color: #5c00ce;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	display: inline-block;
	line-height: 60px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.youtube__item__pic .play-btn i {
    position: relative;
	top: 2px;
	left: 2px;
}

.youtube__item__pic .play-btn:after {
    position: absolute;
	left: 10px;
	top: 10px;
	height: 40px;
	width: 40px;
	background: #ffffff;
	border-radius: 50%;
	content: "";
	z-index: -1;
}

.youtube__item__text {
    padding: 25px 30px 20px 20px;
	background: #ffffff;
}

.youtube__item__text h4 {
    font-size: 26px;
	color: #111111;
	line-height: 34px;
	font-weight: 700;
}

/*---------------------
  Discography
-----------------------*/

.discography {
    padding-bottom: 40px;
	padding-top: 120px;
	overflow: hidden;
}

.discography .section-title {
    margin-bottom: 90px;
}

.discography__item {
    margin-bottom: 45px;
	-webkit-box-shadow: 0px 5px 10px rgba(22, 41, 124, 0.1);
	box-shadow: 0px 5px 10px rgba(22, 41, 124, 0.1);
}

.discography__item__pic img {
    min-width: 100%;
}

.discography__item__text {
    padding: 25px 30px 35px;
	text-align: center;
}

.discography__item__text span {
    font-size: 18px;
	color: #5c00ce;
	font-weight: 700;
}

.discography__item__text h4 {
    font-size: 22px;
	text-transform: uppercase;
	color: #111111;
	margin-top: 10px;
	margin-bottom: 25px;
}

.discography__item__text a {
    display: inline-block;
	margin-right: 10px;
}

.discography__item__text a:last-child {
    margin-right: 0;
}

.pagination__links {
    text-align: center;
	padding-top: 10px;
}

.pagination__links.blog__pagination {
    text-align: left;
}

.pagination__links a {
    display: inline-block;
	font-size: 15px;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: #f2f2f2;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 6px;
	margin-bottom: 5px;
	padding: 14px 22px 12px;
}

.pagination__links a:last-child {
    margin-right: 0;
}

.pagination__links a:hover {
    background: #290849;
	color: #ffffff;
}

/*---------------------
  Footer
-----------------------*/

.footer {
    padding-top: 300px;
	padding-bottom: 60px;
	margin-top: -547px;
	height: 549px;
}

.footer.footer--normal {
    margin-top: 0;
}

.footer__address {
    margin-bottom: 50px;
}

.footer__address ul li {
    list-style: none;
	padding-left: 70px;
	position: relative;
	margin-bottom: 30px;
}

.footer__address ul li:last-child {
    margin-bottom: 0;
}

.footer__address ul li i {
    font-size: 18px;
	color: #5c00ce;
	height: 50px;
	width: 50px;
	background: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
}

.footer__address ul li p {
    color: #ffffff;
	opacity: 0.7;
	margin-bottom: 8px;
}

.footer__address ul li h6 {
    font-size: 15px;
	font-weight: 700;
	color: #f1d600;
}

.footer__social {
    text-align: center;
	position: relative;
	margin-bottom: 50px;
}

.footer__social::before {
    position: absolute;
	left: -46px;
	top: 3px;
	width: 1px;
	height: 130px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.footer__social::after {
    position: absolute;
	right: -50px;
	top: 3px;
	width: 1px;
	height: 130px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.footer__social h2 {
    color: #ffffff;
	font-weight: 700;
	margin-bottom: 25px;
}

.footer__social .footer__social__links a {
    font-size: 18px;
	color: #5c00ce;
	height: 50px;
	width: 50px;
	background: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}

.footer__social .footer__social__links a:last-child {
    margin-right: 0;
}

.footer__newslatter {
    margin-bottom: 50px;
}

.footer__newslatter h4 {
    font-size: 26px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 30px;
}

.footer__newslatter form {
    position: relative;
}

.footer__newslatter form input {
    height: 50px;
	font-size: 15px;
	color: #ffffff;
	width: 100%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 20px;
}

.footer__newslatter form input::-webkit-input-placeholder {
    color: #ffffff;
}

.footer__newslatter form input::-moz-placeholder {
    color: #ffffff;
}

.footer__newslatter form input:-ms-input-placeholder {
    color: #ffffff;
}

.footer__newslatter form input::-ms-input-placeholder {
    color: #ffffff;
}

.footer__newslatter form input::placeholder {
    color: #ffffff;
}

.footer__newslatter form button {
    font-size: 18px;
    color: #ffcc00; /* colore giallo */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 16px;
    background: #ffffff;
    border: none;
}

.footer__copyright__text {
    text-align: center;
	margin-top: 50px;
}

.footer__copyright__text p {
    color: #999999;
}

.footer__copyright__text a {
    color: #999999;
	text-decoration: underline;
}

.footer__copyright__text a:hover {
    color: #5c00ce;
}

.footer__copyright__text i {
    color: #c11;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
    padding-top: 35px;
}

.breadcrumb__links a {
    font-size: 15px;
	color: #f1d600;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.breadcrumb__links a:after {
    position: absolute;
	right: -14px;
	top: 0;
	content: "|";
	color: #888888;
}

.breadcrumb__links a i {
    margin-right: 5px;
}

.breadcrumb__links span {
    font-size: 15px;
	color: #888888;
	display: inline-block;
}

/*---------------------
  About
-----------------------*/

.about {
    padding-top: 0;
}

.about.about--page {
    padding-top: 80px;
	padding-bottom: 80px;
}

.about.about--page .section-title {
    margin-bottom: 28px;
}

.about.about--page .section-title h2 {
    line-height: 55px;
}

.about.about--page .about__text {
    padding-top: 15px;
  background: #111;
  padding: 50px 40px 50px;
  color: #fff;
}

.about.about--page .about__text p {
    color: #111111;
}

.about__text {
    padding-top: 110px;
}

.about__text p {
    margin-bottom: 35px;
}

/*---------------------
  Skills/About page
-----------------------*/

.skills {
    padding-bottom: 0;
	padding-top: 80px;
}

.skills__content {
    background: #111;
	height: 500px;
	padding: 100px 70px 60px;
}

.skills__content .section-title h2 {
    color: #ffffff;
}

.skills__content .section-title h1 {
    color: #FFDE59;
	opacity: 0.1;
	text-align: center;
}

.skills__content p {
    color: #ffffff;
	margin-bottom: 32px;
}

.skill__bar__item {
    margin-bottom: 20px;
}

.skill__bar__item p {
    font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 10px;
}

.skill__bar__item .barfiller {
    width: 100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	margin-bottom: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.skill__bar__item .barfiller .tip {
    margin-top: -32px;
	padding: 0;
	font-size: 15px;
	color: #fff;
	background: transparent;
}

.skill__bar__item .barfiller .tip:after {
    display: none;
}

.skills__video {
    height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.skills__video .play-btn {
    font-size: 26px;
	color: #5c00ce;
	height: 90px;
	width: 90px;
	border-radius: 50%;
	background: rgba(117, 31, 221, 0.3);
	display: inline-block;
	line-height: 90px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.skills__video .play-btn i {
    position: relative;
	top: 2px;
	left: 2px;
}

.skills__video .play-btn:after {
    position: absolute;
	left: 15px;
	top: 15px;
	height: 60px;
	width: 60px;
	background: #ffffff;
	border-radius: 50%;
	content: "";
	z-index: -1;
}

/*---------------------
  About Pic
-----------------------*/

.about-pic {
    overflow: hidden;
}

.about-pic .container-fluid {
    padding-right: 0;
}

.about-pic img {
    min-width: 100%;
	margin-bottom: 10px;
	padding-right: 10px;
}

/*---------------------
  Feature
-----------------------*/

.feature {
    padding-bottom: 70px;
}

.feature.feature--about .section-title span {
    color: #0071e4;
}

.feature.feature--about .feature__item {
    background: #f5f5f5;
}

.feature.feature--about .feature__item h5 {
    color: #111111;
}

.feature__text {
    padding-top: 80px;
}

.feature__text .section-title {
    margin-bottom: 20px;
}

.feature__text p {
    margin-bottom: 26px;
}

.feature__item {
    background: #0c2b4b;
	text-align: center;
	padding: 40px 10px 35px;
	margin-bottom: 30px;
}

.feature__item.right-column {
    margin-top: 120px;
}

.feature__item h5 {
    font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	margin-top: 25px;
}

/*---------------------
  Contact
-----------------------*/

.contact {
    padding-top: 70px;
	padding-bottom: 50px;
}

.contact__address .section-title {
    margin-bottom: 10px;
}

.contact__address .section-title h2 {
    text-transform: none;
}

.contact__address p {
    margin-bottom: 34px;
}

.contact__address ul li {
    list-style: none;
	padding-left: 100px;
	position: relative;
	margin-bottom: 30px;
}

.contact__address ul li:last-child {
    margin-bottom: 0;
}

.contact__address ul li i {
    font-size: 30px;
	height: 70px;
	width: 70px;
	background: #f5f5f5;
	border-radius: 50%;
	line-height: 70px;
	text-align: center;
	color: #5c00ce;
	position: absolute;
	left: 0;
	top: -4px;
}

.contact__address ul li h5 {
    font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact__address ul li p {
    margin-bottom: 0;
}

.contact__address ul li span {
    font-size: 15px;
	color: #111111;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.contact__address ul li span:after {
    position: absolute;
	right: -20px;
	top: -1px;
	content: ".";
	font-size: 39px;
	line-height: 0;
	border-radius: 50%;
}

.contact__address ul li span:last-child {
    margin-right: 0;
}

.contact__address ul li span:last-child:after {
    display: none;
}

.contact__form .section-title {
    margin-bottom: 10px;
}

.contact__form .section-title h2 {
    text-transform: none;
}

.contact__form p {
    margin-bottom: 34px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
    .container {
		max-width: 1170px;
}

}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header__menu ul li {
		margin-right: 18px;
}

.service__item {
    padding: 40px 30px 30px 40px;
}

}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header__right__social {
		display: none;
}

.event .section-title:after {
    width: 560px;
}

.track__pic img {
    height: auto;
}

.footer {
    height: auto;
}

.blog__sidebar {
    padding-top: 50px;
}

.contact__address {
    margin-bottom: 40px;
}

.tours__item__pic {
    margin-bottom: 50px;
}

.tours__item__text {
    padding-right: 0;
}

.countdown {
    padding-bottom: 776px;
}

}

/* Wide Mobile = 480px */

@media only screen and (max-width: 1024px) {
    .hero {
		padding-top: 190px;
		padding-bottom: 200px;
}

.track .p-0 {
    padding: 0 15px !important;
}

.countdown__item {
    margin-right: 0;
		margin-bottom: 30px;
		width: 50%;
		float: left;
}

.header .container {
    position: relative;
}

.slicknav_nav ul {
    margin: 0;
		padding: 5px 0;
}

.slicknav_nav .slicknav_row,
	.slicknav_nav a {
    padding: 10px 28px;
		margin: 0;
}

.slicknav_nav a:hover {
    border-radius: 0;
		background: #5c00ce;
		color: #ffffff;
}

.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
		background: #5c00ce;
		color: #ffffff;
}

}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
    .section-title h1 {
		top: -40px;
		font-size: 79px;
		line-height: 0.8;
}

.hero__text h1 {
    font-size: 70px;
}

.videos {
    padding-bottom: 0;
}

.countdown__text h1 {
    font-size: 50px;
}

.tours__item__text .tours__text__widget ul {
    float: none;
		margin-bottom: 30px;
}

.tours__item__text .tours__text__widget .price {
    float: none;
}

.tours__item__text.tours__item__text--right {
    padding-left: 0;
}

.blog__large__text {
    padding: 30px 20px 0;
}

.blog__large__widget {
    margin: 0;
}

.blog__details__tags a {
    margin-bottom: 10px;
}

}

.about-page .container,
.about-page .header,
.about-page .breadcrumb-option,
.about-page .skills,
.about-page .about,
.about-page .about-pic,
.about-page .footer {
    position: relative;
    z-index: 1;
    color: white;
}

/* Share Button */

.share-dropdown-wrapper {
    position: relative;
  display: inline-block;
}

.share-btn {
    background-color: #f1d600;
    border: none;
    padding: 4px 10px;
    height: 38px;
    line-height: 1;
}

.share-menu {
    position: absolute;
  right: 0;
  margin-top: 10px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
  min-width: 180px;
}

.share-menu a {
    display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.share-menu a:hover {
    background-color: #f0f0f0;
}

.share-menu.show {
    opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
    .share-menu {
    right: auto;
    left: 0;
    min-width: 100%;
}

}


.progress-bar-timer {
    height: 100%;
  width: 0%;
  background-color: #f1d600;
  transition: width 0s;
}

.share-dropdown-container {
    display: flex !important;
  align-items: center !important;
  margin-left: 0 !important;
}

.header__menu ul {
    white-space: nowrap;
}

/* ----------- Mobile-friendly navbar + layout ----------- */

@media (max-width: 1024px) {
    .header__nav,
  .header__menu {
    display: none;
}

@media (max-width: 1024px) {
  .header__menu ul {
    white-space: normal;
  }
}


.mobile-nav {
    display: none;
    background-color: #111;
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.primary-btn {
    font-size: 14px;
    padding: 12px 20px;
}

}

/* ========== HEADER - MOBILE (FINO A 1024px) ========== */
@media (max-width: 1024px) {
    /* Nasconde la navigazione desktop e i social su schermi piccoli */
    .header__nav,
    .header__right__social,
    /* Nascondi anche le altre colonne dell'header se esistono e non sono il logo/menu */
    .header .col-lg-5.col-md-5, /* Colonna della navigazione desktop */
    .header .col-lg-5.col-md-4.d-flex.justify-content-end.align-items-center /* Colonna dei social media */
    {
        display: none !important;
    }

    /* Assicurati che l'header e il suo container/row si comportino correttamente */
    .header {
        position: relative; /* Necessario se il body ha qualche scrollbar o altro che sposta il container */
        min-height: 60px; /* Assicurati un'altezza minima per l'header */
    }

    /* Il container principale dell'header per il mobile, ora gestirà il padding */
    .header .container {
        width: 100%;
        max-width: 100%; /* Assicurati che il container occupi tutta la larghezza */
        padding: 0 15px; /* Aggiungi un padding laterale per i bordi dello schermo */
    }

    /* Rendi il 'row' un contenitore flex per allineare gli elementi al suo interno */
    .header .row {
        display: flex;
        flex-wrap: nowrap; /* Evita che gli elementi vadano a capo */
        align-items: center; /* Centra verticalmente gli elementi */
        /* Non serve justify-content qui, lo gestiremo nella colonna del logo/hamburger */
        width: 100%; /* Assicura che il row sia largo quanto il container */
        margin: 0; /* Rimuovi margini negativi di Bootstrap se presenti */
    }

    /* Rendi la colonna contenente il logo e l'icona hamburger un FLEX CONTAINER */
    .header .col-lg-1.col-md-1 {
        display: flex; /* <-- CHIAVE: Trasforma questa colonna in un contenitore flex */
        justify-content: space-between; /* <-- CHIAVE: Spingi il logo a sinistra e l'icona a destra */
        align-items: center; /* Centra verticalmente il logo e l'icona */
        width: 100%; /* Fai in modo che occupi il 100% della larghezza in mobile */
        max-width: 100%; /* Annulla eventuali limitazioni di Bootstrap */
        flex: 0 0 100%; /* Forza la colonna a prendere il 100% della larghezza e non flettersi */
        padding: 0; /* Rimuovi qualsiasi padding di col-lg-1 che possa causare problemi */
    }

    /* Stili per il logo all'interno della colonna flex */
    .header__logo {
        padding: 8px 0; /* Mantieni il padding esistente per il logo */
        margin: 0; /* Rimuovi eventuali margini */
    }
    .header__logo img {
        max-width: 100%;
        height: auto;
        width: 80px; /* Regola la dimensione del logo per mobile se necessario */
        display: block;
    }

    /* Stili per l'icona del menu hamburger */
    .mobile-menu-icon {
        display: block; /* Assicurati che sia sempre visibile in mobile */
        font-size: 28px;
        color: #fff; /* Colore dell'icona */
        cursor: pointer;
        background-color: transparent !important;
        padding: 0; /* Rimuovi padding */
        margin: 0; /* Rimuovi margin */
        z-index: 1000; /* Assicurati che sia sopra altri elementi */
    }

    /* Stili per il menu laterale mobile (offcanvas) */
    .mobile-offcanvas {
        position: fixed;
        top: 0;
        right: -100%; /* Nascosto a destra */
        width: 260px; /* Larghezza del menu */
        height: 100%;
        background-color: #111;
        color: #fff;
        z-index: 9999;
        padding: 20px;
        transition: right 0.3s ease-in-out;
        display: block;
    }
    .mobile-offcanvas.open {
        right: 0; /* Mostrato */
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .mobile-offcanvas__header {
        text-align: right;
        margin-bottom: 20px;
    }
    .mobile-offcanvas__header span {
        font-size: 24px;
        cursor: pointer;
        color: #fff;
    }
    .mobile-offcanvas__nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-offcanvas__nav li {
        margin-bottom: 10px;
    }
    .mobile-offcanvas__nav li a {
        display: block;
        padding: 10px 0;
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        transition: color 0.3s;
    }
    .mobile-offcanvas__nav li a:hover {
        color: #FFD700; /* Colore giallo per hover */
    }
}

/* Nasconde il mobile menu su desktop, se non è già gestito altrove */
@media (min-width: 1025px) {
    .mobile-menu-icon,
    .mobile-offcanvas {
        display: none !important;
    }
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -100%; /* Nascosto a destra */
    width: 260px; /* Larghezza del menu */
    height: 100%;
    /* Assicurati che il background sia opaco e visibile */
    background-color: #111 !important; /* Forza il colore scuro. Usa !important solo se necessario */
    opacity: 1 !important; /* Assicura che non ci sia opacità. Usa !important solo se necessario */
    color: #fff;
    /* Aumenta lo z-index per sicurezza */
    z-index: 10000 !important; /* Rendilo ancora più alto. Usa !important solo se necessario */
    padding: 20px;
    transition: right 0.3s ease-in-out;
    display: block; /* Mantenere block per il posizionamento fixed */
}

.mobile-offcanvas.open {
    right: 0; /* Mostrato */
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.col-md-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

}

.custom-button {
    background-color: #f1d600;
  color: #111;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  margin: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.custom-button:hover {
    background-color: #111;
  color: #f1d600;
  border: 1px solid #f1d600;
}

.newsletter__form input[type="text"]::placeholder {
    color: #f1d600;
}

.newsletter__form input[type="text"] {
    border: 1px solid #f1d600;
  background: transparent;
  color: #fff;
}

.newsletter__form button {
    background-color: #f1d600;
  color: #111;
  border: none;
  transition: 0.3s ease;
}

.newsletter__form button:hover {
    background-color: #fff;
  color: #111;
}

.footer__social a i,
.footer__contact i,
.footer__contact a {
    color: #f1d600 !important;
}

.footer__social a {
    background-color: #1a1a1a !important; /* grigio molto scuro */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
    background-color: #f1d600; /* giallo al passaggio */
  color: #111;
}

.footer__contact i {
    color: #1a1a1a !important;
}

.contact__address i.fa-envelope,
.footer__address i.fa-envelope {
    background-color: #1a1a1a;
  color: #f1d600 !important;
}

body {
    background: #000000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.footer__newslatter form button:hover {
    background-color: #f1d600;
    color: #111;
}

.footer__address p {
    color: #f1d600;
}

.share-menu.active {
    display: block;
}

.about-img {
    max-width: 400px;
    height: auto;
}

/*ottimizzazioni mobile*/

@media (max-width: 1024px) {
    .section-title h1 {
    font-size: 28px;
}

.custom-button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}

.video__frame iframe {
    height: 250px !important;
}

.section-title {
    margin-bottom: 20px;
}

}

/* dark mode switch */
.theme-toggle {
    margin-left: 15px;
}

.switch {
    position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
    opacity: 0;
  width: 0;
  height: 0;
}

.slider {
    position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
    position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
    background-color: #ffde59;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Allineamento visivo del bottone share */
.share-dropdown-container {
    display: flex;
  align-items: center;
  height: 38px;
}

.share-btn:hover {
    background-color: #d4bf00;
}

#share-btn {
    margin-top: -2px;
}

/* Hover underline effect for social icons */
.header__right__social a {
    position: relative;
  padding-bottom: 4px;
}

.header__logo a:hover img {
    filter: brightness(20%) saturate(100%) sepia(100%) hue-rotate(5deg) brightness(105%) contrast(105%);
}

/* === CLEAN LIGHT MODE === */
body.light {
    background-color: #f9f9f9;
  color: #111;
}

body.light .about-preview .about__text {
    background-color: #f9f9f9 !important;
    color: #111 !important;
}

body.light .about-preview .about__text {
    background-color: #f9f9f9 !important;
    color: #111 !important;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


body.light header,
body.light .header,
body.light footer,
body.light .footer,
body.light .footer--normal,
body.light .spad,
body.light .skills__content,
body.light .about__text,
body.light .footer__address,
body.light .footer__newslatter {
    background-color: #f9f9f9 !important;
}

body.light .section-title h1,
body.light .section-title h2,
body.light p,
body.light h1,
body.light h2,
body.light h3,
body.light h4,
body.light h5,
body.light h6,
body.light a {
    color: #111 !important;
}

body.light .footer__social__links a,
body.light .header__right__social a {
    background-color: #f5f5f5 !important;
  color: #111 !important;
}

body.light .footer__social__links a:hover,
body.light .header__right__social a:hover {
    background-color: #f1d600 !important;
  color: #000 !important;
}

body.light .custom-button,
body.light .share-btn,
body.light .site-btn {
    background-color: #f1d600;
  color: #000;
  border: 1px solid #000;
}

body.light .custom-button:hover,
body.light .share-btn:hover,
body.light .site-btn:hover {
    background-color: #000;
  color: #f1d600;
}

body.light .footer__newslatter form input,
body.light .footer__newslatter form button {
    background-color: #f5f5f5;
  color: #111;
}

body.light .footer__newslatter form input::placeholder {
    color: #555;
}

.logo-img {
    display: inline-block;
  width: 100px;
  height: auto;
}

body.light .header__menu ul li a {
    color: #111111;
}

body.light .header__menu ul li a:after {
    background: #111111;
}

/* Migliora posizionamento toggle tema su mobile */
#themeToggle {
    position: fixed;
    top: 16px;
    right: 60px;
    z-index: 10000;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    #themeToggle {
        top: 18px;
        right: 60px;
}

}


@media (max-width: 1024px) {
    .mobile-offcanvas__header span {
    margin-top: 40px;
    font-size: 32px;
}

}

#themeToggle {
    position: fixed;
  top: 16px;
  right: 16px;
  z-index: 99999; /* più alto di tutto */
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* Applichiamo la dimensione direttamente al tag SVG con la nostra classe */
.custom-button .button-icon {
    width: 20px;
  height: 20px;
}

/* ======================================================
   Stile e Animazione Pulsante Overlay (Downloads)
   ====================================================== */

/* Fa svanire il pulsante originale quando si attiva l'animazione */
#original-linktree-button.is-fading-out {
    opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* Stile del pulsante fisso quando è nascosto (stato iniziale) */
.fixed-button {
    position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 998;
  border-radius: 50px; /* Angoli smussati */

  /* Stato iniziale per l'animazione: invisibile, piccolo e spostato */
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7) translateY(50px);
  
  /* Transizione fluida con effetto "elastico" */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease-out;
}

/* Stile per quando il pulsante fisso diventa visibile */
.fixed-button.visible {
    opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0); /* Torna a grandezza normale e in posizione */
}

/* Ottimizzazione per dispositivi mobili */
@media (max-width: 1024px) {
    /* Su schermi piccoli, il pulsante mostra solo l'icona */
  .fixed-button {
    width: 50px;
    height: 50px;
    padding: 0;
    bottom: 80px; 
    right: 15px;
    
    /* Centra l'icona all'interno */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nasconde il testo del pulsante */
  .fixed-button span {
    display: none;
}

/* Aggiusta la dimensione dell'icona */
  .fixed-button .button-icon {
    width: 22px;
    height: 22px;
    margin: 0;
}

}

/* ===================================
   Stile Form Newsletter
   ====================================== */

.newsletter-container {
    /* Impostiamo una larghezza massima simile a quella del form di contatto.
     Puoi aggiustare questo valore se necessario. */
  max-width: 750px; 
  
  /* Centra il contenitore orizzontalmente */
  margin: 0 auto;

  /* Usiamo Flexbox per impilare gli elementi e dare spazio */
  display: flex;
  flex-direction: column; /* Impila gli elementi verticalmente */
  gap: 15px; /* Aggiunge spazio tra l'input e il pulsante */
}

/* Stile per l'input dentro il nostro nuovo contenitore */
.newsletter-container input {
    width: 100%; /* Occupa tutta la larghezza del contenitore */
  height: 50px;
  background: #ffffff;
  border: 1px solid #444444;
  color: #000000;
  font-size: 15px;
  padding: 0 20px;
}

/* Stile per il pulsante dentro il nostro nuovo contenitore */
.newsletter-container button {
    width: 100%; /* Occupa tutta la larghezza del contenitore, come l'input */
}

/* Aggiungiamo una classe 'visible' che useremo con JavaScript per mostrare l'elemento */
    .footer__copyright__text.visible {
    opacity: 1;
      visibility: visible;
}

/* ===================================
   Stile Sezione Downloads
   ====================================== */
.downloads-section .download-list,
.discography-section .download-list {
    max-width: 800px;
  margin: 0 auto;
}

.download-item {
    display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border: 1px solid #444;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.download-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.download-info .download-title {
    color: #ffffff;
  font-weight: 600;
  margin-bottom: 5px;
}

.download-info .download-description {
    color: #999999;
  font-size: 14px;
  margin: 0;
}

.download-button {
    padding: 8px 20px;
  font-size: 14px;
}

/* ===================================
   Stile Schede (Tabs) Discografia
   ====================================== */
.nav-tabs {
    border-bottom: 2px solid #444;
  justify-content: center;
  margin-bottom: 20px;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: 2px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: #999999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: #444;
  color: #ffffff;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
    color: #f1d600;
  background-color: transparent;
  border-color: #444 #444 #121212;
  border-bottom-color: #121212;
}

.tab-content {
    background-color: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border: 1px solid #444;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* Stile per i titoli delle categorie di download */
.download-category-title {
    color: #f1d600; /* Il tuo giallo */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 40px; /* Spazio sopra ogni titolo */
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444; /* Linea di separazione sotto il titolo */
}

/* Rimuove il margine superiore per il primissimo titolo della lista */
.download-category-title:first-child {
    margin-top: 0;
}

/* ===================================
   Stile Pulsanti con Enfasi
   ====================================== */

/* Stile base per i pulsanti secondari */
.custom-button {
    background: transparent;
  color: #f1d600;
  border: 2px solid #f1d600;
  padding: 12px 25px;
  margin: 5px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* Effetto hover per i pulsanti secondari */
.custom-button:hover {
    background: #f1d600;
  color: #111;
  transform: translateY(-2px); /* Leggero sollevamento */
}

/* Stile d'enfasi per il pulsante primario */
.custom-button.is-primary {
    background: #f1d600;
  color: #111;
  border-color: #f1d600;
  /* Leggermente più grande per dargli più importanza */
  padding: 14px 30px; 
  box-shadow: 0px 0px 15px rgba(241, 214, 0, 0.4);
}

/* Effetto hover per il pulsante primario */
.custom-button.is-primary:hover {
    background: #111;
  color: #f1d600;
  border-color: #f1d600;
  box-shadow: 0px 0px 25px rgba(241, 214, 0, 0.6);
  transform: translateY(-2px);
}

/* Aggiustamento per il pulsante Back to Top */
#backToTop {
    bottom: 20px;
}

.contact__form form .input__list {
    display: flex; /* Attiva Flexbox */
  gap: 20px;     /* Crea uno spazio di 20px tra ogni campo */
  margin-bottom: 20px; /* Aggiunge spazio sotto, prima della textarea */
}

.contact__form form .input__list input {
    flex: 1;
  width: 100%;
  
  height: 50px;
  font-size: 13px;
  color: #666666;
  padding-left: 20px;
  border: 1px solid #e1e1e1;
}

/* Stile per l'area di testo del form di contatto */
.contact__form form textarea {
    width: 100%; /* <-- La proprietà chiave per estenderlo */
  height: 120px;
  resize: none;
  margin-bottom: 20px; /* Spazio sotto, prima del pulsante SEND */
  border: 1px solid #e1e1e1;
  padding: 12px 20px;
  font-size: 13px;
  color: #666666;
  font-family: inherit; /* Eredita il font corretto */
}

/* Logica per mostrare l'icona corretta */
/* Di default (dark mode), nascondi il sole */
body:not(.light-mode) #theme-toggle .fa-sun {
    display: none;
}

/* Di default (dark mode), mostra la luna */
body:not(.light-mode) #theme-toggle .fa-moon {
    display: block;
}

/* In light-mode, mostra il sole */
body.light-mode #theme-toggle .fa-sun {
    display: block;
}

/* In light-mode, nascondi la luna */
body.light-mode #theme-toggle .fa-moon {
    display: none;
}

/* === REGOLE PER LA LIGHT MODE === */

body.light-mode {
    background: #f5f5f5; /* Sfondo leggermente grigio invece di bianco puro */
  color: #111111;
}

/* Header, footer e altre sezioni con sfondo scuro ora diventano chiare */
body.light-mode .header,
body.light-mode .footer--normal,
body.light-mode .mobile-offcanvas,
body.light-mode .skills__content {
    background: #ffffff;
  border-bottom-color: #e1e1e1; /* Bordo più visibile per l'header */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Ombra più chiara */
}

/* Testi: la maggior parte dei testi deve diventare scura */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode p,
body.light-mode .header__menu ul li a {
    color: #111111;
}

/* Link e accenti */
body.light-mode a:hover {
    color: #b39b00; /* Un oro più scuro per il contrasto */
}

body.light-mode #theme-toggle,
body.light-mode .header__right__social a,
body.light-mode .mobile-menu-icon {
    color: #111111;
}

/* Pulsanti */
body.light-mode .custom-button.is-primary {
    background: #111;
  color: #fff;
}

body.light-mode .custom-button {
    color: #111;
    border-color: #111;
}



/* ===================================
   Stile e Animazione Pulsante Lingua
   ====================================== */

#lang-switcher-btn .fa-globe {
    font-size: 18px; /* Dimensione dell'icona del globo */
}

/* Definizione dell'animazione di rotazione */
@keyframes spin-globe {
    from { transform: rotate(0deg);
}

to {
    transform: rotate(360deg);
}

}

#lang-switcher-btn.is-switching .fa-globe {
    animation: spin-globe 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#scrollProgress {
    position: absolute; /* si posiziona rispetto all'header */
  bottom: 0;        /* Si attacca al fondo dell'header */
  left: 0;
  height: 4px;
  background: #f1d600;
  width: 0%;        /* La larghezza è sempre controllata da JavaScript */
  z-index: 1000;    /* Un z-index per stare sopra il contenuto dell'header */
}

/* Nasconde l'icona del globo SOLO quando l'easter egg è attivo */
#lang-switcher-btn.is-easter-egg .fa-globe {
    display: none;
}

/* ===================================
   STILE PULSANTI OVERLAY CON EFFETTO BLUR
   ====================================== */

/* --- Pulsante Newsletter --- */
#newsletter-overlay-btn {
    position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Bordo sottile per effetto vetro */
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  transition: all 0.3s ease;

  /* Effetto Vetro Smerigliato (Giallo) */
  background: rgba(255, 225, 1, 0.877);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #111111;
}

#newsletter-overlay-btn:hover {
    transform: scale(1.1);
    background-color: rgba(241, 214, 0, 1); /* Giallo pieno al passaggio del mouse */
}

/* --- Pulsante Tema Dark/Light --- */
#theme-toggle {
    position: fixed;
  bottom: 140px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  
  /* Effetto Vetro Smerigliato (Scuro) */
  background: rgba(30, 30, 30, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

#theme-toggle:hover {
    transform: scale(1.1);
  background: #ffffff;
  color: #111111;
}

/* --- Pulsante Lingua --- */
#lang-switcher-btn {
    position: fixed;
  bottom: 200px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: bold;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 5px;

  /* Effetto Vetro Smerigliato (Scuro) */
  background: rgba(30, 30, 30, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #f1d600;
}

#lang-switcher-btn:hover {
    transform: scale(1.1);
  background-color: #f1d600;
  color: #111;
}

/* TABS - Modalità chiara */
body.light .nav-tabs .nav-link {
    color: #111111 !important;
}

body.light .nav-tabs .nav-link.active,
body.light .nav-tabs .nav-link.active:hover {
    color: #111111 !important;
    border-color: #ccc #ccc transparent;
}

body.light .nav-tabs .nav-link.active {
    border-bottom: 3px solid #111111 !important;
}

body {
  overflow-y: auto !important;
}

@media (max-width: 1024px) {
  .header {
    height: 100px; /* altezza totale visiva */
  }

  .header__logo {
    padding: 5px 0;
  }

  .header__logo img {
    width: 60px; /* riduci la dimensione della logo */
  }

  .mobile-menu-icon {
    font-size: 22px;
    padding: 8px 10px;
  }

  .header .row.align-items-center {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  body {
    padding-top: 60px; /* se usi header con position: fixed */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header__right__social {
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .header__right__social a {
    font-size: 18px;
    height: 36px;
    width: 36px;
  }

  .header .col-lg-5.col-md-4 {
    justify-content: flex-end !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header__menu ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .header__menu ul li {
    margin-right: 16px;
  }

  .header__right__social {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header .row.align-items-center {
    flex-wrap: nowrap;
  }
}

/* ========== BLOCCO CORRETTO DA MANTENERE ========== */

/* ========== HEADER - DESKTOP ========== */
/* VERSIONE CORRETTA */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
}

.header .container { width: 100%; }
.header__logo img { max-height: 50px; width: auto; }
.header__nav { text-align: right; }
.header__menu { display: inline-block; margin-right: 45px; }
.header__menu ul li { list-style: none; display: inline-block; margin-right: 45px; position: relative; }
.header__menu ul li:last-child { margin-right: 0; }
.header__menu ul li a { font-size: 15px; text-transform: uppercase; color: #ffffff; display: block; padding: 6px 0; position: relative; }
.header__menu ul li a:after { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #ffffff; content: ""; transition: all, 0.3s; opacity: 0; }
.header__menu ul li.active a:after, .header__menu ul li:hover a:after { opacity: 1; }
.header__right__social { display: flex; align-items: center; gap: 14px; }
.header__right__social a { font-size: 15px; color: #ffffff; height: 38px; width: 38px; display: flex; align-items: center; justify-content: center; }

/* ========== HEADER - MOBILE (FINO A 1024px) ========== */

.mobile-menu-icon { display: none; }
.mobile-offcanvas { display: none; }

@media (max-width: 1024px) {
  .header__nav, .header__right__social {
    display: none !important;
  }
  
  .header .col-lg-2.col-md-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background-color: transparent !important;
    padding: 0;
    margin: 0;
  }

  .mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background-color: #111;
    color: #fff;
    z-index: 9999;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    display: block;
  }

  .mobile-offcanvas.open {
    right: 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  }

  .mobile-offcanvas__header { text-align: right; margin-bottom: 30px; }
  .mobile-offcanvas__header span { font-size: 30px; cursor: pointer; color: #fff; }
  .mobile-offcanvas__nav { list-style: none; padding: 0; margin: 0; }
  .mobile-offcanvas__nav li { margin-bottom: 20px; }
  .mobile-offcanvas__nav a { color: #fff; font-size: 18px; text-decoration: none; }
  .mobile-offcanvas__nav a:hover { color: #f1d600; }
}

/* ======================================================
   FIX DEFINITIVO PER ALLINEAMENTO HEADER DESKTOP
   ====================================================== */
.header > .container > .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.spacer {
  height: 100px; /* Imposta l'altezza desiderata per lo spazio */
}




