/***************x***************/
/************ RESET ************/
/*******************************/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
:target {
    scroll-margin-top: var(--header-h);
}
body, html {
    height: 100%;
    width: 100%;
    /* min-height: 100vh; */
    min-height: 100dvh; 
    font-family: var(--font-body);
    font-weight: var(--weight-reg);
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.6;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none !important;
    z-index: -1;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.text-xs {
    font-size: 0.75rem !important; /* Smaller than standard .small */
}
/***************x***************/
/********** VARIBLES ***********/
/*******************************/
:root {
    --active-color: #D97031;  /* Terracotta */
    --text-main: #0D1E3D;    /* Midnight Blue for the text */
    --text-muted: #9CA3AF;   /* Even Duller (Gray 400) for Footer/Secondary */
    --bg-light: #f4f4f2;     /* A sophisticated "Bone" white */
    --bg-med: #212E4A;      /* a lighter Midnight blue */
    --bg-dark: #0D1E3D;     /* Midnight blue */
    --terracotta: #D97031;   /* Primary Title & Brand */
    --header-h: 120px; /* Default for Desktop */
    --accent-color: #937351;  /* gold */
    /* Font Families */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Weights */
    --weight-reg: 400;
    --weight-med: 500;
    --weight-bold: 700;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	--h1-size: clamp(2rem, 5vw, 3rem);
    --h2-size: clamp(1.5rem, 4vw, 2.2rem);
    --h3-size: clamp(1.2rem, 3vw, 1.8rem);
    --h4-size: clamp(1.1rem, 2vw, 1.4rem);
}
@media (max-width: 768px) {
    :root {
        --header-h: 80px;
    }
}
/***************x***************/
/*********** LAYOUT ************/
/*******************************/
main {
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    flex-direction: column;
}
/* Header Logic */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: var(--header-h);
    background-color: #0D1E3D;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .logo img {
        height: calc(var(--header-h) * 0.6);
    }
}
/* Top logo */
.logo-link {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    text-decoration: none;
    vertical-align: middle;
}
.logo-link:hover {
    opacity: 0.85;
    transform: scale(1.03);
}
.logo-link:active {
    transform: scale(0.98);
}
.nav-logo {
    user-select: none;
    -webkit-user-drag: none;
    height: calc(var(--header-h) * 0.7); 
    width: auto;
    display: block;
}
/* Nav */
.nav-group {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-links li {
    position: relative;
    list-style: none;
}
.nav-item {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}
.nav-item:hover {
    color: var(--active-color) !important;
}
#expofeline .active {
    outline: none;
}
#expofeline .nav-item.active {
    color: var(--active-color);
}
#expofeline .dropdown-menu a.active {
    color: var(--active-color);
    font-weight: bold;
    border-bottom: none;
    background: transparent;
}
#expofeline .nav-item.active::after, 
#expofeline .nav-item.active::before {
    content: none;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-med);
    min-width: 100%; 
    width: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
    border: 1px solid #eee;
    white-space: nowrap;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a, 
.dropdown-menu li span.event-link {
    display: block;
    padding: 8px 20px;
    width: 100%;
    box-sizing: border-box; 
    line-height: 1.5;
    white-space: nowrap;
    color: #888;
    text-decoration: none;
}
.dropdown-menu li a:hover {
    color: var(--active-color);
}
#expofeline .dropdown:has(.active) > .nav-item {
    color: var(--active-color);
}
#expofeline .dropdown .nav-item.active {
    color: var(--active-color);
}
@media screen and (max-width: 1050px) {
    .nav-group {
        gap: 20px; 
    }
    .nav-container {
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
    }
    .nav-item {
        font-size: 13px;
        white-space: nowrap;
    }
    .language-picker {
        font-size: 12px;
        gap: 8px;
    }
}
@media (max-width: 991px) {
    /* 1. HEADER E LAYOUT LOGO/LANG/HAMBURGER */
    #expofeline .main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        position: relative;
    }
    #expofeline .lang-picker {
        margin-left: auto; 
        margin-right: 15px;
        display: flex;
        flex-direction: row;
        gap: 8px;
        font-size: 0.75rem;
        order: 2;
    }
    #expofeline .menu-toggle {
        display: flex;
        order: 3;
    }
    #expofeline .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        height: auto;
        z-index: 1000;
        background-color: rgba(13, 30, 61, 0.98);
        padding: 20px 40px;
        border-bottom: 3px solid var(--active-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden; 
    }
    #expofeline .nav-container.open {
        transform: translateX(0);
        visibility: visible;
    }
    #expofeline .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    #expofeline .nav-item {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    #expofeline .nav-links li a.nav-item.active {
        border-bottom: 1px solid var(--active-color);
    }
    #expofeline .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        padding-left: 20px;
        box-shadow: none;
        border: none;
    }
    #expofeline .main-header {
        height: auto;
        min-height: 60px;
        margin-bottom: 0;
        padding-bottom: 10px;
    }
   #expofeline .tab-content, 
    #expofeline main,
    #expofeline .split-left {
        margin-top: 0;
        padding-top: 0!important;
    }
    #expofeline .nav-container {
        margin: 0;
    }
}
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
/* disabled links */
.event-link.standby {
    position: relative;
    display: block; 
    cursor: default;
    color: #888;
    padding: 8px 20px;
}
.event-link.standby:hover:after {
    content: attr(data-label);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #e67e22;
    border: 1px solid #e67e22;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase; 
    white-space: nowrap;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2); 
}
.event-link.standby:hover:before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #e67e22;
    margin-bottom: -12px;
    z-index: 9999;
}
.single-link.standby {
    position: relative;
    display: block; 
    cursor: default;
    color: #888;
}
.single-link.standby:hover:after {
    content: attr(data-label);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #e67e22;
    border: 1px solid #e67e22;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase; 
    white-space: nowrap;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2); 
}
.single-link.standby:hover:before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #e67e22;
    margin-bottom: -12px;
    z-index: 9999;
}
#expofeline .tooltip {
    z-index: 9999;
    pointer-events: none;
}
#expofeline .tooltip.show {
    opacity: 1;
}
.dropdown-menu li span.standby {
    color: #888;
    cursor: default;
    font-style: italic;
}
#expofeline .dropdown-menu .event-link.standby:hover:after,
#expofeline .dropdown-menu .event-link.standby:hover:before {
    left: 50%;
    transform: translateX(calc(-50% + 30px));
}
#expofeline .dropdown-menu li .event-link.standby:hover:after {
    background: #f8f9fa;
    color: #d97031;
    border: 1px solid #d97031;
    left: 50%;
    transform: translateX(calc(-50% + 30px));
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}
#expofeline .dropdown-menu li .event-link.standby:hover:before {
    border-top-color: #d97031;
    left: 50%;
    transform: translateX(calc(-50% + 30px));
}
/* --- HAMBURGER MENU TOGGLE --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    z-index: 1100;
    flex-direction: column;
    gap: 5px; 
    align-items: center;
    justify-content: center;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s ease;
    border-radius: 2px;
}
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* Language picker */
.lang-picker {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}
.no-border {
    border-left: 0;
}
.lang-picker a {
    text-decoration: none;
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.lang-picker a:hover {
    color: #ffffff;
}
.lang-picker a.active {
    color: var(--active-color);
    font-weight: 700;
}
.terracotta {
	color: #D97031;
}
/* Content Logic */
.content-wrapper {
	padding-top: var(--header-h);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    height: calc(100vh - var(--header-h));
    width: 100%;
}
#expofeline .tab-pane.active {
    display: flex;
    flex: 1;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}
