* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #A31621;
    --accent-red: #C9184A;
    --gold: #D4AF37;
    --black: #0a0a0a;
    --dark-gray: #111111;
    --mid-gray: #1a1a1a;
    --light-gray: #252525;
    --text-gray: #d4d4d4;
    --text-muted: #999999;
}

.hidden {
    display: none !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--text-gray);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

/* Text-Akzente */
.gold-text {
    color: var(--gold);
    font-weight: 500;
}

.red-text {
    color: var(--primary-red);
    font-weight: 500;
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 1001;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
}

.logo:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--gold);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none !important;
    position: absolute;
    top: 30px;
    right: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 24px;
}

.burger-menu span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active {
    gap: 0;
}

.burger-menu.active span {
    position: absolute;
    top: 11px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu-close {
    display: none;
}

.close-btn {
    display: none;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.age-modal-content {
    background: var(--black);
    padding: 80px 70px;
    border: 1px solid var(--gold);
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.2), 0 30px 80px rgba(0, 0, 0, 0.8);
    position: relative;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-modal-content::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-modal-content h2 {
    color: white;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.age-modal-content p {
    font-size: 1em;
    margin-bottom: 50px;
    line-height: 2;
    color: var(--text-gray);
    font-weight: 300;
}

.age-modal-content p strong {
    color: var(--gold);
    font-weight: 400;
}

.age-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 18px 50px;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.age-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.age-btn:hover::before {
    width: 100%;
    height: 100%;
}

.age-btn:hover {
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.age-btn.exit {
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.age-btn.exit::before {
    background: var(--light-gray);
}

.age-btn.exit:hover {
    color: white;
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Header/Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: inherit;
    background-size: cover;
    background-position: center 15%;
    animation: slowZoom 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes slowZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 70px 80px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
    font-size: 6em;
    color: white;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 25px;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.8), 
                 0 0 30px rgba(0, 0, 0, 1),
                 0 5px 20px rgba(0, 0, 0, 1);
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 1.6em;
    color: var(--gold);
    letter-spacing: 8px;
    font-style: italic;
    font-weight: 300;
    text-transform: lowercase;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                 0 2px 10px rgba(0, 0, 0, 1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2em;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styling */
section {
    padding: 140px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h2 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 6px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gold);
}

h2::before {
    content: attr(data-shadow);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-red);
    opacity: 0.15;
    z-index: -1;
    transform: translate(3px, 3px);
    pointer-events: none;
    white-space: nowrap;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1em;
    margin-top: 5px;
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 1px;
}

p {
    font-size: 1.05em;
    margin-bottom: 25px;
    max-width: 900px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-gray);
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
}

/* Sessions Section */
.sessions {
    background: var(--black);
}

.session-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.session-item {
    background: var(--dark-gray);
    padding: 60px 50px;
    border: 1px solid var(--gold);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    height: 100%; 
}

.session-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--primary-red));
    transition: height 0.5s ease;
}

.session-item:hover::before {
    height: 100%;
}

.session-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.session-item h3 {
    color: var(--gold);
    font-size: 1.8em;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 300;
    line-height: 1.2;
    height: 3.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.session-item p {
    color: var(--text-gray);
    font-size: 0.95em;
    margin-bottom: 0;
}

.session-item p:first-of-type {
    flex-grow: 1;
    margin-bottom: 20px;
}

.session-item p:last-of-type {
    margin-top: auto;
}

.session-item strong {
    color: var(--primary-red);
    font-weight: 500;
}

/* Vorlieben/Tabus */
.preferences {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.pref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.pref-column {
    background: var(--mid-gray);
    padding: 50px;
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all 0.4s ease;
}

.pref-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.4s ease;
}

.pref-column.vorlieben::before {
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
}

.pref-column.tabus::before {
    background: linear-gradient(90deg, var(--primary-red), #8B0000);
}

.pref-column:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pref-column h3 {
    color: white;
    font-size: 2em;
    margin-bottom: 35px;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

.pref-column.vorlieben h3 {
    color: var(--gold);
}

.pref-column.tabus h3 {
    color: var(--accent-red);
}

.pref-column ul {
    list-style: none;
}

.pref-column ul li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1em;
    color: var(--text-gray);
    font-weight: 300;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    min-height: 40px;
}

.pref-column ul li:last-child {
    border-bottom: none;
}

.pref-column ul li:hover {
    padding-left: 40px;
    color: white;
}

.pref-column ul li::before {
    position: absolute;      
    left: 0;                
    top: 16px;              
    line-height: 1;
    flex-shrink: 0;
}

.vorlieben ul li::before {
    content: '✓';
    color: var(--gold);
    font-size: 1.4em;
    font-weight: bold;
}

.tabus ul li::before {
    content: '✗';
    color: var(--accent-red);
    font-size: 1.4em;
    font-weight: bold;
}

/* Gallery */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: linear-gradient(135deg, var(--mid-gray), var(--light-gray));
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-red) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.gallery-item:hover::after {
    opacity: 0.3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: grayscale(30%) brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 80px;
}

.load-more-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 18px 50px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.load-more-btn:hover::before {
    width: 100%;
    height: 100%;
}

.load-more-btn:hover {
    color: var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.3);
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 50px;
    color: var(--gold);
    font-size: 50px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    font-weight: 300;
    user-select: none;
}

