.ill-hero {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-bottom: clamp(40px, 6vw, 80px);
}
.ill-hero-eyebrow {
font-family: "IM Fell English SC", serif;
font-size: 16px;
letter-spacing: 5px;
color: var(--green-deep);
opacity: 0.85;
margin-bottom: 14px;
}
.ill-hero-title {
padding-top: 50px;
font-family: "Cinzel Decorative", cursive;
font-size: clamp(28px, 4vw, 56px);
font-weight: 900;
line-height: 1;
letter-spacing: clamp(1px, 0.4vw, 4px);
margin-bottom: 20px;
color: var(--gold);
text-align: center;
}
.ill-hero-desc {
font-family: "Cormorant Garamond", serif;
font-size: clamp(18px, 1.7vw, 22px);
color: var(--cream);
opacity: 0.6;
line-height: 1.75;
max-width: 420px;
}
.ill-hero-deco {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
}
.ill-hero-line {
width: 1px;
height: 80px;
background: linear-gradient(to bottom, var(--pink), transparent);
}
.ill-hero-tag {
font-family: "IM Fell English SC", serif;
font-size: 14px;
letter-spacing: 4px;
color: rgba(245, 232, 168, 0.35);
writing-mode: vertical-rl;
}
.ill-autoslide-section {
position: relative;
}
.ill-autoslide-wrapper {
overflow: hidden;
width: 100%;
mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ill-autoslide-track {
display: flex;
gap: 14px;
width: max-content;
animation: autoSlide 14s linear infinite;
}
.ill-autoslide-track img {
height: clamp(220px, 32vw, 420px);
width: auto;
object-fit: cover;
aspect-ratio: 3/4;
border: 1px solid rgba(245, 232, 168, 0.08);
display: block;
flex-shrink: 0;
}
@keyframes autoSlide {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}
.ill-autoslide-track:hover {
animation-play-state: paused;
}
.ill-slide-actions {
display: flex;
gap: 16px;
margin-top: 32px;
justify-content: center;
}
.ill-slide-btn {
font-family: "Cinzel Decorative", cursive;
font-size: 15px;
letter-spacing: 4px;
padding: 18px 0;
width: 50%;
max-width: 320px;
text-align: center;
text-decoration: none;
border: 1px solid rgba(245, 232, 168, 0.3);
color: var(--gold);
background: rgba(255, 255, 255, 0.02);
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.3s var(--ease);
}
.ill-slide-btn:hover {
background: rgba(245, 232, 168, 0.08);
border-color: var(--gold);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(245, 232, 168, 0.1);
}
.ill-slide-btn--vgen {
border-color: rgba(143, 168, 50, 0.4);
color: var(--green);
}
.ill-slide-btn--vgen:hover {
background: rgba(143, 168, 50, 0.1);
border-color: var(--green-deep);
box-shadow: 0 8px 24px rgba(143, 168, 50, 0.15);
color: var(--lime);
}
.ill-marquee {
margin-top: clamp(40px, 6vw, 72px);
overflow: hidden;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 16px 0;
background: rgba(0, 0, 0, 0.15);
}
.ill-marquee-track {
display: inline-flex;
align-items: center;
gap: 32px;
white-space: nowrap;
animation: marqueeScroll 22s linear infinite;
}
.ill-marquee-track span {
font-family: "IM Fell English SC", serif;
font-size: 15px;
letter-spacing: 4px;
color: rgba(245, 232, 168, 0.28);
}
.marquee-dot {
color: rgba(143, 168, 50, 0.5) !important;
letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}