.split-left {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    will-change: background-image; 
}
@media screen and (min-width: 992px) {
    .split-right {
		flex: 0 0 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		position: relative;
		overflow: hidden;
    }
    #expofeline .scroll-content {
        flex-grow: 1;
        overflow-y: auto;
        height: 100%;
        padding: 40px;
    }
}
@media screen and (max-width: 991px) {
    #expofeline .split-right {
        height: auto;
        overflow: visible; 
    }
    #expofeline .scroll-content {
        overflow-y: visible;
        height: auto;
        padding: 40px 20px;
    }
}
@media screen and (min-width: 992px) {
    html, body {
        height: 100vh;
        overflow: hidden;
        margin: 0;
    }
    .main-wrapper { 
        display: flex;
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }
    .split-right {
        flex: 0 0 50%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .scroll-content {
        flex: 1;
        overflow-y: auto;
        height: 100%;
        padding: 40px;
    }
}
@media (max-width: 991px) {
	#expofeline .split-left {
        width: 100%;
        height: 70vh;
        flex: 0 0 auto;
        position: relative;
    }
    :root {
        --overlay-offset: 40px; 
    }
    #expofeline .overlay-shift-down {
        bottom: var(--overlay-offset)!important;
		z-index: 500;
    }
    #expofeline .shift-sm { --overlay-offset: -20px; }
    #expofeline .shift-md { --overlay-offset: -50px; }
    #expofeline .shift-lg { --overlay-offset: -80px; }
	:root {
		--padding-top-offset: 40px; 
	}
	#expofeline .dynamic-padding-top {
		padding-top: var(--padding-top-offset) !important;
	}
	#expofeline .pt-shift-xs { --padding-top-offset: 10px; }
	#expofeline .pt-shift-sm { --padding-top-offset: 20px; }
	#expofeline .pt-shift-md { --padding-top-offset: 50px; }
	#expofeline .pt-shift-lg { --padding-top-offset: 80px; }
	#expofeline .pt-shift-xl { --padding-top-offset: 120px; }
	#expofeline .pt-shift-neg { --padding-top-offset: -30px; }
    #expofeline .split-left {
		z-index: 10;
        overflow: visible;
        margin-bottom: 50px;
    }
    #expofeline .split-left.bg-home, .split-left.bg-past-1 {
        margin-bottom: 0;
    }
    #expofeline .menu-toggle {
        z-index: 100000;
        position: relative;
    }
    #expofeline .menu-toggle span,
    #expofeline .menu-toggle span::before,
    #expofeline .menu-toggle span::after {
        background-color: #ffffff;
    }
    #expofeline .nav-container.open .dropdown-menu {
        display: none !important;
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
    }
    #expofeline .dropdown-menu.show-mobile {
        display: block;
        visibility: visible;
        pointer-events: auto;
    }
    #expofeline .dropdown-menu.show-mobile .nav-item,
    #expofeline .dropdown-menu.show-mobile a {
        pointer-events: auto;
        position: relative;
        z-index: 10000;
    }
	#expofeline .nav-container.open .dropdown-menu.show-mobile {
		display: block !important; 
		visibility: visible;
	}
	#expofeline .nav-container.open {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100vw;
        height: auto; 
        max-height: calc(100vh - 60px);
        background-color: #0D1E3D;
        z-index: 9999;
        display: block;
        overflow-y: auto;
        padding: 20px 20px 30px 20px; 
        margin: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        border-radius: 0 0 15px 15px;
        transition: all 0.3s ease-in-out;
    }  
    #expofeline .dropdown-menu.show-mobile {
        display: block;
        padding: 15px 0 10px 5px;
        margin-top: 5px;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }
	#expofeline .nav-container.open ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		/*padding: 0 !important;*/
		margin: 0 !important;
	}
	#expofeline .nav-container.open .nav-item {
		width: 100% !important;
		border-bottom: 1px solid rgba(255,255,255,0.1) !important;
	}
}

/* Individual backgrounds */
.bg-404 {
	background-image: url('../images/generic_404_01.jpg');
}
.bg-home { background-image: url('../images/expofeline-logo.png'); }
	@media (min-width: 820px) and (max-width: 850px) {
		.bg-home {
			background-image: url('../images/expofeline-logo_850.png');
		}
	}
	@media (min-width: 991px) {
		.bg-home {
			background-image: url('../images/expofeline-logo_991.png');
		}
	}
	@media (min-width: 1024px) {
		.bg-home {
			background-image: url('../images/expofeline-logo.png');
		}
	}
	
	
.bg-past-2  { background-image: url('../images/past_moncalieri_2026.jpg'); }
	@media screen and (min-width: 991px) {
		.bg-past-1 {
			background-image: url('../images/past_moncalieri_2026_991.jpg');
		}
	}
	@media screen and (min-width: 1024px) {
		.bg-past-2 {
			background-image: url('../images/past_moncalieri_2026.jpg');
		}
	}	
	
	
	
	
.bg-past-1  { background-image: url('../images/past_vercelli_2025.jpg'); }
	@media screen and (min-width: 991px) {
		.bg-past-1 {
			background-image: url('../images/past_vercelli_2025_991.jpg');
		}
	}
	@media screen and (min-width: 1024px) {
		.bg-past-1 {
			background-image: url('../images/past_vercelli_2025.jpg');
		}
	}
	
	

	
	
	
	
	
.bg-show_01 {
    background-image: url('../images/present_nizza_2026.jpg');
    background-position: center center;
    background-size: cover;
}
@media screen and (max-width: 1024px) {
    .bg-show_01 {
        background-image: url('../images/present_nizza_2026_laptop.jpg');
        background-size: cover;
        background-position: center;
    }
}
.bg-show_02 {
	background-image: url('../images/present_nizza_2026_location.jpg');
}
	@media screen and (min-width: 991px) {
		.bg-show_02 {
			background-image: url('../images/present_nizza_2026_location_991.jpg');
		}
	}