.lightbox-close:hover {
    color: white;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 60px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    padding: 20px;
    user-select: none;
    font-weight: 300;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: white;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Videos */
.videos {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    border: 1px solid var(--gold);
    overflow: hidden;
    background: var(--black);
    aspect-ratio: 16/9;
}

.video-dummy {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mid-gray), var(--black));
}

.video-dummy-content {
    text-align: center;
    color: var(--gold);
}

.play-icon-large {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.3;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.video-dummy-content p {
    font-size: 1.5em;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
    color: var(--gold);
}

.video-dummy-content span {
    font-size: 0.9em;
    color: var(--text-muted);
    font-style: italic;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.5s ease;
}

.video-container:hover .hero-video {
    filter: brightness(1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    pointer-events: none;
}

.video-caption {
    color: var(--gold);
    font-size: 1.2em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

/* Contact */
.contact {
    background: var(--black);
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact .section-subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact > p {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 0;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-block;
    padding: 20px 55px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.contact-link:hover::before {
    width: 100%;
    height: 100%;
}

.contact-link:hover {
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--dark-gray);
    text-align: center;
    padding: 40px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 80px auto 60px;
    padding: 0 30px 60px;
}

.legal-container::before,
.legal-container::after {
    display: none !important;
}

.legal-container h1 {
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: 0.08em;
    text-align: left;
}

.legal-container h2 {
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 8px;
    color: #f5f5f5;
    letter-spacing: 0.04em;
}

.legal-container h2::before,
.legal-container h2::after {
    display: none !important;
}

.legal-container p {
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95em;
    font-weight: 300;
}

.legal-container a {
    color: var(--gold);
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #fff;
}

.address-image {
    margin: 16px 0 4px;
}

.address-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 24px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: 5em;
        letter-spacing: 10px;
    }

    .hero .subtitle {
        font-size: 1.3em;
        letter-spacing: 5px;
    }

    .hero-content {
        padding: 60px 70px;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 100px 50px;
    }

    .hero h1 {
        font-size: 4.5em;
        letter-spacing: 8px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav ul {
        gap: 25px;
    }

    .main-nav ul li a {
        font-size: 0.85em;
    }
}

@media (max-width: 915px) {
    .logo {
        top: 10px;
        left: 10px;
        width: 55px;
        height: 55px;
    }

    .burger-menu {
        display: flex !important;
        position: fixed;
        top: 30px;
        right: 20px;
        z-index: 1003;
    }

    .main-nav {
        top: 30px;
        right: 20px;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 100px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--gold);
    }

    .main-nav ul.active {
        right: 0;
    }

    .main-nav ul li {
        margin: 0;
        padding: 20px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        font-size: 1em;
        text-shadow: none;
    }

    .hero {
        background-position: center;
    }

    .hero-content {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .hero h1 {
        font-size: 2.8em;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .hero .subtitle {
        font-size: 1.1em;
        letter-spacing: 3px;
    }

    section {
        padding: 80px 25px;
    }

    h2 {
        font-size: 2em;
        letter-spacing: 3px;
    }

    .section-subtitle {
        font-size: 0.9em;
    }

    p {
        font-size: 0.95em;
    }

    .pref-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pref-column {
        padding: 35px 25px;
    }

    .pref-column h3 {
        font-size: 1.6em;
        letter-spacing: 2px;
    }

    .age-modal-content {
        padding: 60px 30px;
        margin: 20px;
    }

    .age-modal-content h2 {
        font-size: 2em;
        letter-spacing: 3px;
    }

    .age-modal-content p {
        font-size: 0.95em;
    }

    .age-btn {
        padding: 16px 35px;
        font-size: 0.85em;
        margin: 5px;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-link {
        width: 90%;
        max-width: 300px;
        padding: 18px 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .session-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .session-item {
        padding: 35px 25px;
    }

    .session-item h3 {
        font-size: 1.5em;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 70%;
    }

    footer {
        padding: 40px 25px;
    }

    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.65rem;
    }

    .legal-container {
        margin: 60px auto 40px;
        padding: 0 20px 40px;
    }

    .legal-container h1 {
        font-size: 1.6em;
    }

    .legal-container h2 {
        font-size: 1.1em;
    }

    .back-link {
        width: 100%;
        text-align: center;
    }

    .back-to-top {
        display: none;
    }

    .video-container {
        aspect-ratio: 16/9;
    }
    
    .play-icon-large {
        font-size: 3em;
    }
    
    .video-dummy-content p {
        font-size: 1.2em;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 0.95em;
        letter-spacing: 2px;
    }

    .hero-content {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.6);
    }

    h2 {
        font-size: 1.6em;
        letter-spacing: 2px;
    }

    section {
        padding: 60px 20px;
    }

    .age-modal-content {
        padding: 50px 25px;
    }

    .age-modal-content h2 {
        font-size: 1.6em;
    }

    .contact-link {
        width: 100%;
        font-size: 0.95em;
    }
}