* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #0d0d0d;
color: #f5f5f5;
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
} .header {
background: transparent;
backdrop-filter: none;
position: fixed;
top: 0;
width: 100%;
z-index: 100;
border-bottom: 1px solid transparent;
box-shadow: none;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
background 0.3s ease,
border-bottom 0.3s ease,
box-shadow 0.3s ease;
} .header.header-hidden {
transform: translateY(-100%);
} .header.header-visible {
transform: translateY(0);
} .header.scrolled {
background: rgba(13, 13, 13, 0.92);
backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 
0 1px 0 rgba(224, 185, 74, 0.1);
}
.container {
max-width: 1300px;
margin: 0 auto;
padding: 0.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
} .logo {
font-size: 1.3rem;
font-weight: 600;
color: #e0b94a;
letter-spacing: 2px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.4s ease;
position: relative;
text-shadow: 0 0 10px rgba(224, 185, 74, 0.3);
}
.logo:hover {
color: #f4d56f;
text-shadow: 
0 0 5px rgba(224, 185, 74, 0.8),
0 0 10px rgba(224, 185, 74, 0.6),
0 0 20px rgba(224, 185, 74, 0.5),
0 0 40px rgba(224, 185, 74, 0.3);
transform: scale(1.02);
} .nav-menu {
display: flex;
gap: 0.3rem;
align-items: center;
}
.nav-menu > li {
position: relative;
}
.nav-menu > li > a {
position: relative;
font-weight: 400;
font-size: 0.9rem;
color: #f5f5f5;
letter-spacing: 0.5px;
padding: 0.5rem 0.9rem;
display: inline-block;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 8px;
white-space: nowrap;
} .nav-menu > li > a:hover {
color: #e0b94a;
background: rgba(224, 185, 74, 0.08);
text-shadow: 
0 0 5px rgba(224, 185, 74, 0.8),
0 0 10px rgba(224, 185, 74, 0.5),
0 0 15px rgba(224, 185, 74, 0.3);
box-shadow: 
0 0 15px rgba(224, 185, 74, 0.2),
inset 0 0 10px rgba(224, 185, 74, 0.1);
transform: translateY(-2px);
} .nav-menu > li > a::before {
content: '';
position: absolute;
inset: 0;
border-radius: 8px;
padding: 1px;
background: linear-gradient(135deg, transparent, #e0b94a, transparent);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: opacity 0.4s ease;
}
.nav-menu > li > a:hover::before {
opacity: 1;
} .has-submenu {
position: relative;
}
.submenu {
position: absolute;
top: calc(100% + 12px);
left: 50%;
transform: translateX(-50%) translateY(10px);
background: rgba(20, 20, 20, 0.96);
backdrop-filter: blur(25px) saturate(180%);
min-width: 220px;
border-radius: 12px;
padding: 0.8rem 0;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(224, 185, 74, 0.3);
box-shadow: 
0 12px 40px rgba(0, 0, 0, 0.8),
0 0 20px rgba(224, 185, 74, 0.15),
inset 0 1px 0 rgba(224, 185, 74, 0.1);
} .submenu::before {
content: '';
position: absolute;
top: -6px;
left: 50%;
transform: translateX(-50%);
width: 12px;
height: 12px;
background: rgba(20, 20, 20, 0.96);
backdrop-filter: blur(25px);
border: 1px solid rgba(224, 185, 74, 0.3);
border-bottom: none;
border-right: none;
transform: translateX(-50%) rotate(45deg);
box-shadow: 0 0 10px rgba(224, 185, 74, 0.2);
} .submenu::after {
content: '';
position: absolute;
top: 0;
left: 10%;
width: 80%;
height: 1px;
background: linear-gradient(90deg, transparent, #e0b94a, transparent);
box-shadow: 0 0 8px rgba(224, 185, 74, 0.6);
}
.submenu li {
padding: 0.4rem 1.2rem;
position: relative;
} .submenu li::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%) scaleX(0);
width: 3px;
height: 70%;
background: #e0b94a;
border-radius: 0 3px 3px 0;
transition: transform 0.3s ease;
transform-origin: left;
box-shadow: 
0 0 5px rgba(224, 185, 74, 0.8),
0 0 10px rgba(224, 185, 74, 0.5);
}
.submenu li:hover::before {
transform: translateY(-50%) scaleX(1);
} .submenu li::after {
content: '';
position: absolute;
inset: 0;
background: rgba(224, 185, 74, 0.05);
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 6px;
}
.submenu li:hover::after {
opacity: 1;
}
.submenu li a {
display: block;
color: #dcdcdc;
font-weight: 300;
font-size: 0.9rem;
padding: 0.5rem 0;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}
.submenu li a:hover {
color: #e0b94a;
transform: translateX(8px);
text-shadow: 
0 0 5px rgba(224, 185, 74, 0.6),
0 0 10px rgba(224, 185, 74, 0.4);
} .has-submenu:hover .submenu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
} .menu-toggle {
display: none;
cursor: pointer;
width: 30px;
height: 25px;
position: relative;
z-index: 200;
}
.menu-toggle .bar {
position: relative;
width: 26px;
height: 2.5px;
background: #e0b94a;
border-radius: 2px;
transition: background 0.22s ease;
box-shadow: 0 0 8px rgba(224, 185, 74, 0.5);
}
.menu-toggle .bar::before,
.menu-toggle .bar::after {
content: "";
position: absolute;
left: 0;
width: 26px;
height: 2.5px;
background: #e0b94a;
border-radius: 2px;
transform-origin: 50% 50%;
box-shadow: 0 0 8px rgba(224, 185, 74, 0.5);
transition: transform 0.35s ease, top 0.35s ease, bottom 0.35s ease;
}
.menu-toggle .bar::before { top: -7px; }
.menu-toggle .bar::after  { bottom: -7px; }
.menu-toggle.active .bar { background: transparent; box-shadow: none; }
.menu-toggle.active .bar::before,
.menu-toggle.active .bar::after { 
top: 0; 
bottom: auto;
box-shadow: 0 0 10px rgba(224, 185, 74, 0.8);
}
.menu-toggle.active .bar::before { transform: rotate(45deg); }
.menu-toggle.active .bar::after  { transform: rotate(-45deg); } .social-links-desktop {
display: flex;
gap: 1rem;
align-items: center;
}
.social-links-desktop .social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(224, 185, 74, 0.08);
color: #e0b94a;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(224, 185, 74, 0.2);
position: relative;
overflow: hidden;
}
.social-links-desktop .social-icon::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle, rgba(224, 185, 74, 0.2), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.social-links-desktop .social-icon:hover {
background: rgba(224, 185, 74, 0.15);
border-color: rgba(224, 185, 74, 0.5);
transform: translateY(-3px) scale(1.05);
box-shadow: 
0 0 20px rgba(224, 185, 74, 0.3),
0 5px 15px rgba(0, 0, 0, 0.4);
}
.social-links-desktop .social-icon:hover::before {
opacity: 1;
}
.social-links-desktop .social-icon svg {
position: relative;
z-index: 1;
filter: drop-shadow(0 0 5px rgba(224, 185, 74, 0.3));
transition: filter 0.3s ease;
}
.social-links-desktop .social-icon:hover svg {
filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.6));
} .social-links-mobile {
display: none;
} .arrow {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
margin-left: 4px;
} @media (min-width: 1025px) {
.has-submenu:hover .arrow {
transform: rotate(180deg);
}
.social-links-mobile {
display: none !important;
}
} @media (max-width: 1024px) {
.menu-toggle {
display: flex;
justify-content: center;
align-items: center;
}
.social-links-desktop {
display: none;
} .navbar {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100vh;
height: 100dvh;
background: 
radial-gradient(ellipse at top, rgba(224, 185, 74, 0.08), transparent 60%),
linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.99));
backdrop-filter: blur(30px) saturate(150%);
z-index: 150;
transition: left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
}
.navbar.active {
left: 0;
} .nav-menu {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
gap: 0.3rem;
padding: 4rem 1.5rem 1rem;
min-height: 0;
}
.nav-menu > li {
width: 85%;
max-width: 400px;
opacity: 0;
transform: translateX(-30px);
animation: slideInMobile 0.6s ease forwards;
position: static;
z-index: auto;
}
.nav-menu > li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu > li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu > li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu > li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu > li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu > li:nth-child(6) { animation-delay: 0.35s; }
@keyframes slideInMobile {
to {
opacity: 1;
transform: translateX(0);
}
}
.nav-menu > li > a {
display: block;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1.2px;
padding: 0.8rem 1.2rem;
text-align: center;
white-space: normal;
color: #f5f5f5;
background: transparent;
border: none;
border-radius: 15px;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1;
}
.nav-menu > li > a::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.15), transparent);
transition: left 0.5s ease;
}
.nav-menu > li > a:active::after {
left: 100%;
}
.nav-menu > li > a::before {
display: none;
}
.nav-menu > li > a:active {
color: #e0b94a;
background: transparent;
border: none;
text-shadow: 
0 0 15px rgba(224, 185, 74, 0.8),
0 0 25px rgba(224, 185, 74, 0.4);
transform: scale(1.05);
}
.has-submenu {
position: static !important;
}
.has-submenu > a {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.arrow {
font-size: 0.9rem;
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.6));
transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.has-submenu.active .arrow {
transform: rotate(180deg);
} .submenu {
position: static !important;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.12), rgba(224, 185, 74, 0.08));
border-radius: 10px;
padding: 0;
margin-top: 0.5rem;
border: 0 solid rgba(224, 185, 74, 0.35);
box-shadow: 
0 0 30px rgba(224, 185, 74, 0),
inset 0 2px 10px rgba(224, 185, 74, 0);
opacity: 0;
visibility: visible !important;
transform: none !important;
z-index: auto;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
opacity 0.4s ease,
padding 0.4s ease,
border-width 0.4s ease,
box-shadow 0.4s ease;
}
.submenu::before,
.submenu::after {
display: none !important;
}
.has-submenu.active .submenu {
opacity: 1;
max-height: 400px;
padding: 0.5rem;
border-width: 1px;
box-shadow: 
0 0 30px rgba(224, 185, 74, 0.2),
inset 0 2px 10px rgba(224, 185, 74, 0.1);
}
.submenu li {
padding: 0;
margin: 0.3rem 0;
list-style: none;
position: static;
}
.submenu li:first-child {
margin-top: 0;
}
.submenu li:last-child {
margin-bottom: 0;
}
.submenu li::before,
.submenu li::after {
display: none !important;
}
.submenu li a {
display: block;
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.8px;
color: #f0f0f0;
padding: 0.6rem 0.8rem; border-radius: 8px;
text-align: center;
transition: all 0.3s ease; }
.submenu li a:active {
color: #e0b94a;
background: rgba(224, 185, 74, 0.15);
border-color: rgba(224, 185, 74, 0.5);
text-shadow: 0 0 12px rgba(224, 185, 74, 0.8);
transform: scale(1.02);
box-shadow: 
0 4px 20px rgba(224, 185, 74, 0.3),
0 0 30px rgba(224, 185, 74, 0.2);
} .social-links-mobile {
display: flex !important;
justify-content: center;
align-items: center;
gap: 1.5rem;
padding: 1.2rem 1.5rem;
padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
width: 100%; flex-shrink: 0;
opacity: 0;
animation: fadeInSocial 0.8s ease forwards;
animation-delay: 0.5s;
}
@keyframes fadeInSocial {
to {
opacity: 1;
}
}
.social-links-mobile .social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
color: #e0b94a;
border: 1px solid rgba(224, 185, 74, 0.3);
transition: all 0.3s ease;
box-shadow: 
0 4px 15px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-links-mobile .social-icon:active {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.25), rgba(224, 185, 74, 0.15));
border-color: rgba(224, 185, 74, 0.6);
transform: scale(0.95);
box-shadow: 
0 0 25px rgba(224, 185, 74, 0.4),
0 2px 10px rgba(0, 0, 0, 0.4),
inset 0 2px 10px rgba(224, 185, 74, 0.2);
}
.social-links-mobile .social-icon svg {
width: 22px;
height: 22px;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}
.social-links-mobile .social-icon:active svg {
filter: drop-shadow(0 0 12px rgba(224, 185, 74, 0.8));
}
.navbar::-webkit-scrollbar {
width: 8px;
}
.navbar::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.3);
}
.navbar::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #e0b94a, rgba(224, 185, 74, 0.6));
border-radius: 10px;
box-shadow: 0 0 15px rgba(224, 185, 74, 0.6);
}
.navbar::-webkit-scrollbar-thumb:active {
background: #e0b94a;
box-shadow: 0 0 25px rgba(224, 185, 74, 0.9);
}
} @media (min-width: 768px) and (max-width: 1024px) {
.container {
padding: 0.5rem 2.5rem;
}
.logo {
font-size: 1.25rem;
}
.nav-menu > li {
max-width: 500px;
}
.nav-menu > li > a {
font-size: 1.1rem;
padding: 1rem 1.5rem;
}
.submenu li a {
font-size: 0.95rem;
padding: 0.75rem 1rem;
}
.social-links-mobile .social-icon {
width: 50px;
height: 50px;
}
.social-links-mobile .social-icon svg {
width: 24px;
height: 24px;
}
} .hero-carousel {
position: relative;
width: 100%;
height: 100vh;
height: 100dvh;
overflow: hidden;
min-height: 650px;
}
.hero-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
z-index: 1;
}
.hero-slide.active {
opacity: 1;
visibility: visible;
z-index: 2;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
transform: scale(1);
transition: transform 8s ease-out;
}
.hero-slide.active .hero-bg {
transform: scale(1.08);
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
135deg,
rgba(13, 13, 13, 0.75) 0%,
rgba(13, 13, 13, 0.5) 50%,
rgba(13, 13, 13, 0.75) 100%
);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 3;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 5rem 2rem 12rem;
max-width: 1300px;
margin: 0 auto;
}
.hero-label {
display: inline-block;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: #e0b94a;
margin-bottom: 1.5rem;
opacity: 0;
transform: translateY(30px);
text-shadow: 0 0 20px rgba(224, 185, 74, 0.5);
}
.hero-slide.active .hero-label {
animation: fadeInUp 0.8s ease forwards 0.3s;
}
.hero-title {
font-size: clamp(2.5rem, 8vw, 6rem);
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: #f5f5f5;
margin-bottom: 1.5rem;
line-height: 1.1;
opacity: 0;
transform: translateY(30px);
background: linear-gradient(135deg, #f5f5f5, #e0b94a, #f5f5f5);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-slide.active .hero-title {
animation: fadeInUp 0.8s ease forwards 0.5s, shimmer 10s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.hero-description {
font-size: clamp(0.95rem, 2vw, 1.3rem);
font-weight: 300;
letter-spacing: 0.5px;
color: #dcdcdc;
margin-bottom: 2.5rem;
max-width: 700px;
line-height: 1.7;
opacity: 0;
transform: translateY(30px);
}
.hero-slide.active .hero-description {
animation: fadeInUp 0.8s ease forwards 0.7s;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
} .hero-cta {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
opacity: 0;
transform: translateY(30px);
}
.hero-slide.active .hero-cta {
animation: fadeInUp 0.8s ease forwards 0.9s;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 2.5rem;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
border-radius: 50px;
border: 2px solid;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
z-index: 1;
}
.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
z-index: -1;
}
@media (min-width: 1025px) {
.btn:hover::before {
width: 400px;
height: 400px;
}
}
.btn svg {
transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
.btn:hover svg {
transform: translateX(5px);
}
}
.btn-primary {
background: linear-gradient(135deg, #e0b94a, #f4d56f);
border-color: #e0b94a;
color: #0d0d0d;
box-shadow: 
0 8px 25px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary::before {
background: #0d0d0d;
}
@media (min-width: 1025px) {
.btn-primary:hover {
color: #e0b94a;
border-color: #e0b94a;
box-shadow: 
0 12px 40px rgba(224, 185, 74, 0.5),
0 0 60px rgba(224, 185, 74, 0.3),
inset 0 0 20px rgba(224, 185, 74, 0.2);
transform: translateY(-3px);
}
}
.btn-secondary {
background: transparent;
border-color: rgba(224, 185, 74, 0.5);
color: #f5f5f5;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.btn-secondary::before {
background: rgba(224, 185, 74, 0.15);
}
@media (min-width: 1025px) {
.btn-secondary:hover {
border-color: #e0b94a;
box-shadow: 
0 8px 30px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2),
inset 0 0 20px rgba(224, 185, 74, 0.1);
transform: translateY(-3px);
text-shadow: 0 0 10px rgba(224, 185, 74, 0.5);
}
} .hero-nav {
position: absolute;
bottom: 3rem;
bottom: max(3rem, env(safe-area-inset-bottom, 1rem) + 1.5rem);
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
z-index: 10;
}
.hero-nav-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 1.5rem;
width: 180px;
background: rgba(20, 20, 20, 0.8);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.hero-nav-btn::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0;
background: linear-gradient(180deg, transparent, rgba(224, 185, 74, 0.2));
transition: height 0.3s ease;
}
.hero-nav-btn:hover::before,
.hero-nav-btn.active::before {
height: 100%;
}
.nav-icon {
width: 32px;
height: 32px;
color: #e0b94a;
transition: all 0.3s ease;
filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
}
.nav-label {
font-size: 0.75rem;
font-weight: 400;
letter-spacing: 1px;
text-transform: uppercase;
color: #dcdcdc;
transition: all 0.3s ease;
text-align: center;
}
.hero-nav-btn:hover,
.hero-nav-btn.active {
border-color: rgba(224, 185, 74, 0.6);
box-shadow: 
0 8px 30px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2);
transform: translateY(-3px);
}
.hero-nav-btn:hover .nav-icon,
.hero-nav-btn.active .nav-icon {
transform: scale(1.15);
filter: drop-shadow(0 0 20px rgba(224, 185, 74, 0.8));
}
.hero-nav-btn:hover .nav-label,
.hero-nav-btn.active .nav-label {
color: #e0b94a;
text-shadow: 0 0 10px rgba(224, 185, 74, 0.6);
} .hero-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 60px;
height: 60px;
background: rgba(20, 20, 20, 0.7);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
color: #e0b94a;
}
.hero-arrow:hover {
background: rgba(224, 185, 74, 0.15);
border-color: rgba(224, 185, 74, 0.6);
box-shadow: 
0 8px 30px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2);
transform: translateY(-50%) scale(1.1);
}
.hero-arrow svg {
filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
}
.hero-arrow-prev {
left: 2rem;
}
.hero-arrow-next {
right: 2rem;
} @media (min-width: 768px) and (max-width: 900px) {
.hero-carousel {
min-height: 600px;
}
.hero-content {
padding: 4rem 2rem 11rem;
}
.hero-label {
font-size: 0.8rem;
margin-bottom: 1.2rem;
}
.hero-title {
margin-bottom: 1.2rem;
}
.hero-description {
margin-bottom: 2rem;
}
.hero-nav {
bottom: 2.5rem;
gap: 0.8rem;
}
.hero-nav-btn {
width: 160px;
padding: 1rem 1.2rem;
}
} @media (min-width: 601px) and (max-width: 767px) {
.hero-carousel {
min-height: 600px;
}
.hero-content {
padding: 6rem 1.5rem 10rem;
}
.hero-title {
font-size: clamp(3.2rem, 8vw, 4.5rem);
}
.hero-cta {
flex-direction: column;
gap: 1rem;
max-width: 350px;
}
.btn {
width: 100%;
}
.hero-nav {
bottom: 2rem;
gap: 0.5rem;
} .nav-label {
display: none;
}
.hero-arrow {
display: none;
}
} @media (max-width: 600px) {
.hero-carousel {
min-height: 600px;
}
.hero-content {
padding: 6rem 1.5rem 10rem;
}
.hero-label {
font-size: 0.75rem;
letter-spacing: 2px;
margin-bottom: 1rem;
}
.hero-title {
font-size: clamp(2.8rem, 10vw, 4rem);
margin-bottom: 1.2rem;
letter-spacing: 1px;
}
.hero-description {
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.6;
}
.hero-cta {
flex-direction: column;
gap: 1rem;
width: 100%;
max-width: 320px;
}
.btn {
width: 100%;
justify-content: center;
padding: 1rem 2rem;
font-size: 0.9rem;
} .hero-nav {
bottom: 2rem;
bottom: max(2rem, env(safe-area-inset-bottom, 0px) + 1rem);
gap: 0.5rem;
padding: 0 1rem;
width: 100%;
max-width: 500px;
}
.hero-nav-btn {
flex: 1;
padding: 0.8rem 0.5rem;
gap: 0.5rem;
}
.nav-icon {
width: 28px;
height: 28px;
} .nav-label {
display: none;
}
.hero-arrow {
display: none;
}
} @media (max-width: 375px) {
.hero-carousel {
min-height: 550px;
}
.hero-content {
padding: 5.5rem 1.2rem 9.5rem;
}
.hero-label {
font-size: 0.7rem;
letter-spacing: 1.8px;
}
.hero-title {
font-size: clamp(2.5rem, 11vw, 3.5rem);
margin-bottom: 1rem;
}
.hero-description {
font-size: 0.95rem;
margin-bottom: 1.8rem;
}
.hero-cta {
max-width: 280px;
gap: 0.9rem;
}
.btn {
padding: 0.95rem 1.8rem;
font-size: 0.85rem;
}
.hero-nav {
gap: 0.5rem;
bottom: 1.5rem;
bottom: max(1.5rem, env(safe-area-inset-bottom, 0px) + 0.6rem);
}
.hero-nav-btn {
padding: 0.8rem 0.5rem;
}
.nav-icon {
width: 24px;
height: 24px;
}
} @media (min-width: 901px) and (max-height: 700px) {
.hero-carousel {
min-height: 100vh;
}
.hero-content {
padding: 3.5rem 2rem 10rem;
}
.hero-label {
margin-bottom: 1rem;
}
.hero-title {
font-size: clamp(2.5rem, 6vw, 4.5rem);
margin-bottom: 1rem;
}
.hero-description {
margin-bottom: 1.8rem;
}
.hero-nav {
bottom: 2rem;
}
} .hero-slide:not(.active) {
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
}
.hero-slide:not(.active) .hero-label,
.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-description,
.hero-slide:not(.active) .hero-cta {
animation: none !important;
opacity: 0 !important;
} .hero-nav-btn:not(.active) {
border-color: rgba(224, 185, 74, 0.2) !important;
box-shadow: none !important;
transform: translateY(0) !important;
}
.hero-nav-btn:not(.active)::before {
height: 0 !important;
} .restaurant-section {
padding: 8rem 2rem;
background: #0d0d0d;
position: relative;
overflow: hidden;
}
.restaurant-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}
.restaurant-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
} .restaurant-content {
display: flex;
flex-direction: column;
gap: 2.5rem;
}
.content-header {
display: flex;
flex-direction: column;
gap: 1rem;
}
.restaurant-label {
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: #e0b94a;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.2s;
}
.restaurant-title {
font-size: clamp(2.8rem, 5vw, 4.2rem);
font-weight: 700;
color: #f5f5f5;
line-height: 1.1;
letter-spacing: 1px;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.4s;
}
.restaurant-description {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.restaurant-description p {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.8;
color: #c5c5c5;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.6s;
}
.restaurant-description p:last-child {
animation-delay: 0.7s;
} .restaurant-highlights {
display: flex;
flex-direction: column;
gap: 1.8rem;
padding: 2rem 0;
}
.highlight-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
opacity: 0;
animation: fadeInLeft 0.8s ease forwards 0.9s;
}
.highlight-item:nth-child(2) {
animation-delay: 1s;
}
.highlight-item:nth-child(3) {
animation-delay: 1.1s;
}
.highlight-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.1), rgba(224, 185, 74, 0.05));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
transition: all 0.3s ease;
}
.highlight-item:hover .highlight-icon {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.4);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(224, 185, 74, 0.2);
}
.highlight-icon svg {
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}
.highlight-text h4 {
font-size: 1.1rem;
font-weight: 600;
color: #f5f5f5;
margin-bottom: 0.5rem;
letter-spacing: 0.5px;
}
.highlight-text p {
font-size: 0.95rem;
font-weight: 300;
color: #a0a0a0;
line-height: 1.6;
} .restaurant-btn {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 2.5rem;
background: linear-gradient(135deg, #e0b94a, #f4d56f);
border: 2px solid;
border-color: #e0b94a;
color: #0d0d0d;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
border-radius: 50px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
z-index: 1;
box-shadow: 
0 8px 25px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
width: fit-content;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 1.3s;
}
.restaurant-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
z-index: -1;
background: #0d0d0d;
}
.restaurant-btn svg {
transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
.restaurant-btn:hover::before {
width: 400px;
height: 400px;
}
}
@media (min-width: 1025px) {
.restaurant-btn:hover {
color: #e0b94a;
border-color: #e0b94a;
box-shadow: 
0 12px 40px rgba(224, 185, 74, 0.5),
0 0 60px rgba(224, 185, 74, 0.3),
inset 0 0 20px rgba(224, 185, 74, 0.2);
transform: translateY(-3px);
}
.restaurant-btn:hover svg {
transform: translateX(5px);
}
} .restaurant-visual {
position: relative;
height: 600px;
}
.visual-main {
position: relative;
width: 100%;
height: 100%;
border-radius: 24px;
overflow: hidden;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.4),
0 0 40px rgba(224, 185, 74, 0.1);
opacity: 0;
animation: fadeInRight 1s ease forwards 0.5s;
}
.visual-main img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.visual-main:hover img {
transform: scale(1.08);
}
.visual-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(13, 13, 13, 0.3) 0%,
rgba(224, 185, 74, 0.1) 50%,
rgba(13, 13, 13, 0.4) 100%
);
transition: opacity 0.4s ease;
}
.visual-main:hover .visual-overlay {
opacity: 0.7;
} .visual-accent {
position: absolute;
bottom: -30px;
left: -30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
width: 140px;
height: 140px;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(20, 20, 20, 0.92));
backdrop-filter: blur(20px);
border: 2px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
box-shadow: 
0 15px 50px rgba(0, 0, 0, 0.6),
0 0 40px rgba(224, 185, 74, 0.2);
z-index: 2;
opacity: 0;
animation: fadeInScale 1s ease forwards 1.2s;
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
.accent-icon {
width: 50px;
height: 50px;
color: #e0b94a;
filter: drop-shadow(0 0 15px rgba(224, 185, 74, 0.6));
}
.visual-accent span {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #e0b94a;
text-align: center;
line-height: 1.3;
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
} @media (max-width: 900px) {
.restaurant-section {
padding: 5rem 1.5rem;
}
.restaurant-container {
grid-template-columns: 1fr;
gap: 4rem;
}
.restaurant-title {
font-size: 2.5rem;
}
.restaurant-visual {
height: 450px;
order: -1;
margin-bottom: 60px;
position: relative; }
.visual-main {
position: relative;
}
.visual-accent {
position: absolute;
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
width: 120px;
height: 120px;
}
.accent-icon {
width: 40px;
height: 40px;
}
.visual-accent span {
font-size: 0.7rem;
}
.restaurant-btn {
width: 100%;
justify-content: center;
}
.restaurant-highlights {
gap: 1.5rem;
}
}
@media (max-width: 600px) {
.restaurant-visual {
height: 350px;
margin-bottom: 60px;
}
.visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
}
.highlight-icon {
width: 45px;
height: 45px;
}
.highlight-text h4 {
font-size: 1rem;
}
.highlight-text p {
font-size: 0.9rem;
}
} @media (min-width: 768px) and (max-width: 900px) {
.restaurant-btn {
width: fit-content !important; }
} @media (max-width: 900px) {
.restaurant-section {
padding: 5rem 1.5rem;
}
.restaurant-container {
grid-template-columns: 1fr;
gap: 4rem;
}
.restaurant-title {
font-size: 2.5rem;
}
.restaurant-visual {
height: 450px;
order: -1;
margin-bottom: 60px;
position: relative;
}
.visual-main {
position: relative;
}
.visual-accent {
position: absolute;
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
width: 120px;
height: 120px;
}
.accent-icon {
width: 40px;
height: 40px;
}
.visual-accent span {
font-size: 0.7rem;
}
.restaurant-btn {
width: 100%;
justify-content: center;
}
.restaurant-highlights {
gap: 1.5rem;
}
}
@media (max-width: 600px) {
.restaurant-visual {
height: 350px;
margin-bottom: 60px;
}
.visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
}
.highlight-icon {
width: 45px;
height: 45px;
}
.highlight-text h4 {
font-size: 1rem;
}
.highlight-text p {
font-size: 0.9rem;
}
} .bar-section {
padding: 8rem 2rem;
background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
position: relative;
overflow: hidden;
}
.bar-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}
.bar-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
} .bar-content {
display: flex;
flex-direction: column;
gap: 2.5rem;
}
.bar-label {
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: #e0b94a;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.2s;
}
.bar-title {
font-size: clamp(2.8rem, 5vw, 4.2rem);
font-weight: 700;
color: #f5f5f5;
line-height: 1.1;
letter-spacing: 1px;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.4s;
}
.bar-description {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.bar-description p {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.8;
color: #c5c5c5;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.6s;
}
.bar-description p:last-child {
animation-delay: 0.7s;
} .bar-highlights {
display: flex;
flex-direction: column;
gap: 1.8rem;
padding: 2rem 0;
}
.bar-highlights .highlight-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
opacity: 0;
animation: fadeInRight 0.8s ease forwards 0.9s;
}
.bar-highlights .highlight-item:nth-child(2) {
animation-delay: 1s;
}
.bar-highlights .highlight-item:nth-child(3) {
animation-delay: 1.1s;
}
.bar-highlights .highlight-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.1), rgba(224, 185, 74, 0.05));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
transition: all 0.3s ease;
}
.bar-highlights .highlight-item:hover .highlight-icon {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.4);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(224, 185, 74, 0.2);
}
.bar-highlights .highlight-icon svg {
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}
.bar-highlights .highlight-text h4 {
font-size: 1.1rem;
font-weight: 600;
color: #f5f5f5;
margin-bottom: 0.5rem;
letter-spacing: 0.5px;
}
.bar-highlights .highlight-text p {
font-size: 0.95rem;
font-weight: 300;
color: #a0a0a0;
line-height: 1.6;
} .bar-btn {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 2.5rem;
background: linear-gradient(135deg, #e0b94a, #f4d56f);
border: 2px solid;
border-color: #e0b94a;
color: #0d0d0d;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
border-radius: 50px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
z-index: 1;
box-shadow: 
0 8px 25px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
width: fit-content;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 1.3s;
}
.bar-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
z-index: -1;
background: #0d0d0d;
}
.bar-btn svg {
transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
.bar-btn:hover::before {
width: 400px;
height: 400px;
}
}
@media (min-width: 1025px) {
.bar-btn:hover {
color: #e0b94a;
border-color: #e0b94a;
box-shadow: 
0 12px 40px rgba(224, 185, 74, 0.5),
0 0 60px rgba(224, 185, 74, 0.3),
inset 0 0 20px rgba(224, 185, 74, 0.2);
transform: translateY(-3px);
}
.bar-btn:hover svg {
transform: translateX(5px);
}
} .bar-visual {
position: relative;
height: 600px;
}
.bar-visual .visual-main {
position: relative;
width: 100%;
height: 100%;
border-radius: 24px;
overflow: hidden;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.4),
0 0 40px rgba(224, 185, 74, 0.1);
opacity: 0;
animation: fadeInLeft 1s ease forwards 0.5s;
}
.bar-visual .visual-main img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.bar-visual .visual-main:hover img {
transform: scale(1.08);
}
.bar-visual .visual-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(13, 13, 13, 0.4) 0%,
rgba(224, 185, 74, 0.1) 50%,
rgba(13, 13, 13, 0.3) 100%
);
transition: opacity 0.4s ease;
}
.bar-visual .visual-main:hover .visual-overlay {
opacity: 0.7;
} .bar-visual .visual-accent {
position: absolute;
bottom: -30px;
right: -30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
width: 140px;
height: 140px;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(20, 20, 20, 0.92));
backdrop-filter: blur(20px);
border: 2px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
box-shadow: 
0 15px 50px rgba(0, 0, 0, 0.6),
0 0 40px rgba(224, 185, 74, 0.2);
z-index: 2;
opacity: 0;
animation: fadeInScale 1s ease forwards 1.2s;
}
.bar-visual .accent-icon {
width: 50px;
height: 50px;
color: #e0b94a;
filter: drop-shadow(0 0 15px rgba(224, 185, 74, 0.6));
}
.bar-visual .visual-accent span {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #e0b94a;
text-align: center;
line-height: 1.3;
} @keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
} @media (min-width: 768px) and (max-width: 900px) {
.bar-btn {
width: fit-content !important;
}
} @media (max-width: 900px) {
.bar-section {
padding: 5rem 1.5rem;
}
.bar-container {
grid-template-columns: 1fr;
gap: 4rem;
}
.bar-title {
font-size: 2.5rem;
}
.bar-visual {
height: 450px;
order: -1;
margin-bottom: 60px;
position: relative;
}
.bar-visual .visual-main {
position: relative;
}
.bar-visual .visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
width: 120px;
height: 120px;
}
.bar-visual .accent-icon {
width: 40px;
height: 40px;
}
.bar-visual .visual-accent span {
font-size: 0.7rem;
}
.bar-btn {
width: 100%;
justify-content: center;
}
.bar-highlights {
gap: 1.5rem;
}
}
@media (max-width: 600px) {
.bar-visual {
height: 350px;
margin-bottom: 60px;
}
.bar-visual .visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
}
.bar-highlights .highlight-icon {
width: 45px;
height: 45px;
}
.bar-highlights .highlight-text h4 {
font-size: 1rem;
}
.bar-highlights .highlight-text p {
font-size: 0.9rem;
}
} .event-section {
padding: 8rem 2rem;
background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
position: relative;
overflow: hidden;
}
.event-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}
.event-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
} .event-content {
display: flex;
flex-direction: column;
gap: 2.5rem;
}
.event-label {
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: #e0b94a;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.2s;
}
.event-title {
font-size: clamp(2.8rem, 5vw, 4.2rem);
font-weight: 700;
color: #f5f5f5;
line-height: 1.1;
letter-spacing: 1px;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.4s;
}
.event-description {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.event-description p {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.8;
color: #c5c5c5;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.6s;
}
.event-description p:last-child {
animation-delay: 0.7s;
} .event-highlights {
display: flex;
flex-direction: column;
gap: 1.8rem;
padding: 2rem 0;
}
.event-highlights .highlight-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
opacity: 0;
animation: fadeInLeft 0.8s ease forwards 0.9s;
}
.event-highlights .highlight-item:nth-child(2) {
animation-delay: 1s;
}
.event-highlights .highlight-item:nth-child(3) {
animation-delay: 1.1s;
}
.event-highlights .highlight-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.1), rgba(224, 185, 74, 0.05));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
transition: all 0.3s ease;
}
.event-highlights .highlight-item:hover .highlight-icon {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.4);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(224, 185, 74, 0.2);
}
.event-highlights .highlight-icon svg {
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}
.event-highlights .highlight-text h4 {
font-size: 1.1rem;
font-weight: 600;
color: #f5f5f5;
margin-bottom: 0.5rem;
letter-spacing: 0.5px;
}
.event-highlights .highlight-text p {
font-size: 0.95rem;
font-weight: 300;
color: #a0a0a0;
line-height: 1.6;
} .event-btn {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 2.5rem;
background: linear-gradient(135deg, #e0b94a, #f4d56f);
border: 2px solid;
border-color: #e0b94a;
color: #0d0d0d;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
border-radius: 50px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
z-index: 1;
box-shadow: 
0 8px 25px rgba(224, 185, 74, 0.3),
0 0 40px rgba(224, 185, 74, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
width: fit-content;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 1.3s;
}
.event-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
z-index: -1;
background: #0d0d0d;
}
.event-btn svg {
transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
.event-btn:hover::before {
width: 400px;
height: 400px;
}
}
@media (min-width: 1025px) {
.event-btn:hover {
color: #e0b94a;
border-color: #e0b94a;
box-shadow: 
0 12px 40px rgba(224, 185, 74, 0.5),
0 0 60px rgba(224, 185, 74, 0.3),
inset 0 0 20px rgba(224, 185, 74, 0.2);
transform: translateY(-3px);
}
.event-btn:hover svg {
transform: translateX(5px);
}
} .event-visual {
position: relative;
height: 600px;
}
.event-visual .visual-main {
position: relative;
width: 100%;
height: 100%;
border-radius: 24px;
overflow: hidden;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.4),
0 0 40px rgba(224, 185, 74, 0.1);
opacity: 0;
animation: fadeInRight 1s ease forwards 0.5s;
}
.event-visual .visual-main img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.event-visual .visual-main:hover img {
transform: scale(1.08);
}
.event-visual .visual-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(13, 13, 13, 0.3) 0%,
rgba(224, 185, 74, 0.1) 50%,
rgba(13, 13, 13, 0.4) 100%
);
transition: opacity 0.4s ease;
}
.event-visual .visual-main:hover .visual-overlay {
opacity: 0.7;
} .event-visual .visual-accent {
position: absolute;
bottom: -30px;
left: -30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
width: 140px;
height: 140px;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(20, 20, 20, 0.92));
backdrop-filter: blur(20px);
border: 2px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
box-shadow: 
0 15px 50px rgba(0, 0, 0, 0.6),
0 0 40px rgba(224, 185, 74, 0.2);
z-index: 2;
opacity: 0;
animation: fadeInScale 1s ease forwards 1.2s;
}
.event-visual .accent-icon {
width: 50px;
height: 50px;
color: #e0b94a;
filter: drop-shadow(0 0 15px rgba(224, 185, 74, 0.6));
}
.event-visual .visual-accent span {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #e0b94a;
text-align: center;
line-height: 1.3;
} @media (min-width: 768px) and (max-width: 900px) {
.event-btn {
width: fit-content !important;
}
} @media (max-width: 900px) {
.event-section {
padding: 5rem 1.5rem;
}
.event-container {
grid-template-columns: 1fr;
gap: 4rem;
}
.event-title {
font-size: 2.5rem;
}
.event-visual {
height: 450px;
order: -1;
margin-bottom: 60px;
position: relative;
}
.event-visual .visual-main {
position: relative;
}
.event-visual .visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
width: 120px;
height: 120px;
}
.event-visual .accent-icon {
width: 40px;
height: 40px;
}
.event-visual .visual-accent span {
font-size: 0.7rem;
}
.event-btn {
width: 100%;
justify-content: center;
}
.event-highlights {
gap: 1.5rem;
}
}
@media (max-width: 600px) {
.event-visual {
height: 350px;
margin-bottom: 60px;
}
.event-visual .visual-accent {
bottom: -60px;
left: 0;
right: 0;
margin: 0 auto;
}
.event-highlights .highlight-icon {
width: 45px;
height: 45px;
}
.event-highlights .highlight-text h4 {
font-size: 1rem;
}
.event-highlights .highlight-text p {
font-size: 0.9rem;
}
} .celebrations-section {
padding: 10rem 2rem;
background: #0d0d0d;
position: relative;
}
.celebrations-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
}
.celebrations-container {
max-width: 1100px;
margin: 0 auto;
} .celebrations-header {
text-align: center;
margin-bottom: 8rem;
opacity: 0;
animation: fadeIn 1s ease forwards 0.2s;
}
.header-tag {
display: inline-block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 4px;
text-transform: uppercase;
color: #e0b94a;
margin-bottom: 1.5rem;
}
.header-title {
font-size: clamp(3.5rem, 7vw, 5.5rem);
font-weight: 300;
color: #ffffff;
letter-spacing: 8px;
text-transform: uppercase;
margin-bottom: 2rem;
line-height: 1.2;
}
.header-subtitle {
font-size: 1.1rem;
font-weight: 300;
line-height: 1.8;
color: #a5a5a5;
max-width: 600px;
margin: 0 auto;
} .celebrations-list {
display: flex;
flex-direction: column;
gap: 0;
margin-bottom: 8rem;
}
.celebration-item {
display: grid;
grid-template-columns: 140px 1fr;
gap: 3rem;
padding: 3rem 0;
position: relative;
opacity: 0;
animation: fadeInLeft 0.8s ease forwards;
transition: all 0.4s ease;
}
.celebration-item:nth-child(1) { animation-delay: 0.3s; }
.celebration-item:nth-child(2) { animation-delay: 0.4s; }
.celebration-item:nth-child(3) { animation-delay: 0.5s; }
.celebration-item:nth-child(4) { animation-delay: 0.6s; }
.celebration-item:nth-child(5) { animation-delay: 0.7s; }
.celebration-item:nth-child(6) { animation-delay: 0.8s; }
.celebration-item:hover {
transform: translateX(10px);
} .item-left {
display: flex;
align-items: center;
gap: 2rem;
}
.item-number {
font-size: 2.5rem;
font-weight: 200;
color: rgba(224, 185, 74, 0.2);
line-height: 1;
transition: all 0.4s ease;
}
.celebration-item:hover .item-number {
color: rgba(224, 185, 74, 0.5);
transform: scale(1.1);
}
.item-icon {
width: 50px;
height: 50px;
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
}
.celebration-item:hover .item-icon {
border-color: rgba(224, 185, 74, 0.5);
background: rgba(224, 185, 74, 0.05);
transform: rotateZ(10deg);
}
.item-icon svg {
color: #e0b94a;
opacity: 0.6;
transition: opacity 0.4s ease;
}
.celebration-item:hover .item-icon svg {
opacity: 1;
} .item-content {
display: flex;
flex-direction: column;
gap: 1rem;
padding-right: 2rem;
}
.item-title {
font-size: 1.8rem;
font-weight: 400;
color: #ffffff;
letter-spacing: 1px;
transition: color 0.4s ease;
margin: 0;
}
.celebration-item:hover .item-title {
color: #e0b94a;
}
.item-description {
font-size: 1rem;
font-weight: 300;
line-height: 1.8;
color: #a5a5a5;
margin: 0;
transition: color 0.4s ease;
}
.celebration-item:hover .item-description {
color: #c5c5c5;
} .item-line {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, rgba(224, 185, 74, 0.1), transparent);
transition: all 0.4s ease;
}
.celebration-item:hover .item-line {
background: linear-gradient(90deg, rgba(224, 185, 74, 0.3), transparent);
}
.celebration-item:last-child .item-line {
display: none;
} .celebrations-cta {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
opacity: 0;
animation: fadeIn 1s ease forwards 1s;
}
.cta-text {
font-size: 1.3rem;
font-weight: 300;
color: #c5c5c5;
margin: 0;
}
.cta-link {
display: inline-flex;
align-items: center;
gap: 1rem;
padding: 1.2rem 2.5rem;
border: 1px solid rgba(224, 185, 74, 0.3);
color: #e0b94a;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.cta-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(224, 185, 74, 0.1);
transition: left 0.4s ease;
}
@media (min-width: 1025px) {
.cta-link:hover::before {
left: 0;
}
}
.cta-link span,
.cta-link svg {
position: relative;
z-index: 1;
}
@media (min-width: 1025px) {
.cta-link:hover {
border-color: rgba(224, 185, 74, 0.6);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(224, 185, 74, 0.2);
}
}
.cta-link svg {
transition: transform 0.4s ease;
}
@media (min-width: 1025px) {
.cta-link:hover svg {
transform: translateX(5px);
}
} @keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
} @media (max-width: 900px) {
.celebrations-section {
padding: 7rem 1.5rem;
}
.celebrations-header {
margin-bottom: 6rem;
}
.header-title {
font-size: 3rem;
}
.header-subtitle {
font-size: 1rem;
}
.celebrations-list {
margin-bottom: 6rem;
}
.celebration-item {
grid-template-columns: 1fr;
gap: 2rem;
padding: 2.5rem 0;
}
.item-left {
gap: 1.5rem;
}
.item-number {
font-size: 2rem;
}
.item-icon {
width: 45px;
height: 45px;
}
.item-icon svg {
width: 22px;
height: 22px;
}
.item-content {
padding-right: 0;
}
.item-title {
font-size: 1.5rem;
}
.item-description {
font-size: 0.95rem;
}
.cta-text {
font-size: 1.15rem;
}
.cta-link {
width: 100%;
max-width: 400px;
justify-content: center;
}
}
@media (max-width: 600px) {
.header-title {
font-size: 2.5rem;
letter-spacing: 4px;
}
.item-number {
font-size: 1.8rem;
}
.item-icon {
width: 40px;
height: 40px;
}
.item-title {
font-size: 1.3rem;
}
.item-description {
font-size: 0.9rem;
}
} .team-stats-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding: 10rem 2rem;
overflow: hidden;
background: #0d0d0d;
} .team-background {
position: absolute;
inset: 0;
z-index: 1;
}
.team-background img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(20%) blur(2px) brightness(0.55);
}
.team-background-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(13, 13, 13, 0.75) 0%,
rgba(13, 13, 13, 0.68) 50%,
rgba(13, 13, 13, 0.75) 100%
);
}
.team-stats-container {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
width: 100%;
} .stats-header {
text-align: center;
margin-bottom: 6rem;
opacity: 0;
animation: fadeIn 1s ease forwards 0.2s;
}
.stats-tag {
display: block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 4px;
text-transform: uppercase;
color: #e0b94a;
margin-bottom: 1.5rem;
}
.stats-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 300;
color: #ffffff;
letter-spacing: 2px;
text-transform: uppercase;
line-height: 1.3;
} .stats-grid-simple {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4rem;
} .stat-simple {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 1.5rem;
padding: 2rem 1.5rem;
background: rgba(20, 20, 20, 0.4);
border: 1px solid rgba(224, 185, 74, 0.15);
backdrop-filter: blur(20px);
transition: all 0.4s ease;
opacity: 0;
animation: fadeInUp 0.8s ease forwards;
}
.stat-simple:nth-child(1) { animation-delay: 0.3s; }
.stat-simple:nth-child(2) { animation-delay: 0.4s; }
.stat-simple:nth-child(3) { animation-delay: 0.5s; }
.stat-simple:nth-child(4) { animation-delay: 0.6s; }
.stat-simple:hover {
background: rgba(224, 185, 74, 0.05);
border-color: rgba(224, 185, 74, 0.3);
transform: translateY(-8px);
} .stat-icon-minimal {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 50%;
transition: all 0.4s ease;
}
.stat-simple:hover .stat-icon-minimal {
border-color: rgba(224, 185, 74, 0.5);
background: rgba(224, 185, 74, 0.05);
}
.stat-icon-minimal svg {
color: #e0b94a;
opacity: 0.7;
transition: opacity 0.4s ease;
}
.stat-simple:hover .stat-icon-minimal svg {
opacity: 1;
} .stat-number-simple {
font-size: 3.5rem;
font-weight: 300;
color: #ffffff;
line-height: 1;
letter-spacing: -1px;
transition: all 0.4s ease;
}
.stat-simple:hover .stat-number-simple {
color: #e0b94a;
}
.stat-wrapper-percent {
display: flex;
align-items: baseline;
gap: 0.2rem;
}
.stat-percent-sign {
font-size: 2rem;
font-weight: 300;
color: #e0b94a;
opacity: 0.8;
} .stat-label-simple {
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 1px;
text-transform: uppercase;
color: #b5b5b5;
line-height: 1.4;
transition: color 0.4s ease;
}
.stat-simple:hover .stat-label-simple {
color: #d5d5d5;
} .stat-line {
width: 40px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
transition: all 0.4s ease;
}
.stat-simple:hover .stat-line {
width: 80px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.6), transparent);
} @keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 1024px) {
.stats-grid-simple {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
}
@media (max-width: 900px) {
.team-stats-section {
padding: 7rem 1.5rem;
}
.stats-header {
margin-bottom: 5rem;
}
.stats-title {
font-size: 2.5rem;
}
.stat-simple {
padding: 2rem 1.5rem;
}
.stat-number-simple {
font-size: 3rem;
}
}
@media (max-width: 600px) {
.stats-grid-simple {
grid-template-columns: 1fr;
gap: 2rem;
}
.stats-title {
font-size: 2rem;
}
.stat-icon-minimal {
width: 45px;
height: 45px;
}
.stat-icon-minimal svg {
width: 22px;
height: 22px;
}
.stat-number-simple {
font-size: 2.5rem;
}
.stat-percent-sign {
font-size: 1.8rem;
}
} .partners-carousel-section {
padding: 10rem 2rem;
background: #0d0d0d;
position: relative;
overflow: hidden;
}
.partners-carousel-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.4), transparent);
box-shadow: 0 0 30px rgba(224, 185, 74, 0.3);
}
.partners-carousel-container {
max-width: 1400px;
margin: 0 auto;
} .carousel-header {
text-align: center;
margin-bottom: 6rem;
opacity: 0;
animation: fadeIn 1s ease forwards 0.2s;
}
.carousel-tag {
display: block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 4px;
text-transform: uppercase;
color: #e0b94a;
margin-bottom: 1.5rem;
text-shadow: 0 0 20px rgba(224, 185, 74, 0.5);
}
.carousel-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 300;
color: #ffffff;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 2rem;
line-height: 1.3;
}
.carousel-description {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.8;
color: #b5b5b5;
max-width: 700px;
margin: 0 auto;
} .carousel-wrapper {
position: relative;
display: flex;
align-items: center;
gap: 3rem;
margin-bottom: 4rem;
opacity: 0;
animation: fadeIn 1s ease forwards 0.4s;
} .carousel-track-container {
flex: 1;
overflow: hidden;
position: relative;
}
.carousel-track {
display: flex;
transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
} .carousel-slide {
min-width: calc(25% - 2.25rem);
margin-right: 3rem;
aspect-ratio: 1;
} .partner-showcase {
width: 100%;
height: 100%;
position: relative;
}
.showcase-frame {
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(25, 25, 25, 0.7), rgba(20, 20, 20, 0.5));
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
padding: 2.5rem;
position: relative;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.showcase-frame:hover {
background: linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(25, 25, 25, 0.7));
border-color: rgba(224, 185, 74, 0.5); box-shadow: 
0 25px 70px rgba(0, 0, 0, 0.6),
0 0 50px rgba(224, 185, 74, 0.2);
} .frame-glow {
position: absolute;
inset: -60px;
background: radial-gradient(
circle,
rgba(224, 185, 74, 0.25),
transparent 70%
);
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
.showcase-frame:hover .frame-glow {
opacity: 1;
} .showcase-logo {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
}
.showcase-logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
filter: grayscale(100%) brightness(0.8) contrast(1.2);
opacity: 0.7;
transition: all 0.5s ease;
}
.showcase-frame:hover .showcase-logo img {
filter: grayscale(0%) brightness(1) contrast(1);
opacity: 1;
transform: scale(1.08);
} .carousel-nav {
width: 60px;
height: 60px;
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
background: rgba(20, 20, 20, 0.8);
backdrop-filter: blur(20px);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.4s ease;
flex-shrink: 0;
position: relative;
overflow: hidden;
}
.carousel-nav::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle, rgba(224, 185, 74, 0.2), transparent);
opacity: 0;
transition: opacity 0.4s ease;
}
.carousel-nav:hover::before {
opacity: 1;
}
.carousel-nav:hover {
border-color: rgba(224, 185, 74, 0.6);
background: rgba(224, 185, 74, 0.1);
transform: scale(1.1);
box-shadow: 0 0 30px rgba(224, 185, 74, 0.3);
}
.carousel-nav svg {
color: #e0b94a;
filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.carousel-nav:hover svg {
transform: scale(1.1);
}
.carousel-prev:hover svg {
transform: translateX(-3px);
}
.carousel-next:hover svg {
transform: translateX(3px);
} .carousel-indicators {
display: flex;
justify-content: center;
gap: 1rem;
opacity: 0;
animation: fadeIn 1s ease forwards 0.6s;
}
.indicator {
width: 12px;
height: 12px;
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
background: transparent;
cursor: pointer;
transition: all 0.4s ease;
position: relative;
}
.indicator::before {
content: '';
position: absolute;
inset: 2px;
border-radius: 50%;
background: #e0b94a;
opacity: 0;
transition: opacity 0.4s ease;
}
.indicator:hover {
border-color: rgba(224, 185, 74, 0.6);
transform: scale(1.2);
}
.indicator.active {
border-color: rgba(224, 185, 74, 0.8);
box-shadow: 0 0 15px rgba(224, 185, 74, 0.5);
}
.indicator.active::before {
opacity: 1;
} @keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
} @media (max-width: 1200px) {
.carousel-slide {
min-width: calc(33.333% - 2rem);
margin-right: 3rem;
}
}
@media (max-width: 900px) {
.partners-carousel-section {
padding: 7rem 1.5rem;
}
.carousel-header {
margin-bottom: 5rem;
}
.carousel-title {
font-size: 2.5rem;
}
.carousel-description {
font-size: 1rem;
}
.carousel-slide {
min-width: calc(50% - 1.5rem);
margin-right: 3rem;
}
.carousel-nav {
width: 50px;
height: 50px;
}
.carousel-nav svg {
width: 20px;
height: 20px;
}
.showcase-frame {
padding: 2rem;
}
}
@media (max-width: 600px) {
.partners-carousel-section {
padding: 5rem 1rem;
}
.carousel-header {
margin-bottom: 3rem;
}
.carousel-title {
font-size: 2rem;
}
.carousel-description {
font-size: 0.95rem;
}
.carousel-wrapper {
gap: 1rem;
} .carousel-track-container {
max-width: 300px;
margin: 0 auto;
}
.carousel-slide {
min-width: 100%;
margin-right: 1.5rem;
}
.carousel-nav {
width: 45px;
height: 45px;
}
.carousel-nav svg {
width: 18px;
height: 18px;
}
.showcase-frame {
padding: 2rem 1.5rem;
}
.carousel-indicators {
gap: 0.5rem;
flex-wrap: wrap;
}
.indicator {
width: 8px;
height: 8px;
}
} .newsletter-refined {
padding: 7rem 2rem;
background: #0d0d0d;
border-top: 1px solid rgba(224, 185, 74, 0.15);
}
.newsletter-refined-container {
max-width: 700px;
margin: 0 auto;
}
.newsletter-refined-content {
text-align: center;
opacity: 0;
animation: fadeIn 1s ease forwards 0.2s;
}
.refined-label {
display: block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: #e0b94a;
margin-bottom: 1rem;
}
.refined-title {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 300;
color: #ffffff;
letter-spacing: 1px;
margin-bottom: 1rem;
}
.refined-description {
font-size: 1rem;
font-weight: 300;
color: #a5a5a5;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.refined-form-group {
display: flex;
gap: 1rem;
}
.refined-input {
flex: 1;
padding: 1rem 1.5rem;
background: rgba(20, 20, 20, 0.5);
border: 1px solid rgba(224, 185, 74, 0.2);
color: #ffffff;
font-size: 0.95rem;
font-weight: 300;
outline: none;
transition: all 0.3s ease;
}
.refined-input:focus {
border-color: rgba(224, 185, 74, 0.5);
background: rgba(20, 20, 20, 0.8);
}
.refined-input::placeholder {
color: #757575;
}
.refined-submit {
padding: 1rem 2rem;
background: transparent;
border: 1px solid rgba(224, 185, 74, 0.4);
color: #e0b94a;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}
.refined-submit:hover {
background: rgba(224, 185, 74, 0.1);
border-color: rgba(224, 185, 74, 0.6);
transform: translateY(-2px);
} .newsletter-glass {
position: relative;
padding: 10rem 2rem;
overflow: hidden;
} .newsletter-bg-parallax {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(//www.lacalechemezire.fr/wp-content/themes/caleche/images/restaurant-exterieur-face-avant.webp);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 0;
} @media (min-width: 769px) {
.newsletter-bg-parallax {
background-attachment: fixed;
background-position: center center;
}
} .newsletter-bg-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, 
rgba(0, 0, 0, 0.35) 0%, 
rgba(10, 10, 10, 0.45) 50%, 
rgba(0, 0, 0, 0.35) 100%
);
z-index: 1;
}
.newsletter-bg-overlay::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 1000px;
height: 1000px;
background: radial-gradient(circle, rgba(224, 185, 74, 0.08) 0%, transparent 70%);
pointer-events: none;
}
.newsletter-glass-container {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 2;
} .newsletter-glass-card {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 24px;
padding: 4rem 3rem;
position: relative;
box-shadow: 
0 8px 32px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter-glass-card::before {
content: '';
position: absolute;
inset: 0;
border-radius: 24px;
padding: 1px;
background: linear-gradient(145deg, rgba(224, 185, 74, 0.3), transparent 50%, rgba(224, 185, 74, 0.15));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0.6;
}
.newsletter-glass-card:hover {
border-color: rgba(224, 185, 74, 0.3);
box-shadow: 
0 12px 40px rgba(0, 0, 0, 0.6),
0 0 40px rgba(224, 185, 74, 0.12),
inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.newsletter-glass-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
} .newsletter-icon-wrapper {
width: 80px;
height: 80px;
background: rgba(224, 185, 74, 0.1);
border: 1px solid rgba(224, 185, 74, 0.25);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2.5rem;
color: #e0b94a;
box-shadow: 
0 4px 16px rgba(224, 185, 74, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} .newsletter-glass-text {
margin-bottom: 3rem;
}
.newsletter-glass-title {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 400;
color: #ffffff;
letter-spacing: 0.5px;
margin-bottom: 1rem;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.newsletter-glass-subtitle {
font-size: 1rem;
font-weight: 300;
color: #b5b5b5;
line-height: 1.7;
letter-spacing: 0.3px;
} .newsletter-glass-form {
width: 100%;
max-width: 600px;
}
.newsletter-input-group {
display: flex;
gap: 1rem;
margin-bottom: 1.2rem;
}
.newsletter-input-wrapper-glass {
flex: 1;
position: relative;
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
padding: 0 1.5rem;
transition: all 0.3s ease;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.newsletter-input-wrapper-glass:focus-within {
background: rgba(255, 255, 255, 0.06);
border-color: rgba(224, 185, 74, 0.35);
box-shadow: 
inset 0 1px 3px rgba(0, 0, 0, 0.3),
0 0 20px rgba(224, 185, 74, 0.15);
}
.newsletter-input-icon {
color: #e0b94a;
flex-shrink: 0;
margin-right: 1rem;
opacity: 0.6;
transition: opacity 0.3s ease;
}
.newsletter-input-wrapper-glass:focus-within .newsletter-input-icon {
opacity: 1;
}
.newsletter-input-glass {
flex: 1;
padding: 1.2rem 0;
background: transparent;
border: none;
color: #ffffff;
font-size: 0.95rem;
font-weight: 300;
letter-spacing: 0.3px;
outline: none;
}
.newsletter-input-glass::placeholder {
color: #858585;
}
.newsletter-btn-glass {
padding: 1.2rem 2.5rem;
background: rgba(224, 185, 74, 0.12);
border: 1px solid rgba(224, 185, 74, 0.35);
border-radius: 12px;
color: #e0b94a;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.8rem;
white-space: nowrap;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
box-shadow: 
0 4px 16px rgba(224, 185, 74, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.newsletter-btn-glass::before {
content: '';
position: absolute;
inset: 0;
background: #e0b94a;
transform: translateY(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}
.newsletter-btn-glass span,
.newsletter-btn-glass svg {
position: relative;
z-index: 1;
transition: all 0.4s ease;
}
@media (min-width: 1025px) {
.newsletter-btn-glass:hover {
border-color: #e0b94a;
color: #000000;
transform: translateY(-2px);
box-shadow: 
0 8px 24px rgba(224, 185, 74, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.newsletter-btn-glass:hover::before {
transform: translateY(0);
}
.newsletter-btn-glass:hover svg {
transform: translateX(3px);
}
} .newsletter-glass-privacy {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-size: 0.8rem;
color: #9a9a9a;
font-weight: 300;
letter-spacing: 0.3px;
}
.newsletter-glass-privacy svg {
color: #e0b94a;
opacity: 0.6;
} @media (max-width: 768px) {
.newsletter-glass {
padding: 8rem 1.5rem;
} .newsletter-bg-parallax {
background-attachment: scroll;
background-position: center;
}
.newsletter-glass-card {
padding: 3rem 2rem;
border-radius: 20px;
}
.newsletter-icon-wrapper {
width: 70px;
height: 70px;
margin-bottom: 2rem;
}
.newsletter-glass-text {
margin-bottom: 2.5rem;
}
.newsletter-glass-title {
font-size: 1.6rem;
}
.newsletter-glass-subtitle br {
display: none;
}
.newsletter-input-group {
flex-direction: column;
}
.newsletter-btn-glass {
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.newsletter-glass {
padding: 6rem 1rem;
}
.newsletter-glass-card {
padding: 2.5rem 1.5rem;
}
.newsletter-icon-wrapper {
width: 60px;
height: 60px;
}
.newsletter-input-wrapper-glass {
padding: 0 1rem;
}
.newsletter-input-glass {
padding: 1rem 0;
}
.newsletter-btn-glass {
padding: 1rem 2rem;
font-size: 0.85rem;
}
} .footer-premium-cards {
background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
padding: 8rem 0 3rem;
position: relative;
overflow: hidden;
}
.footer-premium-cards::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 30%, rgba(224, 185, 74, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(224, 185, 74, 0.02) 0%, transparent 50%);
pointer-events: none;
}
.footer-premium-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 3rem;
position: relative;
z-index: 1;
} .back-to-top {
position: fixed;
bottom: 3rem;
right: 3rem;
width: 50px;
height: 50px;
background: rgba(224, 185, 74, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
color: #e0b94a;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 10;
box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.3),
0 0 20px rgba(224, 185, 74, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
opacity: 0;
visibility: hidden;
transform: translateY(20px);
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
background: rgba(224, 185, 74, 0.2);
border-color: #e0b94a;
transform: translateY(-5px);
box-shadow: 
0 8px 30px rgba(0, 0, 0, 0.4),
0 0 30px rgba(224, 185, 74, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.back-to-top:active {
transform: translateY(-3px);
} .footer-premium-header {
text-align: center;
margin-bottom: 5rem;
}
.footer-premium-logo {
max-width: 200px;
height: auto;
margin-bottom: 1.5rem;
filter: drop-shadow(0 4px 20px rgba(224, 185, 74, 0.1));
}
.footer-premium-tagline {
font-size: 1rem;
font-weight: 300;
color: #9a9a9a;
letter-spacing: 1.5px;
font-style: italic;
} .footer-cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 5rem;
} .footer-card {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.15);
border-radius: 16px;
padding: 2.5rem 2rem;
position: relative;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 
0 8px 32px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.footer-card::before {
content: '';
position: absolute;
inset: 0;
border-radius: 16px;
padding: 1px;
background: linear-gradient(145deg, rgba(224, 185, 74, 0.2), transparent 50%, rgba(224, 185, 74, 0.1));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: opacity 0.4s ease;
}
@media (min-width: 1025px) {
.footer-card:hover {
transform: translateY(-5px);
border-color: rgba(224, 185, 74, 0.3);
box-shadow: 
0 12px 40px rgba(0, 0, 0, 0.4),
0 0 30px rgba(224, 185, 74, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.footer-card:hover::before {
opacity: 1;
}
}
.footer-card-inner {
display: flex;
flex-direction: column;
height: 100%;
}
.footer-card-title {
font-size: 0.75rem;
font-weight: 600;
color: #e0b94a;
text-transform: uppercase;
letter-spacing: 2.5px;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(224, 185, 74, 0.1);
} .footer-card-nav {
display: flex;
flex-direction: column;
gap: 1rem;
}
.footer-card-nav a {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.95rem;
font-weight: 300;
color: #b5b5b5;
text-decoration: none;
letter-spacing: 0.3px;
padding: 0.7rem 1rem;
border-radius: 8px;
background: transparent;
border: 1px solid transparent;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.footer-card-nav a::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(224, 185, 74, 0.08), transparent);
transform: translateX(-100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}
.footer-card-nav a .nav-text,
.footer-card-nav a .nav-arrow {
position: relative;
z-index: 1;
transition: all 0.4s ease;
}
.footer-card-nav a .nav-arrow {
opacity: 0;
transform: translateX(-10px);
color: #e0b94a;
}
@media (min-width: 1025px) {
.footer-card-nav a:hover {
color: #e0b94a;
border-color: rgba(224, 185, 74, 0.2);
background: rgba(224, 185, 74, 0.03);
transform: translateX(5px);
box-shadow: 0 4px 12px rgba(224, 185, 74, 0.1);
}
.footer-card-nav a:hover::before {
transform: translateX(0);
}
.footer-card-nav a:hover .nav-arrow {
opacity: 1;
transform: translateX(0);
}
} .footer-card-hours {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.hours-note-card {
font-size: 0.75rem;
color: #e0b94a;
font-style: italic;
margin-bottom: 0.5rem;
padding: 0.5rem;
background: rgba(224, 185, 74, 0.05);
border-radius: 6px;
text-align: center;
}
.hours-item-card {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.88rem;
padding: 0.6rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.day-card {
color: #b5b5b5;
font-weight: 400;
}
.time-card {
color: #9a9a9a;
font-weight: 300;
font-size: 0.85rem;
}
.hours-item-card.closed {
opacity: 0.4;
}
.hours-item-card.closed .time-card {
font-style: italic;
}
.hours-item-card.active .day-card {
color: #e0b94a;
font-weight: 500;
}
.hours-item-card.active .time-card {
color: #d5d5d5;
} .footer-card-contact {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item-card {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.contact-icon-card {
color: #e0b94a;
flex-shrink: 0;
margin-top: 2px;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.3));
}
.contact-text-card {
font-size: 0.9rem;
font-weight: 300;
color: #b5b5b5;
line-height: 1.6;
text-decoration: none;
transition: color 0.3s ease;
}
@media (min-width: 1025px) {
.contact-text-card:hover {
color: #e0b94a;
}
} .footer-card-socials {
display: flex;
flex-direction: column;
gap: 1rem;
}
.social-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: rgba(224, 185, 74, 0.03);
border: 1px solid rgba(224, 185, 74, 0.1);
border-radius: 10px;
color: #b5b5b5;
text-decoration: none;
font-size: 0.9rem;
font-weight: 400;
letter-spacing: 0.3px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.social-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.1), transparent);
transform: translateX(-100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}
.social-icon-wrapper {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(224, 185, 74, 0.05);
border: 1px solid rgba(224, 185, 74, 0.15);
border-radius: 8px;
flex-shrink: 0;
transition: all 0.4s ease;
position: relative;
z-index: 1;
}
.social-card span {
position: relative;
z-index: 1;
transition: all 0.4s ease;
}
@media (min-width: 1025px) {
.social-card:hover {
background: rgba(224, 185, 74, 0.08);
border-color: rgba(224, 185, 74, 0.3);
color: #e0b94a;
transform: translateX(8px);
box-shadow: 0 4px 16px rgba(224, 185, 74, 0.15);
}
.social-card:hover::before {
transform: translateX(0);
}
.social-card:hover .social-icon-wrapper {
background: rgba(224, 185, 74, 0.15);
border-color: rgba(224, 185, 74, 0.3);
transform: scale(1.1) rotate(5deg);
}
} .footer-premium-bottom {
padding-top: 3rem;
}
.footer-bottom-line {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.2) 50%, transparent);
margin-bottom: 2.5rem;
}
.footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-bottom-copyright {
font-size: 0.85rem;
color: #757575;
font-weight: 300;
letter-spacing: 0.5px;
margin: 0 auto;
}
.footer-bottom-legal {
display: flex;
gap: 2rem;
}
.footer-bottom-legal a {
font-size: 0.85rem;
color: #858585;
text-decoration: none;
font-weight: 300;
letter-spacing: 0.3px;
transition: color 0.3s ease;
}
@media (min-width: 1025px) {
.footer-bottom-legal a:hover {
color: #e0b94a;
}
} @media (max-width: 1200px) {
.footer-cards-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (max-width: 768px) {
.footer-premium-cards {
padding: 6rem 0 2rem;
}
.footer-premium-container {
padding: 0 2rem;
}
.back-to-top {
bottom: 2rem;
right: 2rem;
width: 45px;
height: 45px;
}
.footer-premium-header {
margin-bottom: 3.5rem;
}
.footer-premium-logo {
max-width: 160px;
}
.footer-cards-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
margin-bottom: 3.5rem;
}
.footer-card {
padding: 2rem 1.5rem;
}
.footer-bottom-content {
flex-direction: column;
gap: 1.5rem;
text-align: center;
}
.footer-bottom-legal {
flex-direction: column;
gap: 1rem;
}
}
@media (max-width: 480px) {
.footer-card {
padding: 1.8rem 1.3rem;
}
.back-to-top {
bottom: 1.5rem;
right: 1.5rem;
width: 40px;
height: 40px;
}
.hours-item-card {
flex-direction: column;
align-items: flex-start;
gap: 0.3rem;
}
} .logo {
position: relative;
z-index: 1000;
}
.logo img {
max-width: 140px;
height: auto;
display: block;
opacity: 0.95;
transition: all 0.3s ease;
}
@media (min-width: 1025px) {
.logo:hover img {
opacity: 1;
transform: scale(1.03);
}
} .header.scrolled .logo img {
max-width: 110px;
transition: all 0.4s ease;
} .logo img {
max-width: 140px;
height: auto;
display: block;
opacity: 0.95;
transition: all 0.3s ease;
}  .scroll-animate {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
} .scroll-animated {
opacity: 1;
transform: translateY(0);
} .restaurant-visual.scroll-animate,
.bar-visual.scroll-animate,
.event-visual.scroll-animate {
transform: translateX(60px) scale(0.95);
}
.restaurant-visual.scroll-animated,
.bar-visual.scroll-animated,
.event-visual.scroll-animated {
transform: translateX(0) scale(1);
} .stat-simple.scroll-animate {
transform: translateY(30px) scale(0.9);
}
.stat-simple.scroll-animated {
transform: translateY(0) scale(1);
} .newsletter-glass-card.scroll-animate {
transform: scale(0.95);
}
.newsletter-glass-card.scroll-animated {
transform: scale(1);
} .carousel-slide.scroll-animate {
transform: translateY(30px);
}
.carousel-slide.scroll-animated {
transform: translateY(0);
}  .partner-showcase {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-showcase:hover {
box-shadow: 
0 25px 60px rgba(224, 185, 74, 0.15),
0 15px 40px rgba(0, 0, 0, 0.4);
} .celebration-item {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.celebration-item:hover {
transform: translateX(8px);
}
.celebration-item:hover .item-line {
width: 100%;
background: linear-gradient(90deg, rgba(224, 185, 74, 0.5), rgba(224, 185, 74, 0.1));
} .btn,
.cta-link,
.newsletter-btn-glass {
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.visual-main img,
.hero-bg {
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
} .scroll-animate,
.scroll-animated,
.partner-showcase,
.visual-main img {
will-change: transform, opacity;
}
.scroll-animated {
will-change: auto;
} @media (max-width: 768px) {
.scroll-animate {
transform: translateY(20px);
}
.restaurant-visual.scroll-animate,
.bar-visual.scroll-animate,
.event-visual.scroll-animate {
transform: translateX(0) scale(0.97);
}
} @media (prefers-reduced-motion: reduce) {
.scroll-animate,
.scroll-animated,
* {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
.scroll-animate {
opacity: 1;
transform: none;
}
} .hero-carousel {
touch-action: pan-y pinch-zoom;
-webkit-overflow-scrolling: touch;
} .hero-carousel * {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
} .hero-nav-btn,
.hero-arrow,
.btn {
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
} .circle-hero {
position: relative;
width: 100%;
height: 65vh;
min-height: 500px;
background: #0d0d0d;
margin-top: 0;
overflow: hidden;
z-index: 1;
}
.circle-hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 1;
}
.circle-hero-bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
180deg,
rgba(13, 13, 13, 0.4) 0%,
rgba(13, 13, 13, 0.75) 100%
);
}
.circle-hero-badge {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.circle-content {
width: 360px;
height: 360px;
border-radius: 50%;
background: #0d0d0d;
border: 2px solid #e0b94a;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 
0 0 0 15px rgba(13, 13, 13, 0.98),
0 35px 100px rgba(0, 0, 0, 0.6),
inset 0 2px 0 rgba(224, 185, 74, 0.2);
position: relative;
z-index: 2;
opacity: 0;
animation: fadeInScale 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}
.circle-inner {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.7rem;
padding: 0 3rem;
}
.circle-label {
font-size: 0.8rem;
font-weight: 300;
letter-spacing: 5px;
text-transform: uppercase;
color: #7a7a7a;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 0.8s;
}
.circle-title {
font-size: 2.6rem;
font-weight: 500;
letter-spacing: 5px;
text-transform: uppercase;
color: #e0b94a;
margin: 0;
line-height: 1;
white-space: nowrap;
opacity: 0;
animation: fadeInUp 0.8s ease forwards 1s;
} .circle-line {
position: absolute;
top: 50%;
transform: translateY(-50%);
height: 1px;
z-index: 1;
}
.circle-line-left {
right: calc(100% + 15px);
width: 45vw;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.1), rgba(224, 185, 74, 0.5));
opacity: 0;
animation: slideInLeft 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}
.circle-line-right {
left: calc(100% + 15px);
width: 45vw;
background: linear-gradient(90deg, rgba(224, 185, 74, 0.5), rgba(224, 185, 74, 0.1), transparent);
opacity: 0;
animation: slideInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}
@keyframes fadeInScale {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
from { opacity: 0; width: 0; }
to { opacity: 1; width: 45vw; }
}
@keyframes slideInRight {
from { opacity: 0; width: 0; }
to { opacity: 1; width: 45vw; }
} @media (max-width: 900px) {
.circle-hero {
height: 60vh;
min-height: 450px;
}
.circle-content {
width: 320px;
height: 320px;
}
.circle-title {
font-size: 2.3rem;
letter-spacing: 4px;
}
.circle-line-left,
.circle-line-right {
width: 40vw;
}
}
@media (max-width: 768px) {
.circle-hero {
height: 70vh;
min-height: 520px;
} .circle-hero-bg {
height: 55%;
}
.circle-hero-badge {
top: 55%;
}
.circle-content {
width: 280px;
height: 280px;
}
.circle-inner {
padding: 0 2rem;
gap: 0.5rem;
}
.circle-title {
font-size: 2rem;
letter-spacing: 3px;
}
.circle-label {
font-size: 0.75rem;
letter-spacing: 3px;
}
.circle-line-left,
.circle-line-right {
width: 35vw;
}
}
@media (max-width: 480px) {
.circle-hero {
height: 65vh;
min-height: 480px;
} .circle-hero-bg {
height: 55%;
}
.circle-content {
width: 250px;
height: 250px;
}
.circle-title {
font-size: 1.8rem;
letter-spacing: 2px;
}
.circle-label {
font-size: 0.7rem;
}
.circle-line-left,
.circle-line-right {
width: 30vw;
}
} .resto-intro {
background: #0d0d0d;
padding: 0 0 120px 0;
}
.resto-intro-container {
max-width: 1300px;
margin: 0 auto;
padding: 0 40px;
} .resto-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
} .resto-image {
width: 100%;
opacity: 0;
transform: scale(0.9);
transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), 
transform 1s cubic-bezier(0.22, 1, 0.36, 1);
} .resto-image.animate-in {
opacity: 1;
transform: scale(1);
}
.image-wrapper {
width: 100%;
aspect-ratio: 4/5;
overflow: hidden;
}
.image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}
.image-wrapper:hover img {
transform: scale(1.05);
} .resto-content {
width: 100%;
}
.content-inner {
max-width: 580px;
} .title-block {
margin-bottom: 40px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
transition-delay: 0.2s;
}
.title-block.animate-in {
opacity: 1;
transform: translateY(0);
}
.title {
font-size: 48px;
font-weight: 500;
color: #ffffff;
line-height: 1.2;
letter-spacing: -0.5px;
margin: 0;
} .text-block {
margin-bottom: 50px;
}
.text-lead {
font-size: 18px;
font-weight: 400;
line-height: 1.7;
color: rgba(224, 185, 74, 0.9);
margin-bottom: 30px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
transition-delay: 0.4s;
}
.text-lead.animate-in {
opacity: 1;
transform: translateY(0);
}
.text-paragraph {
font-size: 16px;
font-weight: 300;
line-height: 1.8;
color: rgba(245, 245, 245, 0.75);
margin-bottom: 20px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.text-paragraph.animate-in {
opacity: 1;
transform: translateY(0);
} .text-paragraph:nth-of-type(2) {
transition-delay: 0.6s;
}
.text-paragraph:nth-of-type(3) {
transition-delay: 0.8s;
}
.text-paragraph:last-child {
margin-bottom: 0;
} .values-block {
display: flex;
flex-direction: column;
gap: 25px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
transition-delay: 1s;
}
.values-block.animate-in {
opacity: 1;
transform: translateY(0);
}
.value-item {
padding-bottom: 25px;
border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}
.value-item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.value-title {
font-size: 17px;
font-weight: 500;
color: #ffffff;
margin-bottom: 6px;
letter-spacing: 0.3px;
}
.value-text {
font-size: 14px;
font-weight: 300;
color: rgba(245, 245, 245, 0.6);
margin: 0;
} @media (max-width: 1024px) {
.resto-layout {
grid-template-columns: 1fr;
gap: 60px;
}
.content-inner {
max-width: 100%;
}
}
@media (max-width: 768px) {
.resto-intro {
padding: 0 0 80px 0;
}
.resto-intro-container {
padding: 0 20px;
}
.resto-layout {
gap: 40px;
}
.title {
font-size: 40px;
}
.text-lead {
font-size: 17px;
}
} .resto-facets {
background: #0d0d0d;
padding: 140px 0;
position: relative;
}
.resto-facets-container {
max-width: 1450px;
margin: 0 auto;
padding: 0 60px;
} .facets-layout {
display: grid;
grid-template-columns: 420px 1fr;
gap: 100px;
align-items: start;
} .facets-timeline {
position: sticky;
top: 140px;
}
.timeline-header {
margin-bottom: 60px;
}
.timeline-subtitle {
display: block;
font-size: 12px;
font-weight: 400;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.7);
margin-bottom: 12px;
}
.timeline-title {
font-size: 38px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.5px;
margin: 0;
} .timeline-nav {
position: relative;
display: flex;
flex-direction: column;
gap: 0;
} .timeline-nav::before {
content: '';
position: absolute;
left: 26px;
top: 30px;
bottom: 30px;
width: 1px;
background: rgba(224, 185, 74, 0.12);
} .timeline-nav::after {
content: '';
position: absolute;
left: 26px;
top: 30px;
width: 1px;
height: 0%;
background: #e0b94a;
transition: height 0.7s ease;
box-shadow: 0 0 8px rgba(224, 185, 74, 0.4);
}
.timeline-nav[data-active="1"]::after {
height: 16.66%;
}
.timeline-nav[data-active="2"]::after {
height: 50%;
}
.timeline-nav[data-active="3"]::after {
height: 83.33%;
} .timeline-btn {
font-family: 'Poppins', sans-serif;
background: transparent;
border: none;
padding: 30px 0 30px 70px;
cursor: pointer;
text-align: left;
width: 100%;
position: relative;
transition: all 0.3s ease;
border-radius: 4px;
}
.timeline-btn:hover {
opacity: 1;
padding-left: 75px;
background: rgba(224, 185, 74, 0.03);
}
.timeline-btn:not(.active) {
opacity: 0.5;
}
.timeline-btn:not(.active):hover {
opacity: 0.8;
} .timeline-btn::before {
content: '';
position: absolute;
left: 22px;
top: 50%;
transform: translateY(-50%);
width: 9px;
height: 9px;
border-radius: 50%;
background: rgba(224, 185, 74, 0.2);
transition: all 0.3s ease;
z-index: 2;
}
.timeline-btn:hover::before {
width: 11px;
height: 11px;
left: 21px;
}
.timeline-btn.active::before {
background: #e0b94a;
box-shadow: 0 0 15px rgba(224, 185, 74, 0.6);
width: 11px;
height: 11px;
left: 21px;
} .btn-number {
font-family: 'Poppins', sans-serif;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 13px;
font-weight: 500;
color: rgba(224, 185, 74, 0.3);
transition: color 0.3s ease;
}
.timeline-btn:hover .btn-number {
color: rgba(224, 185, 74, 0.5);
}
.timeline-btn.active .btn-number {
color: #e0b94a;
font-weight: 600;
} .btn-title {
font-family: 'Poppins', sans-serif;
font-size: 19px;
font-weight: 500;
color: rgba(245, 245, 245, 0.5);
margin: 0 0 6px 0;
line-height: 1.3;
transition: all 0.3s ease;
}
.timeline-btn:hover .btn-title {
color: rgba(245, 245, 245, 0.7);
}
.timeline-btn.active .btn-title {
color: #ffffff;
font-weight: 600;
} .btn-subtitle {
font-family: 'Poppins', sans-serif;
font-size: 13px;
font-weight: 300;
color: rgba(245, 245, 245, 0.3);
margin: 0;
transition: color 0.3s ease;
}
.timeline-btn:hover .btn-subtitle {
color: rgba(245, 245, 245, 0.4);
}
.timeline-btn.active .btn-subtitle {
color: rgba(224, 185, 74, 0.7);
} .facets-content {
position: relative;
min-height: 600px;
}
.facet-panel {
display: none;
opacity: 0;
}
.facet-panel.active {
display: block;
animation: elegantFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes elegantFadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .panel-visual {
position: relative;
width: 100%;
height: 480px;
margin-bottom: 50px;
overflow: hidden;
border-radius: 4px;
}
.visual-image {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.panel-visual:hover .visual-image {
transform: scale(1.08);
}
.visual-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
transparent 0%,
transparent 50%,
rgba(13, 13, 13, 0.4) 100%
);
pointer-events: none;
} .panel-body {
max-width: 680px;
}
.panel-tag {
display: inline-block;
font-size: 11px;
font-weight: 500;
letter-spacing: 2.5px;
text-transform: uppercase;
color: #e0b94a;
padding: 6px 16px;
border: 1px solid rgba(224, 185, 74, 0.3);
margin-bottom: 25px;
}
.panel-heading {
font-size: 42px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.5px;
margin-bottom: 25px;
line-height: 1.2;
}
.panel-text {
font-size: 16px;
font-weight: 300;
line-height: 1.85;
color: rgba(245, 245, 245, 0.75);
margin-bottom: 35px;
} .panel-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}
.panel-features li {
display: flex;
align-items: center;
gap: 15px;
padding: 16px 20px;
background: rgba(224, 185, 74, 0.03);
border-left: 2px solid rgba(224, 185, 74, 0.3);
transition: all 0.3s ease;
}
.panel-features li:hover {
background: rgba(224, 185, 74, 0.06);
border-left-color: #e0b94a;
transform: translateX(5px);
}
.feature-icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #e0b94a;
font-size: 14px;
font-weight: 700;
}
.feature-label {
font-size: 15px;
font-weight: 400;
color: rgba(245, 245, 245, 0.85);
}
.feature-link {
margin-top: 40px;
} @media (max-width: 1024px) and (min-width: 769px) {
.resto-facets {
padding: 0 0 80px 0;
}
.resto-facets-container {
padding: 0 40px;
}
.facets-layout {
grid-template-columns: 1fr;
gap: 0;
}
.timeline-header {
display: block !important;
margin-bottom: 40px;
}
.timeline-subtitle {
font-size: 11px;
margin-bottom: 10px;
}
.timeline-title {
font-size: 36px;
} .facets-timeline {
position: sticky;
top: 0;
background: #0d0d0d;
z-index: 80;
padding: 25px 0 20px;
margin-bottom: 40px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
} .timeline-nav {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
flex-direction: row !important;
gap: 0 !important;
padding: 0 !important;
padding-top: 60px !important;
position: relative;
} .timeline-nav::before {
content: '';
position: absolute;
top: 30px !important;
left: 50px !important;
right: 50px !important;
width: auto !important;
height: 1px !important;
background: rgba(224, 185, 74, 0.12);
} .timeline-nav::after {
content: '';
display: block !important;
position: absolute;
top: 30px !important;
left: 50px !important;
right: auto !important;
width: 0% !important;
height: 1px !important;
background: #e0b94a;
box-shadow: 0 0 8px rgba(224, 185, 74, 0.4);
transition: width 0.7s ease;
}
.timeline-nav[data-active="1"]::after {
width: 16.66% !important;
}
.timeline-nav[data-active="2"]::after {
width: 50% !important;
}
.timeline-nav[data-active="3"]::after {
width: 83.33% !important;
} .timeline-btn {
padding: 0 !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
gap: 12px !important;
background: transparent !important;
border: none !important;
border-radius: 0 !important;
position: relative;
text-align: center;
}
.timeline-btn:hover {
background: transparent !important;
transform: none !important;
padding: 0 !important;
opacity: 1 !important;
}
.timeline-btn:not(.active) {
opacity: 0.5 !important;
} .timeline-btn::before {
content: '';
position: absolute;
top: -34px !important;
left: 50% !important;
transform: translateX(-50%) !important;
width: 10px !important;
height: 10px !important;
border-radius: 50%;
background: rgba(224, 185, 74, 0.2);
transition: all 0.3s ease;
z-index: 2;
}
.timeline-btn:hover::before {
width: 12px !important;
height: 12px !important;
top: -35px !important;
}
.timeline-btn.active::before {
width: 12px !important;
height: 12px !important;
background: #e0b94a;
box-shadow: 0 0 15px rgba(224, 185, 74, 0.6);
top: -35px !important;
}
.btn-number {
position: static !important;
transform: none !important;
font-size: 14px;
font-weight: 600;
color: rgba(224, 185, 74, 0.4);
order: 1;
}
.timeline-btn.active .btn-number {
color: #e0b94a;
font-weight: 700;
}
.btn-title {
font-size: 15px;
line-height: 1.3;
margin: 0 !important;
color: rgba(245, 245, 245, 0.6);
text-align: center;
order: 2;
padding: 0 10px;
}
.timeline-btn.active .btn-title {
font-weight: 600;
color: #ffffff;
}
.btn-subtitle {
display: none !important;
}
.facets-content {
min-height: auto;
}
.panel-visual {
height: 350px;
margin-bottom: 35px;
}
.panel-heading {
font-size: 32px;
}
.panel-text {
font-size: 15px;
}
} @media (max-width: 768px) {
.resto-facets {
padding: 0px 0 60px;
}
.resto-facets-container {
padding: 0 20px;
}
.facets-layout {
grid-template-columns: 1fr;
gap: 0;
}
.timeline-header {
display: block !important;
margin-bottom: 35px;
}
.timeline-subtitle {
font-size: 11px;
margin-bottom: 8px;
}
.timeline-title {
font-size: 32px;
} .facets-timeline {
position: sticky;
top: 0;
background: #0d0d0d;
z-index: 80;
padding: 20px 0 18px;
margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
} .timeline-nav {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
flex-direction: row !important;
gap: 0 !important;
padding: 0 !important;
padding-top: 50px !important;
position: relative;
} .timeline-nav::before {
content: '';
position: absolute;
top: 26px !important;
left: 30px !important;
right: 30px !important;
width: auto !important;
height: 1px !important;
background: rgba(224, 185, 74, 0.12);
} .timeline-nav::after {
content: '';
display: block !important;
position: absolute;
top: 26px !important;
left: 30px !important;
right: auto !important;
width: 0% !important;
height: 1px !important;
background: #e0b94a;
box-shadow: 0 0 8px rgba(224, 185, 74, 0.4);
transition: width 0.7s ease;
}
.timeline-nav[data-active="1"]::after {
width: 16.66% !important;
}
.timeline-nav[data-active="2"]::after {
width: 50% !important;
}
.timeline-nav[data-active="3"]::after {
width: 83.33% !important;
} .timeline-btn {
padding: 0 !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
gap: 10px !important;
background: transparent !important;
border: none !important;
border-radius: 0 !important;
position: relative;
text-align: center;
}
.timeline-btn:hover {
background: transparent !important;
transform: none !important;
padding: 0 !important;
opacity: 1 !important;
}
.timeline-btn:not(.active) {
opacity: 0.5 !important;
} .timeline-btn::before {
content: '';
position: absolute;
top: -28.5px !important;
left: 50% !important;
transform: translateX(-50%) !important;
width: 9px !important;
height: 9px !important;
border-radius: 50%;
background: rgba(224, 185, 74, 0.2);
transition: all 0.3s ease;
z-index: 2;
}
.timeline-btn:hover::before {
width: 11px !important;
height: 11px !important;
top: -29.5px !important;
}
.timeline-btn.active::before {
width: 11px !important;
height: 11px !important;
background: #e0b94a;
box-shadow: 0 0 15px rgba(224, 185, 74, 0.6);
top: -29.5px !important;
}
.btn-number {
position: static !important;
transform: none !important;
font-size: 12px;
font-weight: 600;
color: rgba(224, 185, 74, 0.4);
order: 1;
}
.timeline-btn.active .btn-number {
color: #e0b94a;
font-weight: 700;
}
.btn-title {
font-size: 13px;
line-height: 1.3;
margin: 0 !important;
color: rgba(245, 245, 245, 0.6);
text-align: center;
order: 2;
padding: 0 5px;
}
.timeline-btn.active .btn-title {
font-weight: 600;
color: #ffffff;
}
.btn-subtitle {
display: none !important;
}
.facets-content {
min-height: auto;
position: relative;
z-index: 1;
}
.panel-visual {
height: 280px;
margin-bottom: 30px;
}
.panel-tag {
font-size: 10px;
padding: 5px 14px;
}
.panel-heading {
font-size: 26px;
}
.panel-text {
font-size: 15px;
}
.panel-features li {
padding: 14px 16px;
}
.feature-label {
font-size: 14px;
}
} .resto-gallery {
background: #0d0d0d;
padding: 120px 0;
position: relative;
overflow: hidden;
}
.gallery-container {
max-width: 1600px;
margin: 0 auto;
padding: 0 60px;
} .gallery-header {
text-align: center;
margin-bottom: 70px;
}
.gallery-subtitle {
display: block;
font-size: 12px;
font-weight: 400;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.7);
margin-bottom: 12px;
}
.gallery-title {
font-size: 48px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.5px;
margin: 0;
} .gallery-carousel {
position: relative;
}
.gallery-track-container {
overflow: hidden;
cursor: grab;
user-select: none;
-webkit-user-select: none;
}
.gallery-track-container:active {
cursor: grabbing;
}
.gallery-track {
display: flex;
gap: 30px;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
} .gallery-slide {
min-width: calc((100% - 60px) / 3); flex-shrink: 0;
}
.gallery-image {
width: 100%;
aspect-ratio: 4/5;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
border-radius: 4px;
transition: transform 0.4s ease;
}
.gallery-slide:hover .gallery-image {
transform: scale(1.02);
} .gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
transparent 0%,
transparent 60%,
rgba(13, 13, 13, 0.9) 100%
);
display: flex;
align-items: flex-end;
padding: 30px;
opacity: 0;
transition: opacity 0.4s ease;
}
.gallery-slide:hover .gallery-overlay {
opacity: 1;
}
.gallery-category {
font-size: 14px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: #e0b94a;
} .gallery-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
margin-top: -25px; width: 50px;
height: 50px;
background: rgba(13, 13, 13, 0.8);
backdrop-filter: blur(10px);
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
color: rgba(224, 185, 74, 0.7);
}
.gallery-nav:hover {
background: rgba(224, 185, 74, 0.1);
border-color: rgba(224, 185, 74, 0.6);
color: #e0b94a;
transform: translateY(-50%) scale(1.1);
}
.gallery-prev {
left: -25px;
}
.gallery-next {
right: -25px;
} .gallery-counter {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 50px;
font-family: 'Poppins', sans-serif;
}
.gallery-counter-current {
font-size: 28px;
font-weight: 500;
color: #e0b94a;
min-width: 40px;
text-align: right;
}
.gallery-counter-separator {
font-size: 20px;
font-weight: 300;
color: rgba(245, 245, 245, 0.3);
}
.gallery-counter-total {
font-size: 20px;
font-weight: 300;
color: rgba(245, 245, 245, 0.5);
min-width: 40px;
text-align: left;
} @media (max-width: 1024px) {
.resto-gallery {
padding: 80px 0;
}
.gallery-container {
padding: 0 40px;
}
.gallery-slide {
min-width: calc((100% - 30px) / 2); }
.gallery-track {
gap: 30px;
}
.gallery-title {
font-size: 40px;
} .gallery-overlay {
opacity: 1;
}
} @media (max-width: 768px) {
.resto-gallery {
padding: 60px 0;
}
.gallery-container {
padding: 0 20px;
}
.gallery-header {
margin-bottom: 50px;
}
.gallery-title {
font-size: 36px;
}
.gallery-slide {
min-width: 100%; }
.gallery-track {
gap: 20px;
}
.gallery-image {
aspect-ratio: 1/1;
} .gallery-overlay {
opacity: 1;
}
.gallery-category {
font-size: 12px;
letter-spacing: 1.5px;
} .gallery-nav {
width: 45px;
height: 45px;
margin-top: -20px; }
.gallery-prev {
left: 10px;
}
.gallery-next {
right: 10px;
}
.gallery-prev,
.gallery-next {
touch-action: manipulation;
-webkit-user-select: none;
user-select: none;
} .gallery-counter {
margin-top: 40px;
}
.gallery-counter-current {
font-size: 24px;
min-width: 35px;
}
.gallery-counter-separator {
font-size: 18px;
}
.gallery-counter-total {
font-size: 18px;
min-width: 35px;
}
} .why-us {
background: #0d0d0d;
padding: 120px 0;
position: relative;
overflow: hidden;
}
.why-us::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}
.why-us-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
} .why-us-header {
text-align: center;
margin-bottom: 70px;
}
.why-us-label {
display: block;
font-size: 12px;
font-weight: 400;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.7);
margin-bottom: 12px;
}
.why-us-title {
font-size: 48px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.5px;
margin: 0 0 20px 0;
}
.why-us-subtitle {
font-size: 16px;
font-weight: 300;
line-height: 1.7;
color: rgba(245, 245, 245, 0.6);
max-width: 700px;
margin: 0 auto;
} .why-us-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
} .why-card {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(15, 15, 15, 0.6));
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.15);
border-radius: 20px;
padding: 40px 35px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, #e0b94a, transparent);
opacity: 0;
transition: opacity 0.4s ease;
}
.why-card:hover {
border-color: rgba(224, 185, 74, 0.3);
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
0 0 40px rgba(224, 185, 74, 0.15);
}
.why-card:hover::before {
opacity: 1;
} .why-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.05));
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
color: #e0b94a;
transition: all 0.4s ease;
position: relative;
}
.why-icon::after {
content: '';
position: absolute;
inset: -10px;
border-radius: 50%;
background: radial-gradient(circle, rgba(224, 185, 74, 0.2) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}
.why-card:hover .why-icon {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.25), rgba(224, 185, 74, 0.1));
border-color: rgba(224, 185, 74, 0.5);
transform: scale(1.05);
box-shadow: 0 0 30px rgba(224, 185, 74, 0.3);
}
.why-card:hover .why-icon::after {
opacity: 1;
} .why-title {
font-size: 22px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.3px;
margin: 0;
} .why-text {
font-size: 15px;
font-weight: 300;
line-height: 1.7;
color: rgba(245, 245, 245, 0.7);
margin: 0;
} @media (max-width: 1024px) {
.why-us {
padding: 80px 0;
}
.why-us-container {
padding: 0 40px;
}
.why-us-header {
margin-bottom: 60px;
}
.why-us-title {
font-size: 40px;
}
.why-us-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.why-card {
padding: 35px 30px;
}
} @media (max-width: 768px) {
.why-us {
padding: 60px 0;
}
.why-us-container {
padding: 0 20px;
}
.why-us-header {
margin-bottom: 50px;
}
.why-us-title {
font-size: 36px;
}
.why-us-subtitle {
font-size: 15px;
}
.why-us-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.why-card {
padding: 35px 28px;
}
.why-icon {
width: 70px;
height: 70px;
}
.why-icon svg {
width: 40px;
height: 40px;
}
.why-title {
font-size: 20px;
}
.why-text {
font-size: 14px;
}
}
.euro-symbol {
font-size: 48px;
font-weight: 300; color: #e0b94a;
line-height: 1;
font-family: 'Poppins', sans-serif;
} .why-us-cta {
margin-top: 70px;
padding: 50px 60px;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.08), rgba(224, 185, 74, 0.03));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
position: relative;
overflow: hidden;
}
.why-us-cta::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.1), transparent);
transition: left 0.6s ease;
}
.why-us-cta:hover::before {
left: 100%;
}
.cta-content {
flex: 1;
}
.cta-title {
font-size: 28px;
font-weight: 500;
color: #ffffff;
letter-spacing: -0.5px;
margin: 0 0 12px 0;
}
.cta-text {
font-size: 16px;
font-weight: 300;
color: rgba(245, 245, 245, 0.7);
margin: 0;
line-height: 1.6;
}
.cta-btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 18px 40px;
background: linear-gradient(135deg, #e0b94a, #d4a832);
border: 1px solid rgba(224, 185, 74, 0.5);
border-radius: 50px;
color: #0d0d0d;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.3px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 8px 30px rgba(224, 185, 74, 0.25);
position: relative;
z-index: 1;
white-space: nowrap;
}
.cta-btn:hover {
background: linear-gradient(135deg, #f0c95a, #e0b94a);
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(224, 185, 74, 0.4);
}
.cta-btn svg {
transition: transform 0.3s ease;
}
.cta-btn:hover svg {
transform: scale(1.1);
} @media (max-width: 1024px) {
.why-us-cta {
margin-top: 60px;
padding: 45px 50px;
gap: 30px;
}
.cta-title {
font-size: 24px;
}
.cta-text {
font-size: 15px;
}
} @media (max-width: 768px) {
.why-us-cta {
margin-top: 50px;
padding: 35px 25px;
flex-direction: column;
text-align: center;
gap: 25px;
}
.cta-title {
font-size: 22px;
}
.cta-text {
font-size: 14px;
}
.cta-btn {
width: 100%;
justify-content: center;
padding: 16px 35px;
font-size: 15px;
}
} .carte-system {
background: #0d0d0d;
min-height: 100vh;
padding: 0 0 100px 0;
} .carte-nav {
background: linear-gradient(180deg, #0d0d0d 0%, rgba(13, 13, 13, 0.98) 100%);
backdrop-filter: blur(30px);
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
padding: 30px 0;
}
.nav-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
display: flex;
align-items: center;
gap: 20px;
} .carte-nav-wrapper {
display: flex;
align-items: center;
gap: 20px;
padding: 0 60px;
} .carte-nav-arrow {
width: 50px;
height: 50px;
min-width: 50px;
background: rgba(20, 20, 20, 0.6);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 50%;
color: rgba(224, 185, 74, 0.6);
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.carte-nav-arrow:hover {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.25), rgba(224, 185, 74, 0.15));
border-color: rgba(224, 185, 74, 0.5);
color: #e0b94a;
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(224, 185, 74, 0.25);
}
.carte-nav-arrow:active {
transform: scale(0.95);
}
.carte-nav-arrow.disabled {
opacity: 0.2;
pointer-events: none;
cursor: not-allowed;
} @media (max-width: 1024px) {
.carte-nav-wrapper {
padding: 0 40px;
}
} @media (max-width: 768px) {
.carte-nav-wrapper {
padding: 0 15px;
gap: 15px;
}
.carte-nav-arrow {
width: 45px;
height: 45px;
min-width: 45px;
}
} .nav-pills {
flex: 1;
display: flex;
gap: 12px;
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 5px 0;
}
.nav-pills::-webkit-scrollbar {
display: none;
} .pill {
background: transparent;
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 50px;
padding: 14px 28px;
color: rgba(245, 245, 245, 0.6);
font-size: 14px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
letter-spacing: 0.3px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
white-space: nowrap;
position: relative;
overflow: hidden;
flex-shrink: 0;
} .pill:hover {
border-color: rgba(224, 185, 74, 0.5);
color: #e0b94a;
background: rgba(224, 185, 74, 0.05);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(224, 185, 74, 0.15);
} .pill.active {
background: rgba(224, 185, 74, 0.12);
border-color: #e0b94a;
color: #e0b94a;
box-shadow: 
0 0 0 1px rgba(224, 185, 74, 0.3),
0 4px 20px rgba(224, 185, 74, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.pill-count {
font-size: 11px;
font-weight: 600;
color: rgba(224, 185, 74, 0.5);
background: rgba(224, 185, 74, 0.1);
padding: 4px 10px;
border-radius: 20px;
transition: all 0.3s ease;
}
.pill:hover .pill-count {
background: rgba(224, 185, 74, 0.15);
color: rgba(224, 185, 74, 0.8);
}
.pill.active .pill-count {
background: rgba(224, 185, 74, 0.2);
color: #e0b94a;
font-weight: 700;
} .carte-content {
max-width: 1300px;
margin: 0 auto;
padding: 70px 60px 0 60px;
position: relative;
}
.category-content {
display: none; opacity: 0;
transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-content.active {
display: block; opacity: 1;
} .category-header {
text-align: center;
margin-bottom: 60px;
}
.category-title {
font-size: 52px;
font-weight: 500;
color: #ffffff;
letter-spacing: -1px;
margin: 0 0 12px 0;
line-height: 1.1;
}
.category-subtitle {
font-size: 15px;
font-weight: 300;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.7);
margin: 0;
} .items-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
gap: 30px;
}
.dish-card {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(15, 15, 15, 0.3));
border: 1px solid rgba(224, 185, 74, 0.12);
border-radius: 16px;
padding: 32px;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 30px;
transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
position: relative;
overflow: hidden;
}
.dish-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.4), transparent);
opacity: 0;
transition: opacity 0.4s ease;
}
.dish-card:hover {
border-color: rgba(224, 185, 74, 0.3);
background: linear-gradient(135deg, rgba(20, 20, 20, 0.7), rgba(15, 15, 15, 0.5));
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.dish-card:hover::before {
opacity: 1;
}
.dish-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 10px;
}
.dish-name {
font-size: 19px;
font-weight: 500;
color: #ffffff;
margin: 0;
letter-spacing: -0.3px;
line-height: 1.3;
}
.dish-desc {
font-size: 14px;
font-weight: 300;
line-height: 1.7;
color: rgba(245, 245, 245, 0.6);
margin: 0;
}
.dish-variant {
display: inline-block;
font-size: 12px;
font-weight: 500;
color: rgba(224, 185, 74, 0.9);
background: rgba(224, 185, 74, 0.12);
padding: 6px 14px;
border-radius: 20px;
margin-top: 6px;
align-self: flex-start;
}
.dish-price {
font-size: 22px;
font-weight: 600;
color: #e0b94a;
white-space: nowrap;
text-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
flex-shrink: 0;
} .category-note {
margin-top: 50px;
padding: 20px 28px;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.08), rgba(224, 185, 74, 0.03));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 16px;
display: flex;
align-items: center;
gap: 12px;
color: rgba(245, 245, 245, 0.7);
font-size: 14px;
font-weight: 300;
}
.category-note svg {
color: #e0b94a;
flex-shrink: 0;
} .wine-section {
display: flex;
flex-direction: column;
gap: 35px;
}
.wine-category {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(15, 15, 15, 0.3));
border: 1px solid rgba(224, 185, 74, 0.12);
border-radius: 20px;
padding: 40px;
transition: all 0.3s ease;
}
.wine-category:hover {
border-color: rgba(224, 185, 74, 0.25);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.wine-category-title {
font-size: 26px;
font-weight: 500;
color: #e0b94a;
margin: 0 0 30px 0;
padding-bottom: 20px;
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}
.wine-list {
display: flex;
flex-direction: column;
gap: 18px;
}
.wine-item {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 25px;
padding: 14px 0;
transition: all 0.3s ease;
}
.wine-item:hover {
padding-left: 12px;
}
.wine-name {
flex: 1;
font-size: 16px;
font-weight: 400;
color: rgba(245, 245, 245, 0.9);
line-height: 1.5;
}
.wine-price {
font-size: 18px;
font-weight: 600;
color: #e0b94a;
white-space: nowrap;
text-shadow: 0 0 15px rgba(224, 185, 74, 0.3);
} @media (max-width: 1024px) {
.nav-wrapper {
padding: 0 40px;
}
.carte-content {
padding: 60px 40px 0 40px;
}
.category-content {
left: 40px;
right: 40px;
}
.category-title {
font-size: 44px;
}
.items-grid {
grid-template-columns: 1fr;
}
} @media (max-width: 768px) {
.carte-nav {
padding: 20px 0;
}
.nav-wrapper {
padding: 0 15px;
gap: 15px;
}
.nav-arrow {
width: 45px;
height: 45px;
min-width: 45px;
} .nav-pills {
flex: 1;
display: flex;
gap: 15px;
overflow-x: hidden;
scroll-snap-type: x mandatory;
padding: 5px;
position: relative;
}
.pill {
min-width: 100%;
flex-shrink: 0;
scroll-snap-align: center;
padding: 16px 24px;
font-size: 15px;
justify-content: center;
text-align: center;
}
.pill-count {
font-size: 11px;
padding: 4px 10px;
}
.carte-content {
padding: 50px 20px 0 20px;
min-height: 600px;
}
.category-content {
left: 20px;
right: 20px;
top: 50px;
}
.category-header {
margin-bottom: 40px;
}
.category-title {
font-size: 36px;
}
.category-subtitle {
font-size: 13px;
}
.items-grid {
gap: 20px;
}
.dish-card {
padding: 24px;
flex-direction: column;
gap: 16px;
}
.dish-name {
font-size: 17px;
}
.dish-desc {
font-size: 13px;
}
.dish-price {
font-size: 20px;
align-self: flex-start;
}
.wine-category {
padding: 28px 24px;
}
.wine-category-title {
font-size: 22px;
}
.wine-item {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
} .nav-pills {
flex: 1;
display: flex;
gap: 12px;
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 5px 0;
cursor: grab;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
.nav-pills.dragging {
cursor: grabbing;
scroll-behavior: auto;
} .nav-pills.dragging .pill:hover {
transform: none; box-shadow: none;
} @media (max-width: 768px) {
.nav-pills {
cursor: default;
user-select: auto;
}
} .carte-booking-section {
margin-top: 80px;
display: flex;
flex-direction: column;
align-items: center;
} .carte-booking-divider {
width: 100%;
height: 1px;
background: linear-gradient(
90deg,
transparent 0%,
rgba(224, 185, 74, 0.3) 50%,
transparent 100%
);
margin-bottom: 40px;
} .carte-booking-inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
text-align: center;
} .carte-booking-label {
font-size: 15px;
font-weight: 300;
color: rgba(245, 245, 245, 0.7);
margin: 0;
letter-spacing: 0.5px;
} .carte-booking-link {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 16px 36px;
background: linear-gradient(135deg, #e0b94a, #d4a73e);
color: #0d0d0d;
font-size: 15px;
font-weight: 600;
text-decoration: none;
letter-spacing: 0.3px;
border-radius: 50px;
border: 1px solid rgba(224, 185, 74, 0.3);
box-shadow: 
0 4px 20px rgba(224, 185, 74, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
position: relative;
overflow: hidden;
} .carte-booking-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.3),
transparent
);
transition: left 0.6s ease;
}
.carte-booking-link:hover::before {
left: 100%;
}
.carte-booking-link:hover {
transform: translateY(-3px);
box-shadow: 
0 8px 30px rgba(224, 185, 74, 0.45),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
border-color: rgba(224, 185, 74, 0.5);
}
.carte-booking-link svg {
transition: transform 0.3s ease;
stroke-width: 2.5;
}
.carte-booking-link:hover svg {
transform: translateX(4px);
} @media (max-width: 768px) {
.carte-booking-section {
margin-top: 60px;
}
.carte-booking-divider {
margin-bottom: 30px;
}
.carte-booking-label {
font-size: 14px;
}
.carte-booking-link {
font-size: 14px;
padding: 14px 32px;
}
} .wine-accordion-container {
display: flex;
flex-direction: column;
gap: 25px;
}
.wine-accordion-item {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(15, 15, 15, 0.3));
border: 1px solid rgba(224, 185, 74, 0.12);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
}
.wine-accordion-item:hover {
border-color: rgba(224, 185, 74, 0.25);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.wine-accordion-item.active {
border-color: rgba(224, 185, 74, 0.3);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
} .wine-accordion-header {
width: 100%;
padding: 32px 40px;
background: transparent;
border: none;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
cursor: pointer;
transition: all 0.3s ease;
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}
.wine-accordion-item.active .wine-accordion-header {
padding-bottom: 28px;
}
.wine-accordion-header:hover {
background: rgba(224, 185, 74, 0.03);
}
.wine-accordion-title {
flex: 1;
font-size: 24px;
font-weight: 500;
color: #e0b94a;
text-align: left;
letter-spacing: -0.5px;
}
.wine-accordion-count {
font-size: 13px;
font-weight: 500;
color: rgba(224, 185, 74, 0.8);
padding: 6px 14px;
background: rgba(224, 185, 74, 0.12);
border-radius: 20px;
letter-spacing: 0.3px;
}
.wine-accordion-icon {
color: rgba(224, 185, 74, 0.6);
transition: transform 0.3s ease;
flex-shrink: 0;
}
.wine-accordion-item.active .wine-accordion-icon {
transform: rotate(180deg);
} .wine-accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wine-accordion-item.active .wine-accordion-content {
max-height: 2000px;
}
.wine-accordion-content .wine-list {
padding: 30px 40px 40px 40px;
display: flex;
flex-direction: column;
gap: 18px;
} .wine-accordion-content .wine-item {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 25px;
padding: 14px 0;
transition: all 0.3s ease;
}
.wine-accordion-content .wine-item:hover {
padding-left: 12px;
}
.wine-name {
flex: 1;
font-size: 16px;
font-weight: 400;
color: rgba(245, 245, 245, 0.9);
line-height: 1.5;
}
.wine-price {
font-size: 18px;
font-weight: 600;
color: #e0b94a;
white-space: nowrap;
text-shadow: 0 0 15px rgba(224, 185, 74, 0.3);
} @media (max-width: 1024px) {
.wine-accordion-header {
padding: 28px 35px;
}
.wine-accordion-title {
font-size: 22px;
}
.wine-accordion-content .wine-list {
padding: 25px 35px 35px 35px;
}
}
@media (max-width: 768px) {
.wine-accordion-container {
gap: 20px;
}
.wine-accordion-item {
border-radius: 16px;
}
.wine-accordion-header {
padding: 24px 28px;
}
.wine-accordion-item.active .wine-accordion-header {
padding-bottom: 20px;
}
.wine-accordion-title {
font-size: 20px;
}
.wine-accordion-count {
font-size: 12px;
padding: 5px 12px;
}
.wine-accordion-icon {
width: 18px;
height: 18px;
}
.wine-accordion-content .wine-list {
padding: 20px 28px 28px 28px;
gap: 12px;
}
.wine-accordion-content .wine-item {
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 12px 0;
}
.wine-accordion-content .wine-item:hover {
padding-left: 0;
}
.wine-name {
font-size: 15px;
}
.wine-price {
font-size: 17px;
}
} .supplements-section {
margin-top: 40px;
}
.supplement-category {
background: rgba(20, 20, 20, 0.3);
border: 1px solid rgba(224, 185, 74, 0.1);
border-radius: 16px;
padding: 30px;
max-width: 800px;
}
.supplement-title {
font-size: 20px;
font-weight: 500;
color: rgba(224, 185, 74, 0.9);
margin: 0 0 20px 0;
padding-bottom: 15px;
border-bottom: 1px solid rgba(224, 185, 74, 0.12);
}
.supplement-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.supplement-item {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
}
.supplement-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 6px;
}
.supplement-name {
font-size: 15px;
font-weight: 500;
color: rgba(245, 245, 245, 0.9);
}
.supplement-desc {
font-size: 13px;
font-weight: 300;
color: rgba(245, 245, 245, 0.6);
line-height: 1.5;
}
.supplement-price {
font-size: 16px;
font-weight: 600;
color: #e0b94a;
white-space: nowrap;
} .supplement-divider {
height: 1px;
background: linear-gradient(
90deg,
transparent 0%,
rgba(224, 185, 74, 0.2) 50%,
transparent 100%
);
margin: 25px 0;
} .supplement-sauces {
margin-top: 0;
}
.supplement-sauces-text {
font-size: 14px;
font-weight: 300;
color: rgba(245, 245, 245, 0.85);
line-height: 1.7;
margin: 0;
}
.supplement-sauces-text strong {
font-weight: 600;
color: rgba(224, 185, 74, 0.9);
} @media (max-width: 768px) {
.supplements-section {
margin-top: 30px;
}
.supplement-category {
padding: 24px;
max-width: 100%;
}
.supplement-title {
font-size: 18px;
}
.supplement-item {
flex-direction: column;
gap: 8px;
}
.supplement-divider {
margin: 20px 0;
}
.supplement-sauces-text {
font-size: 13px;
}
} .wine-warning {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 35px;
padding-bottom: 30px;
border-bottom: 1px solid rgba(224, 185, 74, 0.1);
}
.wine-warning svg {
color: rgba(255, 152, 0, 0.7);
flex-shrink: 0;
}
.wine-warning p {
margin: 0;
font-size: 13px;
font-weight: 300;
color: rgba(245, 245, 245, 0.6);
line-height: 1.5;
font-style: italic;
} @media (max-width: 768px) {
.wine-warning {
margin-bottom: 30px;
padding-bottom: 25px;
}
.wine-warning svg {
width: 18px;
height: 18px;
}
.wine-warning p {
font-size: 12px;
}
} @media (min-width: 769px) {
body.page-carte-bar .nav-pills {
justify-content: center; flex-wrap: nowrap;
padding: 5px 20px; overflow-x: visible;
} body.page-carte-bar .nav-pills:not(.has-overflow) {
overflow-x: visible;
}
}  @media (hover: none) and (pointer: coarse) { .carte-nav-arrow:hover {
background: rgba(20, 20, 20, 0.6);
border-color: rgba(224, 185, 74, 0.2);
color: rgba(224, 185, 74, 0.6);
transform: none;
box-shadow: none;
} .dish-card:hover {
border-color: rgba(224, 185, 74, 0.12);
background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(15, 15, 15, 0.3));
transform: none;
box-shadow: none;
}
.dish-card:hover::before {
opacity: 0;
}
.wine-accordion-item:hover {
border-color: rgba(224, 185, 74, 0.12);
box-shadow: none;
}
.wine-accordion-content .wine-item:hover {
padding-left: 0;
} .wine-category:hover {
border-color: rgba(224, 185, 74, 0.12);
box-shadow: none;
}
.wine-item:hover {
padding-left: 0;
} .carte-booking-link:hover {
transform: none;
box-shadow: 
0 4px 20px rgba(224, 185, 74, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
border-color: rgba(224, 185, 74, 0.3);
}
.carte-booking-link:hover::before {
left: -100%;
}
.carte-booking-link:hover svg {
transform: none;
}
} .wine-accordion-header {
width: 100%;
padding: 32px 40px;
background: transparent;
border: none;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
cursor: pointer;
transition: all 0.3s ease;
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}
.wine-accordion-item.active .wine-accordion-header {
padding-bottom: 28px;
background: rgba(224, 185, 74, 0.03); 
}
.wine-accordion-header:hover {
background: rgba(224, 185, 74, 0.03);
}
@media (max-width: 768px) {
.wine-accordion-header {
padding: 24px 28px;
}
.wine-accordion-item.active .wine-accordion-header {
padding-bottom: 20px;
background: rgba(224, 185, 74, 0.03); 
}
}  .reservation-section {
background: #0d0d0d;
padding: 0px 20px 120px;
min-height: 100vh;
}
.reservation-container {
max-width: 900px;
margin: 0 auto;
} .reservation-progress {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto 60px;
position: relative;
max-width: 700px;
padding: 0 40px;
}
.progress-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
position: relative;
z-index: 3;
flex-shrink: 0;
} .step-circle {
width: 64px;
height: 64px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(20, 20, 20, 0.95));
border: 2px solid rgba(224, 185, 74, 0.15);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
} .step-circle::before {
content: '';
position: absolute;
inset: -4px;
border-radius: 50%;
background: radial-gradient(circle at center, rgba(224, 185, 74, 0.15), transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
z-index: -1;
}
.progress-step:hover .step-circle::before {
opacity: 1;
}
.step-number {
font-size: 22px;
font-weight: 700;
color: rgba(245, 245, 245, 0.35);
transition: all 0.4s ease;
display: block;
letter-spacing: -0.5px;
}
.step-check {
display: none;
color: #0d0d0d;
position: absolute;
}
.step-label {
font-size: 13px;
font-weight: 600;
color: rgba(245, 245, 245, 0.4);
transition: all 0.4s ease;
white-space: nowrap;
letter-spacing: 0.5px;
text-transform: uppercase;
} .progress-line {
height: 3px;
flex: 1;
background: linear-gradient(90deg, 
rgba(224, 185, 74, 0.08) 0%, 
rgba(224, 185, 74, 0.12) 50%, 
rgba(224, 185, 74, 0.08) 100%
);
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
} .progress-fill {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0%;
background: linear-gradient(90deg, 
#e0b94a 0%, 
#f4d078 50%, 
#e0b94a 100%
);
background-size: 200% 100%;
animation: shimmer 2s linear infinite;
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 10px;
box-shadow: 
0 0 10px rgba(224, 185, 74, 0.5),
0 0 20px rgba(224, 185, 74, 0.3);
}
@keyframes shimmer {
0% { background-position: 200% center; }
100% { background-position: -200% center; }
} .progress-step.active .step-circle {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: #e0b94a;
border-width: 3px;
box-shadow: 
0 0 0 5px rgba(224, 185, 74, 0.1),
0 8px 24px rgba(224, 185, 74, 0.25),
inset 0 2px 8px rgba(224, 185, 74, 0.1);
transform: scale(1.05);
}
.progress-step.active .step-number {
color: #e0b94a;
font-size: 24px;
text-shadow: 0 0 10px rgba(224, 185, 74, 0.5);
}
.progress-step.active .step-label {
color: #e0b94a;
font-weight: 700;
text-shadow: 0 0 10px rgba(224, 185, 74, 0.3);
} .progress-step.completed .step-circle {
background: linear-gradient(135deg, #e0b94a 0%, #d4a940 100%);
border-color: #f4d078;
border-width: 2px;
box-shadow: 
0 0 0 4px rgba(224, 185, 74, 0.15),
0 6px 20px rgba(224, 185, 74, 0.4),
inset 0 1px 3px rgba(255, 255, 255, 0.3);
}
.progress-step.completed .step-number {
display: none;
}
.progress-step.completed .step-check {
display: block;
animation: checkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes checkPop {
0% { transform: scale(0) rotate(-45deg); opacity: 0; }
50% { transform: scale(1.2) rotate(5deg); }
100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.progress-step.completed .step-label {
color: #e0b94a;
font-weight: 700;
} .progress-step.completed + .progress-line .progress-fill {
width: 100%;
} @keyframes pulse {
0%, 100% { transform: scale(1.05); }
50% { transform: scale(1.08); }
}
.progress-step.active .step-circle {
animation: pulse 2s ease-in-out infinite;
} .reservation-form {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(15, 15, 15, 0.7));
border: 1px solid rgba(224, 185, 74, 0.12);
border-radius: 24px;
padding: 50px;
backdrop-filter: blur(20px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.form-step {
display: none;
animation: fadeIn 0.5s ease;
}
.form-step.active {
display: block;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.form-step-title {
font-size: 32px;
font-weight: 600;
color: #f5f5f5;
margin: 0 0 12px 0;
letter-spacing: -0.5px;
}
.form-step-subtitle {
font-size: 16px;
color: rgba(245, 245, 245, 0.6);
margin: 0 0 40px 0;
line-height: 1.6;
} .experience-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 40px;
}
.experience-card {
position: relative;
cursor: pointer;
background: rgba(15, 15, 15, 0.5);
border: 2px solid rgba(224, 185, 74, 0.15);
border-radius: 20px;
padding: 28px 24px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
display: block;
}
.experience-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.05), transparent);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}
.experience-card:hover {
border-color: rgba(224, 185, 74, 0.3);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.experience-card:hover::before {
opacity: 1;
} .experience-card input[type="radio"] {
position: absolute;
opacity: 0;
pointer-events: none;
} .experience-card input[type="radio"]:checked + .card-content + .card-checkmark {
opacity: 1;
transform: scale(1);
}
.experience-card:has(input[type="radio"]:checked) {
border-color: #e0b94a;
background: rgba(224, 185, 74, 0.08);
box-shadow: 0 0 0 1px #e0b94a, 0 16px 48px rgba(224, 185, 74, 0.15);
}
.experience-card:has(input[type="radio"]:checked)::before {
opacity: 1;
}
.card-content {
position: relative;
z-index: 1;
}
.card-icon {
width: 64px;
height: 64px;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.05));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: #e0b94a;
}
.card-icon svg {
width: 48px;
height: 48px;
}
.card-title {
font-size: 20px;
font-weight: 600;
color: #f5f5f5;
margin: 0 0 10px 0;
text-align: center;
}
.card-description {
font-size: 13px;
color: rgba(245, 245, 245, 0.65);
margin: 0 0 20px 0;
line-height: 1.6;
text-align: center;
min-height: 42px;
}
.card-features {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.card-features li {
font-size: 13px;
color: rgba(245, 245, 245, 0.5);
padding-left: 24px;
position: relative;
}
.card-features li::before {
content: '✓';
position: absolute;
left: 0;
color: #e0b94a;
font-weight: 600;
}
.card-checkmark {
position: absolute;
top: 20px;
right: 20px;
width: 28px;
height: 28px;
color: #e0b94a;
opacity: 0;
transform: scale(0.8);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-checkmark svg {
width: 100%;
height: 100%;
} .form-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-bottom: 40px;
}
.form-group-full {
grid-column: 1 / -1;
}
.form-group {
display: flex;
flex-direction: column;
gap: 12px;
}
.form-label {
font-size: 14px;
font-weight: 500;
color: rgba(245, 245, 245, 0.8);
display: flex;
align-items: center;
gap: 8px;
}
.form-label svg {
width: 18px;
height: 18px;
color: rgba(224, 185, 74, 0.7);
flex-shrink: 0;
}
.form-input,
.form-textarea {
width: 100%;
padding: 16px 20px;
background: rgba(20, 20, 20, 0.6);
border: 1.5px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
color: #f5f5f5;
font-size: 15px;
font-family: 'Poppins', sans-serif;
transition: all 0.3s ease;
outline: none;
}
.form-input:focus,
.form-textarea:focus {
border-color: #e0b94a;
background: rgba(20, 20, 20, 0.8);
box-shadow: 0 0 0 3px rgba(224, 185, 74, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
color: rgba(245, 245, 245, 0.3);
}
.form-textarea {
resize: vertical;
min-height: 120px;
} .form-input[type="date"],
select.form-input {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23e0b94a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 20px center;
padding-right: 50px;
} select.form-input option {
background: #1a1a1a;
color: #f5f5f5;
padding: 10px;
}  input[type="date"] {
color-scheme: light !important;
cursor: pointer;
position: relative;
padding-right: 50px !important; background-image: none !important;
} input[type="date"]::-webkit-calendar-picker-indicator {
cursor: pointer;
opacity: 0.8;
position: absolute;
right: 20px;
width: 18px;
height: 18px;
filter: brightness(0) saturate(100%) invert(79%) sepia(21%) saturate(1288%) hue-rotate(358deg) brightness(98%) contrast(88%);
transition: all 0.3s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
opacity: 1;
filter: brightness(0) saturate(100%) invert(88%) sepia(21%) saturate(1688%) hue-rotate(358deg) brightness(105%) contrast(92%);
transform: scale(1.1);
} input[type="date"]::-webkit-datetime-edit {
color: #f5f5f5;
}
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
padding: 0;
color: #f5f5f5;
}
input[type="date"]::-webkit-datetime-edit-text {
color: rgba(245, 245, 245, 0.5);
padding: 0 2px;
}
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
color: #f5f5f5;
} @-moz-document url-prefix() {
input[type="date"] {
color-scheme: light !important;
}
} .reservation-summary {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.08), rgba(224, 185, 74, 0.03));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 16px;
padding: 28px;
margin-bottom: 40px;
}
.summary-title {
font-size: 18px;
font-weight: 600;
color: #e0b94a;
margin: 0 0 20px 0;
}
.summary-content {
display: flex;
flex-direction: column;
gap: 14px;
}
.summary-item {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 14px;
border-bottom: 1px solid rgba(224, 185, 74, 0.1);
}
.summary-item:last-child {
padding-bottom: 0;
border-bottom: none;
}
.summary-label {
font-size: 14px;
color: rgba(245, 245, 245, 0.6);
font-weight: 500;
}
.summary-value {
font-size: 15px;
color: #f5f5f5;
font-weight: 600;
} .form-actions {
display: flex;
gap: 16px;
justify-content: space-between;
}
.btn-next,
.btn-prev,
.btn-submit {
padding: 16px 32px;
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;
}
.btn-next,
.btn-submit {
background: linear-gradient(135deg, #e0b94a, #d4a940);
color: #0d0d0d;
margin-left: auto;
box-shadow: 0 4px 16px rgba(224, 185, 74, 0.3);
}
.btn-next svg,
.btn-submit svg,
.btn-prev svg {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.btn-next:hover,
.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(224, 185, 74, 0.4);
}
.btn-next:active,
.btn-submit:active {
transform: translateY(0);
}
.btn-prev {
background: rgba(20, 20, 20, 0.6);
color: #f5f5f5;
border: 1.5px solid rgba(224, 185, 74, 0.25);
}
.btn-prev:hover {
background: rgba(20, 20, 20, 0.8);
border-color: rgba(224, 185, 74, 0.4);
} @media (min-width: 769px) {
.btn-submit {
flex: 0 0 auto;
min-width: 280px;
}
} .modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(10px);
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 20px;
animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
display: flex;
}
.modal-content {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 24px;
padding: 50px 40px;
max-width: 500px;
width: 100%;
text-align: center;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.modal-icon {
margin-bottom: 24px;
display: flex;
justify-content: center;
}
.modal-title {
font-size: 28px;
font-weight: 600;
color: #e0b94a;
margin: 0 0 16px 0;
}
.modal-message {
font-size: 15px;
color: rgba(245, 245, 245, 0.7);
line-height: 1.7;
margin: 0 0 32px 0;
}
.modal-button {
padding: 16px 40px;
background: linear-gradient(135deg, #e0b94a, #d4a940);
color: #0d0d0d;
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
cursor: pointer;
transition: all 0.3s ease;
}
.modal-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(224, 185, 74, 0.4);
} @media (max-width: 1024px) {
.reservation-section {
padding: 0px 20px 100px;
}
.reservation-form {
padding: 40px 35px;
}
.form-step-title {
font-size: 28px;
}
.experience-cards {
gap: 16px;
}
.experience-card {
padding: 24px 20px;
}
.card-title {
font-size: 18px;
}
} @media (max-width: 768px) {
.reservation-section {
padding: 0px 16px 80px;
}
.reservation-progress {
margin-bottom: 40px;
padding: 0 20px;
}
.step-circle {
width: 56px;
height: 56px;
}
.step-number {
font-size: 20px;
}
.progress-step.active .step-number {
font-size: 22px;
}
.step-label {
font-size: 11px;
}
.progress-line {
height: 2px;
}
.reservation-form {
padding: 32px 24px;
border-radius: 20px;
}
.form-step-title {
font-size: 24px;
}
.form-step-subtitle {
font-size: 14px;
margin-bottom: 32px;
}
.experience-cards {
grid-template-columns: 1fr;
gap: 16px;
}
.experience-card {
padding: 24px 20px;
}
.card-icon {
width: 56px;
height: 56px;
}
.card-icon svg {
width: 40px;
height: 40px;
}
.card-title {
font-size: 18px;
}
.card-description {
min-height: auto;
}
.form-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.form-actions {
flex-direction: column-reverse;
gap: 12px;
}
.btn-next,
.btn-prev,
.btn-submit {
width: 100%;
justify-content: center;
margin-left: 0;
}
.modal-content {
padding: 40px 28px;
}
.modal-title {
font-size: 24px;
}
}
@media (max-width: 600px) {
.reservation-progress {
padding: 0 10px;
}
.step-circle {
width: 48px;
height: 48px;
}
.step-number {
font-size: 18px;
}
.progress-step.active .step-number {
font-size: 20px;
}
.step-label {
font-size: 10px;
}
}
@media (max-width: 480px) {
.reservation-progress {
margin-bottom: 32px;
}
.step-circle {
width: 44px;
height: 44px;
}
.step-number {
font-size: 16px;
}
.progress-step.active .step-number {
font-size: 18px;
}
.step-label {
display: none;
}
.progress-line {
flex: 0.5;
}
.reservation-form {
padding: 28px 20px;
}
.form-step-title {
font-size: 22px;
}
.card-icon {
width: 48px;
height: 48px;
}
.card-icon svg {
width: 36px;
height: 36px;
}
.card-title {
font-size: 17px;
}
.form-input,
.form-textarea {
padding: 14px 16px;
}
} .error-modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(10px);
display: none;
align-items: center;
justify-content: center;
z-index: 1001;
padding: 20px;
animation: fadeIn 0.3s ease;
}
.error-modal-overlay.active {
display: flex;
}
.error-modal-content {
background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
border: 1px solid rgba(224, 74, 74, 0.3);
border-radius: 24px;
padding: 50px 40px;
max-width: 500px;
width: 100%;
text-align: center;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.error-modal-icon {
margin-bottom: 24px;
display: flex;
justify-content: center;
}
.error-modal-title {
font-size: 28px;
font-weight: 600;
color: #e04a4a;
margin: 0 0 16px 0;
}
.error-modal-message {
font-size: 15px;
color: rgba(245, 245, 245, 0.7);
line-height: 1.7;
margin: 0 0 32px 0;
}
.error-modal-button {
padding: 16px 40px;
background: linear-gradient(135deg, #e04a4a, #d04040);
color: #fff;
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
cursor: pointer;
transition: all 0.3s ease;
}
.error-modal-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(224, 74, 74, 0.4);
} @media (max-width: 768px) {
.error-modal-content {
padding: 40px 28px;
}
.error-modal-title {
font-size: 24px;
}
} .celebration-type-section {
margin-bottom: 40px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}
.form-section-label {
display: block;
font-size: 16px;
font-weight: 600;
color: rgba(245, 245, 245, 0.9);
margin-bottom: 20px;
letter-spacing: 0.3px;
}
.celebration-type-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.celebration-type-card {
position: relative;
cursor: pointer;
background: rgba(15, 15, 15, 0.5);
border: 1.5px solid rgba(224, 185, 74, 0.15);
border-radius: 12px;
padding: 20px 16px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: block;
}
.celebration-type-card:hover {
border-color: rgba(224, 185, 74, 0.3);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.celebration-type-card input[type="radio"] {
position: absolute;
opacity: 0;
pointer-events: none;
}
.celebration-type-card input[type="radio"]:checked + .celebration-type-content {
color: #e0b94a;
}
.celebration-type-card:has(input[type="radio"]:checked) {
border-color: #e0b94a;
background: rgba(224, 185, 74, 0.08);
box-shadow: 0 0 0 1px #e0b94a;
}
.celebration-type-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
color: rgba(245, 245, 245, 0.7);
transition: color 0.3s ease;
}
.celebration-type-content svg {
width: 28px;
height: 28px;
color: #e0b94a;
}
.celebration-type-content span {
font-size: 14px;
font-weight: 500;
text-align: center;
} @media (max-width: 768px) {
.celebration-type-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.celebration-type-card {
padding: 16px 12px;
}
.celebration-type-content span {
font-size: 13px;
}
} .rgpd-consent {
margin: 30px 0 40px;
padding: 24px;
background: rgba(224, 185, 74, 0.05);
border: 1px solid rgba(224, 185, 74, 0.15);
border-radius: 12px;
}
.rgpd-checkbox {
display: flex;
gap: 16px;
cursor: pointer;
position: relative;
padding-left: 36px;
line-height: 1.6;
}
.rgpd-checkbox input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
left: 0;
top: 2px;
height: 22px;
width: 22px;
background-color: rgba(20, 20, 20, 0.6);
border: 2px solid rgba(224, 185, 74, 0.3);
border-radius: 6px;
transition: all 0.3s ease;
flex-shrink: 0;
}
.rgpd-checkbox:hover .checkmark {
border-color: rgba(224, 185, 74, 0.5);
}
.rgpd-checkbox input[type="checkbox"]:checked ~ .checkmark {
background: linear-gradient(135deg, #e0b94a, #d4a940);
border-color: #e0b94a;
}
.checkmark::after {
content: "";
position: absolute;
display: none;
left: 6px;
top: 2px;
width: 6px;
height: 11px;
border: solid #0d0d0d;
border-width: 0 2.5px 2.5px 0;
transform: rotate(45deg);
}
.rgpd-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
display: block;
}
.rgpd-text {
font-size: 13px;
color: rgba(245, 245, 245, 0.7);
line-height: 1.7;
}
.rgpd-text a {
color: #e0b94a;
text-decoration: underline;
transition: color 0.3s ease;
}
.rgpd-text a:hover {
color: #f4d078;
} .rgpd-consent.error {
animation: shake 0.4s;
border-color: #e04a4a;
background: rgba(224, 74, 74, 0.08);
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-8px); }
75% { transform: translateX(8px); }
} @media (max-width: 768px) {
.rgpd-consent {
padding: 20px 16px;
}
.rgpd-text {
font-size: 12px;
}
} .celebrations-hero .circle-title {
font-size: 2.8rem !important;
letter-spacing: -0.5px;
} @media (max-width: 1024px) {
.celebrations-hero .circle-title {
font-size: 2.4rem !important;
}
} @media (max-width: 768px) {
.celebrations-hero .circle-title {
font-size: 2rem !important;
}
} .evenementiel-hero .circle-title {
font-size: 2.8rem !important;
letter-spacing: -0.5px;
} @media (max-width: 1024px) {
.evenementiel-hero .circle-title {
font-size: 2.4rem !important;
}
} @media (max-width: 768px) {
.evenementiel-hero .circle-title {
font-size: 2rem !important;
}
} @media (max-width: 768px) {
#scrollLeft,
#scrollRight {
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
user-select: none;
}
} @media (max-width: 1024px) {
.celebration-timeline-btn.celebration-visible {
display: flex !important;
}
.celebration-timeline-btn.celebration-hidden {
display: none !important;
}
}  .page-reservation select.form-input {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e0b94a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 12px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding-right: 3rem;
} .page-reservation select.form-input:focus {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e0b94a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
} @media (max-width: 768px) {
.page-reservation select.form-input {
background-position: right 0.75rem center;
}
} .newsletter-input-glass {
flex: 1;
padding: 1.2rem 0;
background: transparent;
border: none;
color: #ffffff;
font-size: 16px; font-weight: 300;
letter-spacing: 0.3px;
outline: none;
max-width: 100%; } @media (max-width: 768px) {
.newsletter-input-glass {
font-size: 16px; } .newsletter-glass {
overflow-x: hidden;
}
.newsletter-glass-card {
max-width: 100%;
overflow: hidden;
}
.newsletter-input-wrapper-glass {
width: 100%;
max-width: 100%;
}
}  .banner-cookies {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
max-width: 380px;
transform: translateX(450px);
opacity: 0;
transition: all 0.5s ease;
pointer-events: none;
}
.banner-cookies.show {
transform: translateX(0);
opacity: 1;
pointer-events: all;
}
.banner-inner {
background: rgba(13, 13, 13, 0.95);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 12px;
padding: 1.2rem 1.4rem;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: 
0 8px 25px rgba(0, 0, 0, 0.6),
0 0 15px rgba(224, 185, 74, 0.08);
}
.banner-text {
font-size: 0.9rem;
font-weight: 300;
color: #c5c5c5;
margin: 0;
line-height: 1.4;
flex: 1;
}
.banner-text strong {
color: #e0b94a;
font-weight: 400;
}
.banner-actions {
display: flex;
gap: 0.8rem;
flex-shrink: 0;
} .btn-manage {
padding: 0.55rem 1.2rem;
font-size: 0.85rem;
font-weight: 400;
background: transparent;
border: 1px solid rgba(224, 185, 74, 0.3);
color: #e0b94a;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}
.btn-manage:hover {
background: rgba(224, 185, 74, 0.08);
border-color: rgba(224, 185, 74, 0.5);
} .btn-close {
width: 36px;
height: 36px;
background: rgba(224, 185, 74, 0.1);
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 6px;
color: #e0b94a;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
flex-shrink: 0;
}
.btn-close:hover {
background: rgba(224, 185, 74, 0.15);
border-color: rgba(224, 185, 74, 0.5);
} .modal-cookies {
position: fixed;
inset: 0;
z-index: 10000;
display: none;
align-items: center;
justify-content: center;
padding: 1.5rem;
opacity: 0;
transition: opacity 0.3s ease;
}
.modal-cookies.show {
display: flex;
opacity: 1;
}
.modal-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.88);
backdrop-filter: blur(4px);
cursor: pointer;
}
.modal-content {
position: relative;
width: 100%;
max-width: 500px;
background: rgba(13, 13, 13, 0.98);
backdrop-filter: blur(30px);
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 14px;
overflow: hidden;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.7),
0 0 30px rgba(224, 185, 74, 0.1);
transform: scale(0.95);
transition: transform 0.3s ease;
}
.modal-cookies.show .modal-content {
transform: scale(1);
} .modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.6rem 1.8rem;
border-bottom: 1px solid rgba(224, 185, 74, 0.12);
background: linear-gradient(135deg, rgba(224, 185, 74, 0.05), transparent);
}
.modal-header h2 {
font-size: 1.3rem;
font-weight: 500;
color: #f5f5f5;
margin: 0;
}
.btn-modal-close {
width: 36px;
height: 36px;
background: transparent;
border: none;
color: #8a8a8a;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.btn-modal-close:hover {
color: #e0b94a;
transform: rotate(90deg);
} .modal-body {
padding: 1.8rem;
max-height: 60vh;
overflow-y: auto;
}
.modal-body::-webkit-scrollbar {
width: 6px;
}
.modal-body::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
.modal-body::-webkit-scrollbar-thumb {
background: rgba(224, 185, 74, 0.3);
border-radius: 3px;
} .cookie-option {
margin-bottom: 1.6rem;
padding-bottom: 1.6rem;
border-bottom: 1px solid rgba(224, 185, 74, 0.08);
}
.cookie-option:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.option-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.6rem;
}
.option-header h3 {
font-size: 1rem;
font-weight: 500;
color: #f5f5f5;
margin: 0;
}
.cookie-option p {
font-size: 0.85rem;
font-weight: 300;
color: #9a9a9a;
margin: 0;
line-height: 1.4;
} .toggle-switch {
position: relative;
width: 50px;
height: 28px;
background: rgba(150, 150, 150, 0.2);
border: 1px solid rgba(150, 150, 150, 0.3);
border-radius: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.toggle-switch:hover:not(.disabled) {
background: rgba(150, 150, 150, 0.25);
}
.toggle-ball {
position: absolute;
top: 2px;
left: 2px;
width: 22px;
height: 22px;
background: #6a6a6a;
border-radius: 50%;
transition: all 0.3s ease;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.toggle-switch.active {
background: rgba(224, 185, 74, 0.2);
border-color: rgba(224, 185, 74, 0.4);
}
.toggle-switch.active .toggle-ball {
transform: translateX(22px);
background: #e0b94a;
box-shadow: 0 1px 6px rgba(224, 185, 74, 0.3);
}
.toggle-switch.disabled {
opacity: 0.5;
cursor: not-allowed;
} .modal-footer {
display: flex;
gap: 1rem;
padding: 1.4rem 1.8rem;
border-top: 1px solid rgba(224, 185, 74, 0.12);
background: linear-gradient(135deg, transparent, rgba(224, 185, 74, 0.02));
}
.btn-decline,
.btn-accept {
flex: 1;
padding: 0.8rem 1.2rem;
font-size: 0.9rem;
font-weight: 400;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
border: 1px solid;
}
.btn-decline {
background: transparent;
border-color: rgba(150, 150, 150, 0.3);
color: #a5a5a5;
}
.btn-decline:hover {
background: rgba(150, 150, 150, 0.08);
border-color: rgba(150, 150, 150, 0.5);
color: #c5c5c5;
}
.btn-accept {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.3);
color: #e0b94a;
}
.btn-accept:hover {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.25), rgba(224, 185, 74, 0.15));
border-color: rgba(224, 185, 74, 0.5);
} @media (max-width: 600px) {
.banner-cookies {
left: 15px;
right: 15px;
max-width: none;
bottom: 15px;
}
.banner-inner {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
}
.banner-actions {
width: 100%;
justify-content: space-between;
}
.btn-manage {
flex: 1;
text-align: center;
}
.modal-content {
max-width: 100%;
border-radius: 12px;
}
.modal-header {
padding: 1.2rem;
}
.modal-body {
padding: 1.4rem;
}
.modal-footer {
flex-direction: column;
padding: 1.2rem;
}
.btn-decline,
.btn-accept {
width: 100%;
}
} .error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: #0d0d0d;
position: relative;
overflow: hidden;
} .error-page::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(
ellipse 800px 800px at 50% 50%,
rgba(224, 185, 74, 0.04),
transparent
);
pointer-events: none;
}
.error-wrapper {
position: relative;
z-index: 1;
width: 100%;
max-width: 600px;
text-align: center;
} .error-code {
font-size: clamp(6rem, 15vw, 12rem);
font-weight: 900;
letter-spacing: -0.08em;
color: rgba(224, 185, 74, 0.08);
line-height: 1;
margin-bottom: 1rem;
font-family: 'Poppins', sans-serif;
} .error-main {
animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .error-heading {
font-size: clamp(1.8rem, 5vw, 2.8rem);
font-weight: 600;
color: #f5f5f5;
margin: 0 0 0.8rem 0;
letter-spacing: 0.5px;
} .error-text {
font-size: clamp(0.95rem, 2vw, 1.1rem);
font-weight: 300;
color: #a0a0a0;
margin: 0 0 2.5rem 0;
line-height: 1.7;
} .error-buttons {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
justify-content: center;
}
.error-btn {
padding: 0.95rem 2.2rem;
font-size: 0.9rem;
font-weight: 400;
letter-spacing: 0.6px;
border-radius: 8px;
border: 1px solid;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
} .error-btn.primary {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.3);
color: #e0b94a;
}
.error-btn.primary:hover {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.25), rgba(224, 185, 74, 0.15));
border-color: rgba(224, 185, 74, 0.5);
box-shadow: 0 8px 25px rgba(224, 185, 74, 0.15);
transform: translateY(-2px);
} .error-btn.secondary {
background: transparent;
border-color: rgba(150, 150, 150, 0.3);
color: #a0a0a0;
}
.error-btn.secondary:hover {
background: rgba(150, 150, 150, 0.06);
border-color: rgba(150, 150, 150, 0.5);
color: #c5c5c5;
transform: translateY(-2px);
} @media (max-width: 768px) {
.error-page {
padding: 1.5rem;
min-height: auto;
padding-top: 6rem;
padding-bottom: 4rem;
}
.error-code {
margin-bottom: 0.5rem;
}
.error-heading {
margin-bottom: 0.6rem;
}
.error-text {
margin-bottom: 2rem;
}
.error-buttons {
gap: 0.8rem;
}
.error-btn {
padding: 0.85rem 1.8rem;
font-size: 0.85rem;
}
}
@media (max-width: 480px) {
.error-buttons {
flex-direction: column;
}
.error-btn {
width: 100%;
}
.error-code {
font-size: clamp(4rem, 12vw, 8rem);
}
.error-heading {
font-size: clamp(1.4rem, 4vw, 2rem);
}
} .emporter-page-wrapper {
background: #0d0d0d;
min-height: 100vh;
} .emporter-info-banner {
background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.9));
border-top: 1px solid rgba(224, 185, 74, 0.1);
border-bottom: 1px solid rgba(224, 185, 74, 0.1);
padding: 50px 60px;
position: relative;
overflow: hidden;
}
.emporter-info-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.5), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}
.emporter-info-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.emporter-info-card {
display: flex;
align-items: center;
gap: 20px;
padding: 28px 32px;
background: rgba(20, 20, 20, 0.4);
border: 1px solid rgba(224, 185, 74, 0.15);
border-radius: 16px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.emporter-info-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.05), transparent);
transition: left 0.6s ease;
}
.emporter-info-card:hover {
border-color: rgba(224, 185, 74, 0.3);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.emporter-info-card:hover::before {
left: 100%;
}
.emporter-info-icon-wrapper {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.12), rgba(224, 185, 74, 0.06));
border: 1px solid rgba(224, 185, 74, 0.25);
border-radius: 12px;
flex-shrink: 0;
transition: all 0.3s ease;
}
.emporter-info-card:hover .emporter-info-icon-wrapper {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.18), rgba(224, 185, 74, 0.1));
border-color: rgba(224, 185, 74, 0.4);
transform: scale(1.05);
}
.emporter-info-icon-wrapper svg {
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}
.emporter-info-content {
display: flex;
flex-direction: column;
gap: 6px;
}
.emporter-info-label {
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.6);
}
.emporter-info-value {
font-size: 17px;
font-weight: 600;
color: #ffffff;
letter-spacing: -0.2px;
} .emporter-menu {
padding: 100px 0 120px;
}
.emporter-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 60px;
} .emporter-section {
margin-bottom: 100px;
}
.emporter-section-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
margin-bottom: 50px;
padding-bottom: 25px;
border-bottom: 1px solid rgba(224, 185, 74, 0.12);
position: relative;
}
.emporter-section-header::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 80px;
height: 1px;
background: linear-gradient(90deg, #e0b94a, transparent);
box-shadow: 0 0 10px rgba(224, 185, 74, 0.5);
}
.emporter-section-header-content {
flex: 1;
}
.emporter-section-title {
font-size: 32px;
font-weight: 500;
color: #ffffff;
margin: 0 0 6px 0;
letter-spacing: -0.5px;
line-height: 1.1;
}
.emporter-section-subtitle {
font-size: 13px;
font-weight: 300;
letter-spacing: 1.5px;
text-transform: uppercase;
color: rgba(224, 185, 74, 0.6);
margin: 0;
}
.emporter-section-count {
display: flex;
align-items: baseline;
gap: 6px;
padding: 8px 18px;
background: rgba(224, 185, 74, 0.08);
border-radius: 20px;
border: 1px solid rgba(224, 185, 74, 0.15);
white-space: nowrap;
flex-shrink: 0;
}
.emporter-count-number {
font-size: 18px;
font-weight: 700;
color: #e0b94a;
line-height: 1;
font-variant-numeric: tabular-nums;
}
.emporter-count-label {
font-size: 12px;
font-weight: 500;
letter-spacing: 0.5px;
color: rgba(224, 185, 74, 0.7);
text-transform: lowercase;
} .emporter-dishes-list {
display: flex;
flex-direction: column;
gap: 2px;
}
.emporter-dish-item {
display: flex;
align-items: center;
gap: 25px;
padding: 26px 30px;
background: linear-gradient(90deg, rgba(20, 20, 20, 0.3), rgba(15, 15, 15, 0.2));
border-left: 2px solid transparent;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
opacity: 0;
animation: fadeInEmporterDish 0.5s ease forwards;
}
@keyframes fadeInEmporterDish {
to {
opacity: 1;
}
}
.emporter-dish-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 0;
background: linear-gradient(90deg, rgba(224, 185, 74, 0.08), transparent);
transition: width 0.4s ease;
}
.emporter-dish-item:hover {
background: linear-gradient(90deg, rgba(20, 20, 20, 0.5), rgba(15, 15, 15, 0.3));
border-left-color: rgba(224, 185, 74, 0.5);
transform: translateX(8px);
}
.emporter-dish-item:hover::before {
width: 100%;
}
.emporter-dish-number {
font-size: 14px;
font-weight: 300;
color: rgba(224, 185, 74, 0.4);
letter-spacing: 1px;
flex-shrink: 0;
width: 30px;
text-align: right;
font-variant-numeric: tabular-nums;
}
.emporter-dish-details {
flex: 1;
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
}
.emporter-dish-name {
font-size: 17px;
font-weight: 500;
color: #ffffff;
margin: 0;
letter-spacing: -0.2px;
line-height: 1.3;
transition: color 0.3s ease;
}
.emporter-dish-item:hover .emporter-dish-name {
color: #e0b94a;
}
.emporter-dish-description {
font-size: 13px;
font-weight: 300;
line-height: 1.6;
color: rgba(245, 245, 245, 0.5);
margin: 0;
}
.emporter-dish-price {
display: flex;
align-items: baseline;
gap: 3px;
flex-shrink: 0;
padding: 10px 20px;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.1), rgba(224, 185, 74, 0.05));
border-radius: 8px;
border: 1px solid rgba(224, 185, 74, 0.15);
transition: all 0.3s ease;
}
.emporter-dish-item:hover .emporter-dish-price {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border-color: rgba(224, 185, 74, 0.3);
}
.emporter-price-value {
font-size: 20px;
font-weight: 600;
color: #e0b94a;
line-height: 1;
font-variant-numeric: tabular-nums;
}
.emporter-price-currency {
font-size: 14px;
font-weight: 500;
color: rgba(224, 185, 74, 0.7);
} .emporter-final-cta {
margin-top: 80px;
padding: 0;
}
.emporter-cta-wrapper {
background: linear-gradient(135deg, rgba(224, 185, 74, 0.06), rgba(224, 185, 74, 0.02));
border: 1px solid rgba(224, 185, 74, 0.2);
border-radius: 20px;
padding: 50px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
position: relative;
overflow: hidden;
}
.emporter-cta-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.6), transparent);
box-shadow: 0 0 20px rgba(224, 185, 74, 0.4);
}
.emporter-cta-header {
display: flex;
align-items: center;
gap: 25px;
flex: 1;
}
.emporter-cta-icon {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 50%;
flex-shrink: 0;
}
.emporter-cta-icon svg {
color: #e0b94a;
filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
}
.emporter-cta-text {
flex: 1;
}
.emporter-cta-title {
font-size: 28px;
font-weight: 500;
color: #ffffff;
margin: 0 0 8px 0;
letter-spacing: -0.5px;
}
.emporter-cta-subtitle {
font-size: 14px;
font-weight: 300;
color: rgba(245, 245, 245, 0.6);
margin: 0;
line-height: 1.5;
}
.emporter-cta-button {
display: inline-flex;
align-items: center;
gap: 15px;
padding: 18px 38px;
background: linear-gradient(135deg, #e0b94a, #f4d56f);
border: 2px solid #e0b94a;
border-radius: 50px;
color: #0d0d0d;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.3px;
text-decoration: none;
white-space: nowrap;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 
0 8px 25px rgba(224, 185, 74, 0.3),
0 0 30px rgba(224, 185, 74, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
z-index: 1;
flex-shrink: 0;
}
.emporter-cta-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: #0d0d0d;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
z-index: -1;
}
.emporter-button-icon {
display: flex;
transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
.emporter-cta-button:hover {
color: #e0b94a;
border-color: #e0b94a;
transform: translateY(-3px);
box-shadow: 
0 12px 45px rgba(224, 185, 74, 0.5),
0 0 50px rgba(224, 185, 74, 0.3),
inset 0 0 20px rgba(224, 185, 74, 0.2);
}
.emporter-cta-button:hover::before {
width: 500px;
height: 500px;
}
.emporter-cta-button:hover .emporter-button-icon {
transform: translateX(5px);
}
} @media (max-width: 1024px) {
.emporter-container {
padding: 0 40px;
}
.emporter-info-banner {
padding: 40px 40px;
}
.emporter-info-container {
gap: 25px;
}
.emporter-info-card {
padding: 22px 26px;
}
.emporter-section-title {
font-size: 28px;
}
.emporter-dish-item {
gap: 20px;
padding: 22px 26px;
}
} @media (min-width: 769px) and (max-width: 900px) {
.emporter-cta-wrapper {
flex-direction: column;
padding: 40px 35px;
text-align: center;
}
.emporter-cta-header {
flex-direction: column;
}
.emporter-cta-button {
width: 100%;
justify-content: center;
}
} @media (max-width: 768px) {
.emporter-info-banner {
padding: 30px 20px;
}
.emporter-info-container {
grid-template-columns: 1fr;
gap: 15px;
}
.emporter-info-card {
padding: 20px 24px;
}
.emporter-info-icon-wrapper {
width: 48px;
height: 48px;
}
.emporter-menu {
padding: 60px 0 80px;
}
.emporter-container {
padding: 0 20px;
}
.emporter-section {
margin-bottom: 70px;
}
.emporter-section-header {
flex-direction: column;
align-items: flex-start;
gap: 15px;
margin-bottom: 35px;
}
.emporter-section-header-content {
order: 0;
}
.emporter-section-title {
font-size: 24px;
}
.emporter-section-subtitle {
font-size: 11px;
}
.emporter-section-count {
order: 1;
align-self: flex-start;
padding: 6px 16px;
}
.emporter-count-number {
font-size: 16px;
}
.emporter-count-label {
font-size: 11px;
}
.emporter-dish-item {
flex-wrap: wrap;
padding: 20px 22px;
gap: 15px;
}
.emporter-dish-number {
width: auto;
}
.emporter-dish-details {
flex: 1;
min-width: 150px;
}
.emporter-dish-name {
font-size: 16px;
}
.emporter-dish-description {
font-size: 12px;
}
.emporter-dish-price {
margin-left: auto;
padding: 8px 16px;
}
.emporter-price-value {
font-size: 18px;
}
.emporter-cta-wrapper {
flex-direction: column;
padding: 35px 25px;
gap: 30px;
text-align: center;
}
.emporter-cta-header {
flex-direction: column;
text-align: center;
}
.emporter-cta-icon {
width: 60px;
height: 60px;
}
.emporter-cta-icon svg {
width: 28px;
height: 28px;
}
.emporter-cta-title {
font-size: 24px;
}
.emporter-cta-subtitle {
font-size: 13px;
}
.emporter-cta-button {
width: 100%;
justify-content: center;
padding: 16px 32px;
font-size: 17px;
}
} @media (max-width: 400px) {
.emporter-info-card {
padding: 18px 20px;
gap: 15px;
}
.emporter-info-icon-wrapper {
width: 44px;
height: 44px;
}
.emporter-info-value {
font-size: 15px;
}
.emporter-section-title {
font-size: 22px;
}
.emporter-dish-item {
padding: 18px 20px;
}
.emporter-dish-name {
font-size: 15px;
}
.emporter-cta-title {
font-size: 22px;
}
.emporter-cta-button {
font-size: 16px;
padding: 15px 28px;
}
} .hours-badge {
display: inline-flex;
align-items: center;
font-size: 0.95rem;
font-weight: 600;
color: rgba(255, 152, 0, 0.85);
background: rgba(255, 152, 0, 0.12);
padding: 0.35rem 0.85rem;
border-radius: 20px;
margin-left: 0.6rem;
letter-spacing: 0.5px;
border: 1px solid rgba(255, 152, 0, 0.25);
box-shadow: 0 0 15px rgba(255, 152, 0, 0.15);
text-shadow: 0 0 8px rgba(255, 152, 0, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
} @media (min-width: 1025px) {
.highlight-item:hover .hours-badge {
color: rgba(255, 152, 0, 1);
background: rgba(255, 152, 0, 0.18);
border-color: rgba(255, 152, 0, 0.4);
box-shadow: 0 0 20px rgba(255, 152, 0, 0.25);
text-shadow: 0 0 12px rgba(255, 152, 0, 0.5);
transform: translateY(-1px);
}
} @media (min-width: 768px) and (max-width: 1024px) {
.hours-badge {
font-size: 0.9rem;
padding: 0.3rem 0.75rem;
margin-left: 0.5rem;
}
} @media (max-width: 767px) {
.highlight-text h4 {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.hours-badge {
font-size: 0.85rem;
padding: 0.3rem 0.7rem;
margin-left: 0;
}
}
@media (max-width: 480px) {
.hours-badge {
font-size: 0.8rem;
padding: 0.25rem 0.6rem;
}
} .hours-4am-strong {
display: inline-block;
margin: 0 0.25rem;
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.8px;
color: #ffb347; text-shadow: 0 0 10px rgba(255, 179, 71, 0.65);
} .footer-card-hours .hours-note-card {
background: radial-gradient(circle at top left, rgba(224, 185, 74, 0.16), transparent 60%);
border: 1px solid rgba(224, 185, 74, 0.35);
color: #dcdcdc;
font-size: 0.82rem;
padding: 0.8rem 1rem;
border-radius: 10px;
margin-bottom: 1rem;
line-height: 1.6;
} @media (max-width: 768px) {
.footer-card-hours .hours-note-card {
font-size: 0.78rem;
padding: 0.7rem 0.85rem;
}
.hours-4am-strong {
font-size: 1rem;
}
.note-break-mobile {
display: inline;
}
}
@media (min-width: 769px) {
.note-break-mobile {
display: none;
}
} .club-hours-badge {
display: block;
margin: 0.4rem 0 1.6rem 0;
max-width: fit-content;
} .club-hours-badge.hours-badge {
display: inline-flex;
align-items: center;
font-size: 0.95rem;
font-weight: 600;
color: rgba(255, 152, 0, 0.85);
background: rgba(255, 152, 0, 0.12);
padding: 0.35rem 0.85rem;
border-radius: 20px;
letter-spacing: 0.5px;
border: 1px solid rgba(255, 152, 0, 0.25);
box-shadow: 0 0 15px rgba(255, 152, 0, 0.15);
text-shadow: 0 0 8px rgba(255, 152, 0, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
}
@media (min-width: 1025px) {
.facet-panel:hover .club-hours-badge.hours-badge {
color: rgba(255, 152, 0, 1);
background: rgba(255, 152, 0, 0.18);
border-color: rgba(255, 152, 0, 0.4);
box-shadow: 0 0 20px rgba(255, 152, 0, 0.25);
text-shadow: 0 0 12px rgba(255, 152, 0, 0.5);
transform: translateY(-1px);
}
}   .form-step[data-step="1"] {
padding-bottom: 2rem;
} .experience-cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
max-width: 1000px;
margin: 0 auto 3rem auto;
padding: 0 1.5rem;
} .experience-card {
min-height: 420px;
display: flex;
flex-direction: column;
transition: transform 0.3s ease, box-shadow 0.3s ease;
} @media (min-width: 1025px) {
.experience-card:hover {
transform: translateY(-8px);
}
} .experience-card .card-content {
flex: 1;
display: flex;
flex-direction: column;
padding: 2rem 1.8rem;
}
.experience-card .card-icon {
margin-bottom: 1.5rem;
}
.experience-card .card-title {
margin-bottom: 1rem;
}
.experience-card .card-description {
margin-bottom: 1.5rem;
flex: 1;
}
.experience-card .card-features {
margin-top: auto;
padding-top: 1rem;
} .form-step[data-step="1"] .btn-next {
margin-top: 2.5rem;
} @media (min-width: 1200px) {
.experience-cards {
gap: 3.5rem;
max-width: 1100px;
}
.experience-card {
min-height: 440px;
}
} @media (min-width: 1025px) and (max-width: 1199px) {
.experience-cards {
gap: 2.5rem;
max-width: 950px;
}
.experience-card {
min-height: 420px;
}
} @media (min-width: 901px) and (max-width: 1024px) {
.experience-cards {
gap: 2rem;
max-width: 850px;
}
.experience-card {
min-height: 400px;
}
.experience-card .card-content {
padding: 1.8rem 1.5rem;
}
} @media (min-width: 768px) and (max-width: 900px) {
.experience-cards {
grid-template-columns: 1fr;
max-width: 580px;
gap: 2rem;
margin-bottom: 2.5rem;
}
.experience-card {
min-height: 380px;
}
.form-step[data-step="1"] .btn-next {
margin-top: 2rem;
}
} @media (min-width: 601px) and (max-width: 767px) {
.experience-cards {
grid-template-columns: 1fr;
max-width: 520px;
gap: 1.8rem;
margin-bottom: 2rem;
padding: 0 1rem;
}
.experience-card {
min-height: 360px;
}
.experience-card .card-content {
padding: 1.5rem 1.3rem;
}
.form-step[data-step="1"] .btn-next {
margin-top: 1.8rem;
}
} @media (min-width: 481px) and (max-width: 600px) {
.experience-cards {
grid-template-columns: 1fr;
max-width: 100%;
gap: 1.5rem;
margin-bottom: 2rem;
padding: 0 0.5rem;
}
.experience-card {
min-height: auto;
}
.experience-card .card-content {
padding: 1.5rem 1.2rem;
}
.form-step[data-step="1"] .btn-next {
margin-top: 1.5rem;
}
} @media (max-width: 480px) {
.form-step[data-step="1"] {
padding-bottom: 1.5rem;
}
.experience-cards {
grid-template-columns: 1fr;
gap: 1.3rem;
margin-bottom: 1.5rem;
padding: 0;
}
.experience-card {
min-height: auto;
}
.experience-card .card-content {
padding: 1.3rem 1rem;
}
.experience-card .card-icon {
margin-bottom: 1rem;
}
.experience-card .card-title {
font-size: 1.3rem;
margin-bottom: 0.8rem;
}
.experience-card .card-description {
font-size: 0.9rem;
margin-bottom: 1.2rem;
}
.experience-card .card-features {
padding-top: 0.8rem;
}
.experience-card .card-features li {
font-size: 0.85rem;
}
.form-step[data-step="1"] .btn-next {
margin-top: 1.3rem;
}
} @media (max-width: 375px) {
.experience-cards {
gap: 1.2rem;
margin-bottom: 1.3rem;
}
.experience-card .card-content {
padding: 1.2rem 0.9rem;
}
.form-step[data-step="1"] .btn-next {
margin-top: 1.2rem;
font-size: 0.9rem;
padding: 1rem 2rem;
}
}  #otherCelebrationField {
animation: fadeInDown 0.4s ease;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} input[type="time"] {
cursor: text;
font-family: 'Poppins', sans-serif;
}
input[type="time"]::-webkit-calendar-picker-indicator {
cursor: pointer;
filter: invert(0.7) sepia(1) saturate(5) hue-rotate(10deg);
opacity: 0.8;
transition: opacity 0.3s ease;
}
input[type="time"]::-webkit-calendar-picker-indicator:hover {
opacity: 1;
} .form-hint {
display: flex;
align-items: center;
padding: 0.75rem 1rem;
background: rgba(224, 185, 74, 0.08);
border-radius: 6px;
color: #c5c5c5;
line-height: 1.5;
}
.form-hint svg {
flex-shrink: 0;
color: #e0b94a;
} .menu-info-box {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.2rem 1.5rem;
background: linear-gradient(135deg, rgba(224, 185, 74, 0.12), rgba(224, 185, 74, 0.06));
border: 1px solid rgba(224, 185, 74, 0.3);
border-radius: 12px;
box-shadow: 0 4px 15px rgba(224, 185, 74, 0.1);
animation: fadeInDown 0.4s ease;
}
.menu-info-box svg {
flex-shrink: 0;
color: #e0b94a;
filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
margin-top: 2px;
}
.menu-info-box p {
margin: 0;
font-size: 0.95rem;
line-height: 1.6;
color: #dcdcdc;
}
.menu-info-box strong {
color: #e0b94a;
font-weight: 600;
} #summaryRequestsItem .summary-value {
max-width: 100%;
word-wrap: break-word;
line-height: 1.6;
} @media (max-width: 600px) {
.menu-info-box {
flex-direction: column;
gap: 0.8rem;
padding: 1rem;
}
.form-hint {
font-size: 0.8rem;
padding: 0.6rem 0.8rem;
}
} .form-group[style*="display: block"] {
animation: fadeInDown 0.4s ease;
} .celebration-type-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
} @media (min-width: 768px) and (max-width: 1024px) {
.celebration-type-grid {
grid-template-columns: repeat(3, 1fr);
gap: 0.9rem;
}
} @media (max-width: 767px) {
.celebration-type-grid {
grid-template-columns: repeat(2, 1fr);
gap: 0.8rem;
}
} @media (max-width: 400px) {
.celebration-type-grid {
grid-template-columns: 1fr;
gap: 0.8rem;
}
}
#otherCelebrationField .form-label {
margin-bottom: 0.75rem;
} .legal-contact-card p,
.privacy-contact-card p,
.cgv-contact-card p {
word-break: break-word;
overflow-wrap: break-word;
max-width: 100%;
} .legal-contact-card div p,
.privacy-contact-card div p,
.cgv-contact-card div p {
font-size: 0.95rem;
word-break: break-word;
} @media (min-width: 769px) {
.contact-text-card {
word-break: break-word;
overflow-wrap: break-word;
max-width: 100%;
font-size: 0.95rem;
line-height: 1.5;
} .contact-item-card:nth-child(3) .contact-text-card {
font-size: 0.9rem;
}
}
.footer-bottom-copyright a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-bottom-copyright a:hover {
color: #e0b94a; }
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.spinning {
animation: spin 1s linear infinite;
display: inline-block;
vertical-align: middle;
margin-right: 8px;
}
.newsletter-message {
margin-top: 15px;
padding: 12px 20px;
border-radius: 8px;
text-align: center;
font-size: 14px;
font-weight: 500;
animation: slideIn 0.3s ease;
}
.newsletter-message.success {
background: rgba(74, 222, 128, 0.1);
color: #4ade80;
border: 1px solid rgba(74, 222, 128, 0.3);
}
.newsletter-message.error {
background: rgba(224, 74, 74, 0.1);
color: #e04a4a;
border: 1px solid rgba(224, 74, 74, 0.3);
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}  .modal-overlay,
.error-modal-overlay {
display: flex !important;
align-items: center !important;
justify-content: center !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
width: 100% !important;
height: 100vh !important;
z-index: 10000 !important;
padding: 2rem !important;
background: rgba(0, 0, 0, 0.85) !important;
backdrop-filter: blur(8px) !important;
opacity: 0 !important;
visibility: hidden !important;
transition: all 0.3s ease !important;
} .modal-overlay.active,
.error-modal-overlay.active {
opacity: 1 !important;
visibility: visible !important;
} .modal-overlay .modal-content,
.error-modal-overlay .error-modal-content {
position: relative !important;
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
transform: none !important;
margin: auto !important;
max-height: calc(100vh - 4rem) !important;
overflow-y: auto !important;
} @media (max-width: 768px) {
.modal-overlay,
.error-modal-overlay {
height: 100dvh !important;
min-height: -webkit-fill-available !important;
padding: 1rem !important;
}
.modal-overlay .modal-content,
.error-modal-overlay .error-modal-content {
max-width: calc(100% - 2rem) !important;
max-height: calc(100dvh - 2rem) !important;
}
} @supports (-webkit-touch-callout: none) {
@media (max-width: 768px) {
.modal-overlay,
.error-modal-overlay {
height: -webkit-fill-available !important;
}
}
} body.modal-open {
overflow: hidden !important;
position: fixed !important;
width: 100% !important;
height: 100% !important;
touch-action: none !important;
}  @media (max-width: 768px) {
input,
select,
textarea {
font-size: 16px !important;
} input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"] {
font-size: 16px !important;
}
} @supports (-webkit-touch-callout: none) {
@media (max-width: 768px) {
input,
select,
textarea {
font-size: 16px !important;
}
}
} @media (max-width: 768px) { .form-group:has(input[type="time"]) {
width: 100%;
max-width: 100%;
box-sizing: border-box;
position: relative;
} input[type="time"] {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
} input[type="time"]::-webkit-calendar-picker-indicator {
position: absolute;
right: 10px;
cursor: pointer;
} input[type="time"]::-webkit-datetime-edit-fields-wrapper {
overflow: hidden;
} #timeHint {
width: 100%;
max-width: 100%;
box-sizing: border-box;
word-wrap: break-word;
}
#timeHintText {
display: inline-block;
max-width: 100%;
word-wrap: break-word;
}
}
@media (max-width: 768px) { input[type="time"] {
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
width: 100% !important;
padding: 0.75rem 2.5rem 0.75rem 1rem !important;
box-sizing: border-box !important;
} .form-grid .form-group {
overflow: hidden;
}
}  @media (max-width: 768px) {
input,
select,
textarea {
font-size: 16px !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
font-size: 16px !important;
}
} @supports (-webkit-touch-callout: none) {
@media (max-width: 768px) {
input,
select,
textarea {
font-size: 16px !important;
}
}
} @media (max-width: 768px) { .form-group {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.form-input,
.form-textarea,
select {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
} input[type="date"] {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
position: absolute;
right: 10px;
cursor: pointer;
} #customTimeWrapper {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
#customTime {
width: 100%;
max-width: 100%;
box-sizing: border-box;
} .reservation-summary {
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.summary-content {
max-width: 100%;
overflow: hidden;
}
.summary-item {
max-width: 100%;
overflow: hidden;
}
.summary-label,
.summary-value {
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
} .rgpd-consent {
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.rgpd-text {
word-wrap: break-word;
overflow-wrap: break-word;
white-space: normal;
}
.rgpd-text a {
word-break: break-word;
}
} body.modal-open {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
}
.spinning {
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}