.bg-show_03 {
	background-image: url('../images/generic_hotels_02.jpg');
}
.bg-show_04 {
	background-image: url('../images/generic_program_02.jpg');
}
.bg-show_05 {
	background-image: url('../images/generic_judges_02.jpg');
}
.bg-show_06-it {
	background-image: url('../images/generic_regulations_01_it.jpg');
}
.bg-show_06-en {
	background-image: url('../images/generic_regulations_01_en.jpg');
}
.bg-show_06-fr {
	background-image: url('../images/generic_regulations_01_fr.jpg');
}
.bg-show_07 {
	background-image: url('../images/generic_registration_01.jpg');
}
.bg-show_park {
	background-image: url('../images/generic_parking_01.jpg');
}
.bg-show_08-it {
	background-image: url('../images/generic_dinner_01_it.jpg');
}
.bg-show_08-en {
	background-image: url('../images/generic_dinner_01_en.jpg');
}
.bg-show_08-fr {
	background-image: url('../images/generic_dinner_01_fr.jpg');
}
.bg-show_09 {
	background-image: url('../images/generic_newbies_02.jpg');
}
.bg-show_10 {
	background-image: url('../images/generic_visitors_02.jpg');
}
#expofeline .logos-top-box {
    position: absolute;
    top: 1%; 
    left: 20%;
    width: 60%;
    z-index: 5;
    padding: 10px 20px; 
    border-radius: 8px;
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateZ(0);
    transition: background-color 0.3s ease;
}
#expofeline .logos-top-box.glass-none { 
    background-color: rgba(255, 255, 255, 0.0); 
    border: 1px solid rgba(255, 255, 255, 0.0);
}
#expofeline .logos-top-box.glass-light { 
    background-color: rgba(255, 255, 255, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.6);
}
#expofeline .logos-top-box.glass-medium { 
    background-color: rgba(255, 255, 255, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.8);
}
#expofeline .logos-top-box.glass-heavy { 
    background-color: rgba(255, 255, 255, 0.9); 
    border: 1px solid #ffffff;
}
.logos-top-box {
    position: absolute;
    top: 1%; 
    left: 20%;
    width: 60%;
    z-index: 5;
    padding: 10px 20px; 
    border-radius: 8px;
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateZ(0);
    transition: background-color 0.3s ease;
}
.logos-top-box img {
    width: auto;              
    height: 60px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}
.logos-top-box img:hover {
    filter: grayscale(0%) contrast(3);
}
@media (max-width: 767px) {
    .logos-top-box {
        top: 1%;
        left: 20%;
        padding: 8px 15px;
        gap: 12px;
    }
    .logos-top-box img {
        height: 50px;
        max-width: 80px;
    }
}
#expofeline .overlay-box {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem;
    width: auto;
    min-width: 250px;
    max-width: 45%;
    border-left: 5px solid var(--active-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
	transition: all 0.3s ease;
    text-align: left;
    display: block;
}
#expofeline .overlay-box-cover {
    position: absolute;
    bottom: 3%;
    left: 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: .5rem;
    width: auto;
    min-width: 250px;
    max-width: 45%;
    max-height: 125px;
    border-left: 5px solid var(--active-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
	transition: all 0.3s ease;
    text-align: left;
    display: block;
}
#expofeline .overlay-box h4.small-caps {
    text-align: left;
    justify-content: flex-start;
    display: block;
    width: auto;
    margin-left: 0;
}
#expofeline .overlay-box p.text-smaller {
    text-align: left;
}
#expofeline .overlay-box h1.small-caps {
	text-align: left;
	letter-spacing: 0;
}
#expofeline .overlay-box-cover h4.small-caps {
    text-align: left;
    justify-content: flex-start;
    display: block;
    width: auto;
    margin-left: 0;
}
#expofeline .overlay-box-cover p.text-smaller {
    text-align: left;
}
#expofeline .overlay-box-cover h1.small-caps {
	text-align: left;
	letter-spacing: 0;
}
@media screen and (max-width: 1440.98px) { 
    #expofeline .overlay-box { 
        max-width: 65%; 
    }
    #expofeline .overlay-box-cover { 
        max-width: 65%; 
    }
}
#expofeline .overlay-box a {
    color: var(--bg-med);
}
#expofeline .overlay-box a:hover {
    color: var(--active-color);
}
#expofeline .overlay-box-cover a {
    color: var(--bg-med);
}
#expofeline .overlay-box-cover a:hover {
    color: var(--active-color);
}
@media screen and (min-width: 992px) {
	.scroll-content {
		flex: 1 1 auto;
		overflow-y: auto;
		padding: 40px;
	}
	.split-right {
		flex: 0 0 50%;
		height: 100%;
		display: flex;
		flex-direction: column; 
		overflow: hidden;
		position: relative;
	}
}
@media screen and (min-width: 451px) and (max-width: 991px) {
    #expofeline .split-right {
        width: 100%;
        height: auto;
        padding: 40px 0 0 0;
        flex: 1 1 auto;
    }
    #expofeline .scroll-content {
        padding: 40px;
    }
}
@media screen and (max-width: 450px) {
   #expofeline .split-right {
        padding: 40px 0 0 0;
    }
    #expofeline .scroll-content {
        padding: 0;
        margin: 0;
    }
}
@media screen and (max-width: 330px) {
	#expofeline .logos-top-box {
		position: absolute;
		top: 1%; 
		left: 15%;
		width: 70%;
	}
}
.scroll-content {
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) transparent;
}
.scroll-content::-webkit-scrollbar {
    width: 6px;
}
.scroll-content::-webkit-scrollbar-track {
    background: transparent; 
}
.scroll-content::-webkit-scrollbar-thumb {
    background-color: var(--terracotta);
    border-radius: 10px;
}
/* --- FOOTER --- */
#expofeline .sticky-footer {
    flex-shrink: 0;
    min-height: 80px; 
    height: auto !important;
    background: #f9f9f9;
    line-height: 1.3; 
    border-top: 3px solid #eee;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding: 25px 15px 20px; 
    width: 100%;
    color: var(--text-muted);
    font-size: 0.80rem;
    text-align: center; 
    overflow: visible !important; 
    z-index: 4000;
}
.sticky-footer a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.sticky-footer a:hover {
    border-bottom: 1px solid var(--terracotta);
}
#backToTop {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 9999999 !important;
    background-color: #212E4A !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    border: 2px solid white !important;
    font-size: 2rem !important;
    text-decoration: none !important;
    display: flex !important; /* Always active as a layout target */
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    
    /* We manage visibility using ONLY opacity and pointer-events */
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

#backToTop.show-me {
    opacity: 1 !important;
    pointer-events: auto !important;
}
@media (max-width: 991px) {
	#expofeline .content-wrapper {
        height: auto !important; 
        overflow: visible !important;
    }
    #expofeline .tab-pane.active {
        display: block !important; 
        height: auto !important;
        overflow: visible !important;
    }
    #expofeline .split-right {
        height: auto !important;
        overflow: visible !important;
    }
    #expofeline .scroll-content {
        overflow-y: visible !important; 
        height: auto !important;
    }
    .sticky-footer {
        position: relative;
    }

}
@keyframes revealOnScroll {
    from { 
        opacity: 0; 
        visibility: hidden; 
        transform: scale(0.3); /* Starts slightly shrunk */
    }
    to { 
        opacity: 1; 
        visibility: visible; 
        transform: scale(1); /* Scales to normal size as you scroll */
    }
}
/***************x***************/
/********* TYPOGRAPHY **********/
/*******************************/
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
}
h1 {
	font-size: var(--h1-size);
	margin: 20px 0;
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
	letter-spacing: 0.1em; 
}
.h1-style { 
    font-size: var(--h1-size, 2.5rem); 
    font-weight: 500; 
    margin: 20px 0; 
}

.h2-style { 
    font-size: var(--h2-size, 2rem); 
    font-weight: 500; 
}

.h3-style { 
    font-size: var(--h3-size, 1.5rem); 
    font-weight: 500; 
}

.h4-style { 
    font-size: var(--h4-size, 1.2rem); 
    font-weight: 500;
    letter-spacing: 0.1em; 
}
h2.with-underline::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin-top: 10px;
}
.no-ltr-spacing {
    letter-spacing: 0; 
}
,drk-blue {
color: var(--bg-dark);
}
.gold {
	color: #937351;
}
.orange {
    color: var(--terracotta);
}
.small-caps {
    font-variant: small-caps;
    text-transform: none;
}
.underline::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
    margin-top: 8px;
}
.underline-white::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-muted);
    margin-top: 8px;
}
.section-title-accent {
    font-variant: small-caps;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px; 
    display: block; 
    width: 100%;
    margin-bottom: 20px; 
}
.accent-link {
    color: #64B5F6;
    text-decoration: underline;
}
.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}
.gold-title {
    color: var(--accent-color);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
/* --- Responsive Break --- */
.br-desktop, .br-laptop, .br-tablet, .br-phone {
    display: none!important;
}
@media screen and (min-width: 1025px) {
    .br-desktop {
        display: inline;
    }
}
@media screen and (min-width: 931px) and (max-width: 1024px) {
    .br-laptop {
        display: inline;
    }
}
@media screen and (min-width: 768px) and (max-width: 930px) {
    .br-tablet {
        display: inline;
    }
    .main-head {
		text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .br-phone {
        display: inline;
    }
    .main-head {
		text-align: center;
    }
}
/***************x***************/
/********* COMPONENTS **********/
/*******************************/
#expofeline hr, 
#expofeline .divider {
    border: 0;
    border-top: 1px solid #212E4A;
    margin: 2rem 0;
    opacity: 1;
    height: 0;
    clear: both;
}
/***************x***************/
/****** CUSTOM SECTIONS ********/
/*******************************/
/* 404 page */
.error-container {
	font-family: sans-serif;
	line-height: 1.6;
	color: #333;
	padding: 40px;
}
.lang-block {
	margin-bottom: 30px;
}
.lang-block h2 {
	color: #e74c3c;
	margin-bottom: 5px;
	font-size: 1.5rem;
}
.lang-block h3 {
	margin-top: 0;
	font-size: 1.1rem;
	color: #555;
}
.error-link { 
	color: #e74c3c; 
	text-decoration: none; 
	font-weight: bold;
	transition: color 0.3s;
}
.error-link:hover {
	color: #c0392b;
	text-decoration: underline;
}
hr {
	border: 0;
	border-top: 1px solid #eee;
	margin: 20px 0;
}
/* home */
/* carousel */
#expoHeroCarousel  {
	margin-top: 40px;
}
#expoHeroCarousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* hotel */
.info-card-hotel {
    display: flex;         
    align-items: center;   
    gap: 20px;            
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--text-muted)!important;
}
#expofeline .info-card-hotel-2 {
    background: rgba(33, 46, 74, 0.75); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);  
    padding: 30px 15px;
    border-radius: 12px;
    width: 100% !important;
    box-sizing: border-box;
}
#expofeline .hotel-scroll-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 100%;
}
.glass-box {
    background: var(--bg-med);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.hotel-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: center;
}
#expofeline .hotel-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px; 
    width: 100%;
}
#expofeline .hotel-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 0 0 calc(45% - 20px); 
    width: calc(45% - 20px);
    max-width: calc(45% - 20px);
}
.hotel-card:hover {
    transform: translateY(-5px);
}
.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.hotel-grid-container .card-image {
    grid-column: span 1;
    display: flex;
    justify-content: center;
}
.hotel-grid-container .card-image img {
    width: 250px;
    height: 250px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.hotel-grid-container .card-text {
    grid-column: span 2;
}
.hotel-stars {
    color: #FFD700; 
    font-size: 0.8rem;
}
.hotel-grid-container .hotel-distance {
    color: #64B5F6;
    font-weight: 500;
}
.hotel-grid-container .hotel-rates {
    grid-column: span 2;
}
.hotel-grid-container .hotel-policy {
    grid-column: span 1;
}
.hotel-grid-container .hotel-desc {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.3;
}
.hotel-grid .hotel-card {
    background: rgba(255, 255, 255, 0.92); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #2c3e50; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hotel-grid .hotel-card h4 {
    color: #1a237e;
    font-weight: 700;
}
.hotel-grid .hotel-card .hotel-distance {
    color: #546e7a;
}
.hotel-grid .hotel-card .hotel-desc {
    color: #455a64;
    font-size: 0.9rem;
}
.hotel-grid .hotel-pet-fee-free {
    color: #2e7d32; 
    background: rgba(76, 175, 80, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
}
.hotel-grid .hotel-pet-fee {
    color: #d84315;
    background: rgba(216, 67, 21, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
}
.hotel-grid .btn-hotel {
    background: #1a237e;
    color: #ffffff;
    border: none;
    margin-top: 15px;
}
.hotel-grid .btn-hotel:hover {
    background: #3949ab;
    color: #ffffff;
    transform: translateY(-2px);
}
#expofeline .hotel-grid h3 {
    width: 100%;
    text-align: center;
    color: #f39200;
    margin-bottom: 20px;
}
#expofeline .hotel-grid .hotel-header h3.h4-style {
	color: #1a237e; 
}
.btn-hotel {
    display: block;
    text-align: center;
    background: rgba(100, 181, 246, 0.2);
    color: #64B5F6;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(100, 181, 246, 0.3);
}
.btn-hotel:hover {
    background: #64B5F6;
    color: white;
}
@media (max-width: 1199px) {
    .hotel-rates ul {
        display: inline-block;
        text-align: left;
    }
}
@media (max-width: 1050px) {
    #expofeline div.hotel-grid-container {
        grid-template-columns: 1fr;
        display: grid; 
    }
    #expofeline .hotel-grid-container .card-image, 
    #expofeline .hotel-grid-container .card-text {
        grid-column: span 1;
        text-align: center;
    }
    #expofeline div.hotel-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    #expofeline div.hotel-card {
        flex: 0 0 100%;
        width: 90%;
        max-width: 550px;
        margin: 0 auto 20px auto;
	}
    #expofeline .info-card-hotel-2 {
        padding: 40px 10px;
        background: rgba(33, 46, 74, 0.8);
        backdrop-filter: blur(10px);
    }
    #expofeline .info-card-hotel .grid-item .d-flex {
        justify-content: center;
        width: 100%;
    }
}
@media (min-width: 991px) and (max-width: 1023px) {
	#expofeline div.hotel-grid-container {
		display: grid!important;
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
		align-items: center;
	}
	#expofeline .hotel-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
    }
    #expofeline .hotel-card {
        flex: 0 0 calc(50% - 20px) !important;
        width: calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
        box-sizing: border-box;
        min-width: 0 !important; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {
    .hotel-grid-container {
        grid-template-columns: 1fr;
    }
    .hotel-grid-container .grid-item {
        grid-column: span 1;
    }
    #expofeline .hotel-grid {
        display: block !important;
        overflow: visible !important; 
        padding: 20px 0 !important;
    }
    .hotel-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important; 
        align-items: stretch !important;
        scrollbar-width: none;
		padding-left: 20px !important; 
		padding-right: 60px !important;
		gap: 15px !important;
		scroll-snap-type: x mandatory;
		overflow-x: auto !important;
	}
    .hotel-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }
    .hotel-scroll-wrapper::after {
        content: "";
        flex: 0 0 20px;
    }
	#expofeline .hotel-card {
		flex: 0 0 calc(80% - 10px) !important; 
		min-width: 270px !important;
		scroll-snap-align: start; 
		margin: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		box-sizing: border-box !important;
	}
    #expofeline .hotel-policy {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px !important;
    }
}
/* program */
.schedule-day {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.schedule-subtitle {
	color: #3155a3;
	font-weight: bold;
	margin-bottom: 15px;
}
.timeline-simple {
	list-style: none; padding: 0;
}
.timeline-simple li { 
    display: flex; 
    padding: 10px 0; 
    border-bottom: 1px dashed #eee; 
}
.timeline-simple li:last-child {
	border-bottom: none;
}
.timeline-simple .time { 
    min-width: 130px; 
    font-weight: bold; 
    color: #444; 
}
.gala-event {
	background: #fff9e6;
	border-radius: 4px;
	padding: 10px !important;
	border: 1px solid #ffd700 !important;
}
.rules-section {
	padding: 20px;
	background: #f8f9fa; 
	border-radius: 12px;
}
.rules-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-top: 20px; 
}
.rule-box { 
    background: #fff; 
    padding: 15px; 
    border-left: 4px solid #937351; 
    border-radius: 4px; 
}
.rule-box h4 {
	margin-top: 0;
	color: #333;
	}
.rule-box small {
	display: block;
	margin-top: 10px;
	color: #666;
	font-style: italic;
}
@media (max-width: 1050px) {
	#expofeline .schedule-subtitle {
        display: block;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    h3:has(.fa-calendar-day) {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        text-align: center;
        margin-top: 15px;
    }
    .rules-title {
        display: block;
        text-align: center;
        width: 100%;
        margin: 20px auto;
        font-size: 1.6rem;
    }
}
/** judges **/
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
#expofeline .light-glass-card {
	background: rgba(255, 255, 255, 0.4);
	-webkit-backdrop-filter: blur(10px) saturate(150%);
	backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1); 
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.3s ease; 
    flex: 0 0 calc(50% - 30px) !important;
    max-width: calc(50% - 30px) !important;
    width: calc(50% - 30px) !important;
}
.light-glass-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.light-glass-card:hover img {
	filter: grayscale(0%);
}
.image-container {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.3s ease;
}
.image-container img:hover {
    filter: grayscale(0%);
}
.info {
  padding: 20px;
  text-align: center;
}
.info h3 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: none;
}
.info .role {
  margin: 5px 0 12px;
  font-size: 0.85rem;
  color: var(--bg-med);
  letter-spacing: 1px;
}
.info .bio {
  font-size: 0.85rem;
  color: var( --accent-color);
  line-height: 1.5;
    opacity: 0.8;
    font-style: italic;
    font-weight: 300;
}
.link-staff {
	color: #e74c3c;
	text-decoration: none;
	transition: color 0.3s; 
}
.link-staff:hover {
	color: #c0392b;
	text-decoration: underline;
}
.staff-box {
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 8px;
	background-color: #f9f9f9;
	max-width: 400px;
	margin: 20px auto;
}
.staff-box h3 {
	margin-top: 0;
	color: #333;
	border-bottom: 2px solid #e74c3c;
	padding-bottom: 10px;
}
.staff-box p {
	margin: 10px 0;
}
@media (max-width: 1024px) {
    #expofeline .team-grid .light-glass-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 550px !important;
        margin: 0 auto !important;
    }
    #expofeline .team-grid {
        gap: 20px !important;
        padding: 20px 10px !important;
    }
}
@media (max-width: 991px) {
	#expofeline .team-grid .light-glass-card {
		background: rgba(255, 255, 255, 0.4);
		-webkit-backdrop-filter: blur(10px) saturate(150%);
		backdrop-filter: blur(15px) saturate(150%);
		border: 1px solid rgba(255, 255, 255, 0.5);
		border-radius: 16px;
		box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1); 
		display: flex;
		flex-direction: column;
		overflow: hidden;
		transition: all 0.3s ease; 
		flex: 0 0 calc(50% - 30px) !important;
		max-width: calc(50% - 30px) !important;
		width: calc(50% - 30px) !important;
	}
}
@media (max-width: 800px) {
    .team-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 30px 40px 30px !important;
        gap: 25px !important;
    }
    .team-grid::-webkit-scrollbar {
        display: none;
    }
    .light-glass-card {
        flex: 0 0 85% !important; 
        min-width: 280px !important;
        max-width: 500px !important; 
        scroll-snap-align: center;
        margin: 0 !important;
    }
}
@media (max-width: 650px) {
  .light-glass-card {
    flex: 1 1 100%;
    max-width: 350px;
  }
  .team-grid {
    gap: 20px;
    padding: 20px 10px;
  }
}
@media (max-width: 450px) {
    .team-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0 40px 0 !important; 
        gap: 0 !important; 
        scrollbar-width: none;
    }
    .light-glass-card {
        flex: 0 0 75% !important; 
        width: 75% !important; 
        min-width: 270px !important;
        scroll-snap-align: start !important;
        margin-left: 20px !important; 
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .light-glass-card:last-child {
        margin-right: 20px !important;
    }
}
/* regulations */
.glass-box-2 {
    background: rgba(13, 30, 61, 0.9);
    color: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.mail-alert-container--reg {
    padding: 30px !important;
    margin: 20px auto 40px auto !important;
    text-align: left;
    display: block;
    width: 100%;
}
.alert-flex-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.rules-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0 10px;
}
.email-btn-link {
    color: #64B5F6 !important;
    text-decoration: underline;
    display: inline-block;
    margin: 10px 0;
}
.rules-flex-container, 
.regulations-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.rule-card {
    flex: 1 1 300px;
    max-width: 440px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.rule-card h4 {
    color: var(--terracotta);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.rule-card ul { list-style: none; padding: 0; }
.rule-card li { 
    margin-bottom: 12px; 
    font-size: 0.9rem; 
    position: relative; 
    padding-left: 20px; 
}
.rule-card li::before { 
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    color: var(--active-color); 
    position: absolute; 
    left: 0; 
    font-size: 0.8rem;
}
.reg-card {
    flex: 1 1 280px;
    max-width: 400px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.reg-title {
    font-weight: bold;
    color: var(--bg-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 8px;
}
.reg-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}
@media screen and (max-width: 1050px) {
    #expofeline .alert-flex-layout {
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        text-align: center ;
        gap: 15px ;
    }
    #expofeline .alert-icon {
        font-size: 2.5rem ;
        margin-bottom: 5px ;
    }
    #expofeline .alert-info-text h3.gold-title {
            font-size: 1.4rem;
    }
    #expofeline .alert-info-text {
        width: 100% ;
    }
    #expofeline .date-tag, 
    #expofeline .alert-footer {
        text-align: center ;
        margin-left: auto ;
        margin-right: auto ;
        justify-content: center ;
        display: flex ;
        flex-wrap: wrap ;
    }
    #expofeline .small-caps {
        text-align: center ;
        width: 100%;
    }
}
/* registration */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--text-muted)!important;
}
.promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Safari support */
    color: var(--text-muted) !important;
}
.info-card a {
	color: var(--text-muted)!important;
}
.info-card a:hover {
	color: var(--terracotta)!important;
}
.info-card h4 {
    color: var(--terracotta);
    margin-top: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.side-info-box {
	border: 1px solid #eee;
	padding: 18px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.side-info-box h3 {
	color: #0D1E3D;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.8rem;
	margin-top: 10px;
	letter-spacing: 1px;
}
@media (max-width: 480px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}
.registration-accordion {
    max-width: 900px;
    margin: 30px auto;
}
.reg-item-main {
    margin-bottom: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.reg-trigger {
    width: 100%;
    padding: 25px;
    background: var(--bg-light);
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reg-trigger i {
	font-size: 1.5rem;
	color: var(--terracotta);
}
.reg-trigger span {
	font-weight: bold;
	font-size: 1.1rem;
	color: var(--bg-dark);
	flex-grow: 1;
	text-align: left;
}
.reg-trigger .arrow {
	font-size: 1rem;
	transition: transform 0.3s;
}
.reg-trigger.active {
	background: var(--bg-dark);
}
.reg-trigger.active span, .reg-trigger.active .arrow {
	color: #fff;
}
.reg-trigger.active .arrow {
	transform: rotate(180deg);
}
.reg-content-box {
    display: none; 
    padding: 30px;
    border-top: 1px solid #eee;
}
.reg-content-box.show { display: block; }
.info-content p { margin-bottom: 20px; line-height: 1.6; }

.long-form-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed var(--accent-color);
}
.deadline-warning-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff5f5;
    border-left: 5px solid #ff4d4d;
    color: #cc0000;
    text-align: center;
}
.fees-payment-block {
	max-width: 950px;
	margin: 0 auto;
	/*padding: 20px;*/
}
.expo-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.expo-table th {
	background: var(--bg-dark);
	color: #fff;
	padding: 15px;
	text-align: left;
}
.expo-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #eee;
}
.table-group-header td {
	background: var(--bg-light);
	font-weight: bold;
	color: var(--terracotta);
}
.highlight-row {
	background: rgba(210, 105, 30, 0.05);
	/*
	font-weight: bold;
	*/
}
@media (max-width: 600px) {
    .expo-table td {
        padding: 12px 5px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .expo-table th {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
}
.table-responsive-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
.extra-costs-flex { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
}
.cost-item { 
    flex: 1 1 200px; 
    background: #fff; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
}
.cost-item:not(.accent) {
    flex-direction: column; 
    justify-content: center; 
    text-align: center; 
}
.cost-item:not(.accent) .label {
    margin-bottom: 8px; 
}
.cost-item.accent { 
    justify-content: space-between;
    border-color: var(--active-color); 
    background: rgba(0,255,0,0.02); 
}
.price { 
    font-weight: bold; 
    color: var(--terracotta); 
}
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px; 
    margin-top: 30px;
    width: 100%;
}
.btn-expo {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    font-size: 0.95rem;
}
.btn-expo.primary {
    background-color: #C04000;
    color: white !important;
    box-shadow: 0 4px 15px rgba(192, 64, 0, 0.3);
}
.btn-expo.primary:hover {
    background-color: #e64d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 64, 0, 0.4);
}
.btn-expo i {
    margin-left: 8px;
    font-size: 0.85em;
}
.payment-details-box {
	background: var(--bg-dark);
	color: #fff;
	padding: 30px;
	border-radius: 12px;
	margin-top: 30px;
}
.bank-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 20px 0;
}
.causale-box {
	background: rgba(255,255,255,0.1);
	padding: 15px;
	border-radius: 6px;
	border-left: 4px solid var(--terracotta);
}
.bank-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
#ibanText {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px !important; 
    letter-spacing: 0.5px; 
    background: rgba(0,0,0,0.2);
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block;
    max-width: 100%;
    word-break: break-all;
}
@media (max-width: 600px) {
	#ibanText {
		font-size: 13px !important; 
	}
	.btn-small {
	/*
		display: inline-block;
		padding: 14px 20px;
		border-radius: 50px; 
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s ease;
		text-align: center;
		*/
		min-width: 180px;
		font-size: 0.85rem;
	}	
}
.copy-icon-btn {
    background: none;
    border: none;
    color: var(--terracotta);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s, transform 0.2s;
}
.copy-icon-btn:hover {
    color: #fff;
    transform: scale(1.1);
}
.copy-feedback {
    display: none;
    background: #28a745; 
    color: #fff !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 9999;
}
.toast-copy {
    position: fixed !important;
    background: #28a745 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 2147483647 !important;
    pointer-events: none;
    display: none;
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.toast-copy.visible {
    display: block !important;
    opacity: 1 !important;
}
.toast-copy::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #28a745 transparent transparent transparent;
}
.toast-copy-fadeout {
    opacity: 0 !important;
    transform: translate(-50%, -120%) !important;
}
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translate(-50%, -80%); 
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -100%); 
    }
}
.bank-info {
    overflow: visible !important;
}
.copy-feedback.active {
    opacity: 1;
}
.copy-action-link {
    background: rgba(192, 64, 0, 0.1);
    border: 1px solid rgba(192, 64, 0, 0.3);
    color: var(--terracotta);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    position: relative;
    vertical-align: middle;
}
.copy-action-link:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}
.copy-action-link i {
    font-size: 0.9rem;
}
.deadline-final-alert {
	text-align: center;
	border: 2px solid #ff4d4d;
	padding: 25px;
	border-radius: 12px;
	margin-top: 30px;
	background: #fff5f5;
}
.deadline-final-alert h4 {
	color: #cc0000;
	margin-bottom: 10px;
}
.urgent {
	color: #cc0000;
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-top: 15px;
}
@media screen and (max-width: 1050px) {
    .payment-details-box {
        text-align: center;
        padding: 25px 15px;
    }
    .payment-details-box h3.gold-title {
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .payment-details-box h3.gold-title i {
        font-size: 2rem;
        margin: 0 0 5px 0;
        display: block;
    }
    .bank-grid, 
    .causale-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    copy-action-link {
        margin: 10px auto 0;
        display: inline-flex;
    }
}
/*
@media (max-width: 768px) {
    .extra-costs-flex { flex-direction: column; }
}
*/
/* Gala dinner */
.gala-intro-banner {
	padding: 40px;
	background: linear-gradient(135deg, #0D1E3D 0%, #1a2e54 100%);
	border-radius: 15px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 30px;
	border-bottom: 3px solid #d2691e;
}
.gala-intro-banner i {
	color: #d2691e;
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.gala-intro-banner h2 {
	font-family: 'Josh', serif;
	font-size: 2rem;
	margin-bottom: 20px;
}
.gala-intro-banner .gala-text {
	max-width: 800px;
	margin: 0 auto;
}
.gala-text .t-1 {
	font-size: 1.1rem;
	line-height: 1.8;
	font-style: italic;
	color: #cbd5e0;
}
.gala-text .t-2 {
	font-size: 1rem;
	margin-top: 15px;
	color: #d2691e;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.gala-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 80%;
    padding: 40px 0;
    margin: 0 auto !important;
}
	@media (min-width: 820px) and (max-width: 1023px) {
		.gala-container {
			width: 100%;
		}
	}
.gala-card {
    background: var(--bg-light);
    border: 1px solid var(--accent-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 30, 61, 0.15);
    position: relative;
}
.gala-header {
    background: var(--bg-dark);
    padding: 30px;
    text-align: center;
}
.gala-header h2 {
    color: var(--terracotta);
    margin-bottom: 0;
    font-size: 1.8rem;
}
.gala-badge {
    background: var(--terracotta);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}
.gala-body {
    padding: 40px;
}
.gala-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}
.gala-info i {
    color: var(--active-color);
    width: 20px;
}
.location-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 35px;
}
a.gala-link {
    color: var(--active-color) !important; 
}
.menu-item {
	margin-bottom: 25px;
	text-align: center;
}

.menu-text {
	font-size: 1.1rem;
	margin: 5px 0;
	display: block;
}

.separator {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #999;
	display: block;
	margin: 5px 0;
}

/* Icon Styling */
.bi-1 {
	color: var(--terracotta);
	font-size: 1.4rem;
	display: block;
	margin-bottom: 8px;
}
.fa {
	color: var(--terracotta);
	font-size: 1rem;
	display: block;
	margin-bottom: 8px;
}
.contorno-note {
	font-size: 0.9rem;
	font-style: italic;
	color: #666;
	margin-top: 5px;
	display: block;
}

@media (max-width: 1050px) {
	.location-detail {
		margin-left: 5px;
	}
}
.gala-menu-status {
    margin-top: 30px;
    padding: 20px;
    background: rgba(217, 112, 49, 0.05);
    border: 1px dashed var(--terracotta);
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.status-icon i {
    font-size: 2rem;
    color: var(--terracotta);
}
.status-text h4 {
    margin: 0;
    color: var(--bg-dark);
    text-transform: none;
}
.status-text p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    font-style: italic;
}
.gala-footer {
    background: #eee;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--bg-dark);
}
@media screen and (max-width: 450px) {
    .gala-menu-status {
        flex-direction: column !important;
        text-align: center; 
        gap: 15px; 
    }
    .status-text p {
        padding: 0 10px;
    }
	.gala-body {
		padding: 10px;
	}
.gala-container {

    width: 95%;
    padding: 5px 0;

}
}
@media (max-width: 767px) {
    .gala-info p.gala-location {
        display: block !important; 
        position: relative;
        padding-left: 35px;
    }
    .gala-info p.gala-location i {
        position: absolute;
        left: 0;
        top: 5px;
        margin: 0 !important;
    }
    .gala-info p.gala-location strong {
        display: block !important;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    .location-detail {
        display: block !important;
        margin-left: 0 !important; 
        line-height: 1.2;
    }
}
.fa-spin-hover:hover {
    animation: fa-spin 2s infinite linear;
}
/* Newbies */
.debut-guide {
	font-family: 'Intra', sans-serif;
	color: #333;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}
.guide-header h2 {
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 1px;
	}
.info-alert {
	display: flex;
	background: #e3f2fd;
	border-left: 5px solid #6B7B99;
	padding: 20px;
	margin: 30px 0;
	border-radius: 4px;
	align-items: center;
}
.alert-icon {
	font-size: 2rem;
	color: #6B7B99;
	margin-right: 20px;
}
.alert-content h4 {
	margin: 0 0 5px 0;
	color: #6B7B99;
}
.checklist-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 25px; 
    margin-bottom: 40px; 
}
.check-card { 
    flex: 1 1 280px;
    max-width: 400px;
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    padding: 25px; 
    transition: transform 0.3s ease; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
}
.check-card:hover {
	transform: translateY(-5px);
}
.card-icon {
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.card-icon.blue {
	color: #2196f3;
}
.card-icon.green {
	color: #4caf50;
}
.card-icon.orange {
	color: #ff9800;
}
.check-card h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
	border-bottom: 2px solid #f8f9fa;
	padding-bottom: 10px;
 }
.check-card ul {
	list-style: none;
	padding: 0;
}
.check-card li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
	font-size: 0.95rem;
}
.check-card li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #4caf50;
}
.cage-dims {
	font-size: 0.85rem;
	background: #f1f8e9;
	color: #33691e;
	padding: 5px 10px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 10px;
}
.staff-tip {
	background: #fff3e0;
	border: 1px dashed #ff9800;
	border-radius: 8px;
	padding: 20px;
	position: relative;
}
.welcome-footer {
	margin-top: 50px;
	padding: 30px;
	background: #f8f9fa;
	border-radius: 12px;
 }
.btn-contact {
	display: inline-block;
	background: #2c3e50;
	color: #fff;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	margin-top: 15px;
}
/* visitors */
.info-highlight-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
    margin-bottom: 40px; 
}
.info-card-visit, .info-card { 
    background: #fdfdfd; 
    border: 1px solid #eee; 
    padding: 25px; 
    border-radius: 15px; 
    text-align: center; 
}
.free-access-centered {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
@media (max-width: 450px) {
	.free-access-centered {
		padding: 20px 5px;
	}
	.free-access-centered h4 {
		font-size: 1.0rem;
	}
}
.free-access-centered h4 {
    color: var(--active-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}
.free-list-centered {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}
.free-list-centered li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
}
.free-list-centered li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--active-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}
.terracotta-divider {
    width: 30%;
    border: 0;
    height: 2px;
    background-color: #C04000;
    margin:  30px auto 15px auto;
    opacity: 1;
    border-radius: 2px; 
}
hr.terracotta-divider {
    width: 30%;
    border: 0!important;
    height: 2px!important;
    background-color: #C04000!important;
    margin:  30px auto 15px auto!important;
    opacity: 1!important;
    border-radius: 2px; 
}
.expo-intro {
	padding: 60px 20px;
	background: #fff;
}
.intro-container {
	max-width: 900px;
	margin: 0 auto;
}
.badge-date { 
    background: #e67e22; color: #fff; padding: 5px 15px; 
    border-radius: 20px; font-weight: bold; text-transform: uppercase; 
}
@media (max-width: 767px) {
    .info-highlight-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
}
.icon-main {
	font-size: 2rem;
	color: #e67e22;
	margin-bottom: 15px;
 }
 @media screen and (max-width: 1050px) {
    .food-icon-container {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    .food-icon-container i {
        font-size: 2rem;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
   .intro-footer p {
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
}
.ticket-box { 
    background: #2c3e50; color: #fff; padding: 40px; 
    border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.ticket-title {
	text-align: center;
	margin-bottom: 30px;
	font-weight: 300;
}
.ticket-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}
.ticket-item {
	text-align: center;
	flex: 1;
	min-width: 150px;
}
.ticket-item .label {
	display: block;
	font-size: 1rem;
	opacity: 0.8;
}
.ticket-item .price {
	font-size: 2rem;
	font-weight: bold;
}
.ticket-item.featured {
	border: 2px solid #e67e22;
	padding: 10px; border-radius: 10px;
}
.free-access {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.9rem;
}
.free-access h4 {
	color: #e67e22;
	margin-bottom: 5px;
}
.disclaimer-box { 
    margin-top: 30px; background: #fff5f5; border: 1px solid #feb2b2; 
    padding: 15px; border-radius: 10px; color: #c53030; text-align: center; 
}
.intro-footer {
	margin-top: 40px;
	font-style: italic;
	color: #777;
}
/* --- MAP --- */
#map-venue {
    height: 500px;
    width: 100%;
    display: block !important;
}
.map-container-wrapper {
    position: relative; 
    width: 100%;
}
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    width: 250px;
    border-left: 4px solid var(--terracotta);
}
.map-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.map-marker-label {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
    transform: translateY(-25px);
}
/* -- gallery -- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 2px;
    padding: 0 !important;
    background: none !important;
}
.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    margin: 0;
}
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100.2%;
    height: 100.2%;
    object-fit: cover !important;
    display: block;
    border: none !important;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(178, 34, 34, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 2;
}
.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
@media (max-width: 1024px) {
    .gallery-overlay {
        display: none !important; 
    }
    .gallery-item:active img {
        opacity: 0.6;
        transform: scale(0.98);
        transition: 0.1s;
    }
}
@media (max-width: 992px) {
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 180px; 
    }
}
@media (max-width: 576px) {
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        grid-auto-rows: 150px !important;
        gap: 4px !important;
        padding: 4px !important;
    }
    .gallery-item:nth-child(5n+1) {
        grid-column: span 2;
        grid-row: span 2;
        height: 300px;
    }
}
.gcontainer {
    z-index: 9999 !important;
}
.generic-overlay-container-wrapper {
    position: relative; 
    width: 100%;
}
.generic-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    width: 350px;
    border-left: 4px solid var(--terracotta);
}
@media only screen and (max-width: 1050px) and (min-width: 900px)  {
	.generic-overlay-container-wrapper {
		margin-bottom: 70px;
	}
	.generic-overlay {
		bottom: -20px;
	}
}
@media only screen and (max-width: 450px)  {
	.generic-overlay-container-wrapper {
		margin-bottom: 70px;
	}
	.generic-overlay {
		bottom: -35px;
		left: 5px;
	}
}
/***************x***************/
/****** MODALS & MISC **********/
/*******************************/
/* -- modal -- */
.modal {
    z-index: 2000 !important;
}
.modal-backdrop {
    z-index: 1950 !important;
}
.modal-header {
    background-color: var(--bg-med);
    color: white;
    border-bottom: 3px solid var(--accent-color);
}
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.modal-body h3 {
	text-transform: none;
    font-variant: small-caps;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    margin-top: 20px;
}
.modal-body a {
	color: var(--terracotta);
}
.modal-body a:hover {
	color: var(--accent-color);
}
/* share buttons */
.share-btn {
    width: 38px; 
    height: 38px; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    font-size: 1rem; 
    transition: all 0.3s ease;
    border: none;
    cursor: pointer; 
}
.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.fb { background-color: #1877F2; }
.x-social { background-color: #000000; }
.tg { background-color: #0088cc; }
.li { background-color: #0077b5; }
.pin { background-color: #bd081c; }
.native { background-color: #6c757d; }
#nativeShare { display: none; }
@media (max-width: 992px) {
    #nativeShare { display: flex; }
}
#copyFeedback-1 {
	display:none;
	position:absolute;
	background:#333;
	color:#fff;
	padding:5px 10px;
	border-radius:5px;
	font-size:0.8rem;
	margin-top:-40px;
}
/***************x****************/
/******** RESPONSIVE ***********/
/*******************************/
@media (max-width: 1050px) {
    .laptop-break::before {
        content: "\A" !important;
        white-space: pre-wrap !important;
        display: inline !important;
    }
    .laptop-break {
        display: inline !important;
        line-height: 0 !important;
        content: "" !important;
    }
	.hide-laptop {
		display: none;
	}
}
@media screen and (max-width: 991px) {
    .alert-flex-layout, 
    .bank-grid,
    .hotel-container,
    .registration-step-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .icon-main,
    .food-icon-container {
        margin-bottom: 20px !important;
    }
}
@media (max-width: 767px) {
    .mobile-padding {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box; 
    }
}