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

:root {
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --nav-bg: rgba(0, 0, 0, 0.8);
    --nav-text: rgba(255, 255, 255, 0.8);
    --bg-dark: #0a0a0a;
    --bg-medium: #141414;
    --bg-light: #1a1a1a;
    --accent: #C9A961;
    --gold: #C9A961;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --border: rgba(201, 169, 97, 0.25);
    --border-hover: rgba(201, 169, 97, 0.5);
    --shadow: rgba(0, 0, 0, 0.5);
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-white);
    font-weight: 400;
    letter-spacing: -0.01em;
    background-color: var(--bg-dark);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 10001;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.top-nav .nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

.top-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.top-nav .nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.3);
}

.top-nav .nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 4px rgba(201, 169, 97, 0.3);
}

.top-nav .nav-link.active {
    color: var(--gold);
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.3);
}

.top-nav .nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 999999 !important;
    position: fixed !important;
    right: 60px;
    top: 40.5px;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(201, 169, 97, 0.3);
}

.hamburger-menu:hover span {
    background-color: var(--gold-light);
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.5);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border);
    z-index: 10002;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--gold);
    padding-left: 15px;
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.3);
}

.mobile-menu-link:hover::before,
.mobile-menu-link.active::before {
    width: 100%;
}

/* Course Month Dropdown */
.month-dropdown {
    margin: 60px 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.month-dropdown-header {
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.month-dropdown-header:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-light);
}

.month-dropdown-header.active {
    border-color: var(--gold);
    background-color: var(--bg-light);
}

.month-dropdown-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.month-dropdown-arrow {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.month-dropdown-header.active .month-dropdown-arrow {
    transform: rotate(180deg);
}

.month-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: transparent;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.month-dropdown-content.active {
    max-height: 5000px;
}

.course-item {
    padding: 40px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.course-item:last-child {
    border-bottom: none;
}

.course-image-wrapper {
    position: sticky;
    top: 100px;
}

.course-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.course-image:hover {
    border-color: var(--border-hover);
}

.course-details {
    color: var(--text-light);
}

.course-date {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.course-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.course-description {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--text-light);
}

.course-info {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.course-info li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
    padding-left: 0;
}

.course-info li strong {
    color: var(--text-white);
    font-weight: 500;
    margin-right: 8px;
}

.course-register-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.25);
    box-shadow: 0 0 6px rgba(201, 169, 97, 0.15);
}

.course-register-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-dark);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Course Dropdowns */
@media (max-width: 768px) {
    .month-dropdown {
        margin: 40px 0 30px;
    }

    .month-dropdown-header {
        padding: 16px 20px;
    }

    .month-dropdown-title {
        font-size: 20px;
    }

    .course-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .course-image-wrapper {
        position: static;
    }

    .course-title {
        font-size: 24px;
    }

    .course-description {
        font-size: 15px;
    }

    .course-info li {
        font-size: 14px;
    }

    .course-register-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .month-dropdown-header {
        padding: 14px 16px;
    }

    .month-dropdown-title {
        font-size: 18px;
    }

    .course-item {
        padding: 24px 16px;
    }

    .course-title {
        font-size: 22px;
    }
}

/* Sidebar */
.sidebar {
    width: 33.333%;
    background-color: var(--sidebar-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    z-index: 10;
}

.sidebar-content {
    width: 100%;
    max-width: 300px;
}

.logo-section {
    margin-bottom: 80px;
}

.logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.nav-item {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    line-height: 1.4;
}

.nav-item:hover {
    opacity: 0.7;
}

.brunch-section {
    margin-top: 40px;
}

.brunch-link {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brunch-link:hover {
    opacity: 0.8;
}

/* Main Content */
.main-content {
    width: 100%;
    margin-top: 60px;
    position: relative;
    overflow-x: hidden;
}

.hero-image {
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.fade-out {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.welcome-script {
    font-family: 'Dancing Script', cursive;
    font-size: 72px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.welcome-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 120px 60px;
    min-height: 100vh;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 100px;
}

.content-badge {
    display: inline-block;
    padding: 8px 24px;
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-radius: 2px;
}

.content-headline {
    font-size: 56px;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.content-headline .accent {
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(201, 169, 97, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.content-tagline {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

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

.content-card {
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.content-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    font-size: 56px;
    text-align: center;
    padding: 30px 20px 10px;
    line-height: 1;
    background-color: #2a2a2a;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.card-button,
.card-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.card-button {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.25);
    box-shadow: 0 0 6px rgba(201, 169, 97, 0.15);
}

.card-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-dark);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-button-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--border);
}

.card-button-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--gold);
    color: var(--gold);
}

/* Page Styles */
.page-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-title .accent {
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(201, 169, 97, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--text-white);
    margin: 80px 0 50px;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-title .accent {
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(201, 169, 97, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* History Page */
.history-image-wrapper {
    margin: 0 auto 60px;
    max-width: 1000px;
    text-align: center;
    position: relative;
}

.history-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    background-color: transparent;
    padding: 0;
    transition: border-color 0.3s ease;
    cursor: zoom-in;
}

.history-image:hover {
    border-color: var(--border-hover);
    border-width: 2px;
}

.image-caption {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 70px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: transparent;
}

.thumbnail:hover {
    border-color: var(--border-hover);
    border-width: 2px;
    transform: scale(1.02);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.history-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 17px;
    font-weight: 400;
}

.history-text p {
    margin-bottom: 28px;
}

.history-text p:first-of-type {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
}

.gallery-item img {
    cursor: zoom-in;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 0;
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 25px;
}

.form-row label {
    width: 220px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    padding-top: 12px;
    flex-shrink: 0;
}

.required {
    color: #ff6b6b;
    margin-left: 4px;
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 14px 18px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(201, 169, 97, 0.05);
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.2);
}

.form-row input:hover,
.form-row textarea:hover {
    border-color: var(--border-hover);
}

.form-row textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.privacy-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 169, 97, 0.4);
}

.submit-button {
    padding: 16px 48px;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    text-shadow: 0 0 4px rgba(201, 169, 97, 0.25);
    box-shadow: 0 0 6px rgba(201, 169, 97, 0.15);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-dark);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-hint {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.agb-link {
    color: var(--text-light);
    font-size: 14px;
}

.agb-acceptance {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    font-style: italic;
}

.agb-link-text {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.agb-link-text:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 169, 97, 0.4);
}

/* Gift Vouchers */
.gift-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: start;
}

.gift-image-wrapper {
    text-align: center;
    position: sticky;
    top: 100px;
}

.gift-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 0;
    border: 1px solid var(--border);
    background-color: transparent;
    padding: 0;
    transition: border-color 0.3s ease;
}

.gift-image:hover {
    border-color: var(--border-hover);
    border-width: 2px;
}

.gift-text {
    color: var(--text-light);
    line-height: 1.9;
}

.gift-text h1 {
    margin-bottom: 40px;
    color: var(--text-white);
}

.gift-text p {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.85;
}

.gift-text p:first-of-type {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
}

.contact-info {
    margin-top: 40px;
    padding: 32px;
    background-color: transparent;
    border-radius: 0;
    border: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-white);
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.contact-info:hover {
    border-color: var(--border-hover);
}

/* Links Page */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.link-item {
    color: var(--text-white);
    text-decoration: none;
    padding: 32px 40px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.link-description {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.link-arrow {
    font-size: 24px;
    color: var(--text-white);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: 300;
}

.link-item:hover {
    background-color: var(--bg-light);
    border-color: var(--border-hover);
    transform: translateX(8px);
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--text-white);
}

.link-item:hover .link-title {
    color: var(--text-white);
}

/* Member Page */
.member-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.member-column {
    text-align: center;
    background-color: transparent;
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.member-column:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-light);
    transform: translateY(-4px);
}

.column-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

.member-column p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
}

.member-column p:first-of-type {
    font-size: 17px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Reports Page */
.report-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 70px;
    text-decoration: underline;
    text-decoration-color: var(--text-white);
    text-underline-offset: 10px;
    letter-spacing: -0.3px;
}

.report-content {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.report-download {
    text-align: center;
    background-color: transparent;
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.pdf-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.download-text {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.file-info {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 28px;
    font-weight: 400;
}

.download-button {
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    width: 100%;
}

.download-button:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.report-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.report-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 1px solid var(--border);
    background-color: transparent;
    padding: 0;
}

.report-text {
    color: var(--text-light);
    line-height: 1.9;
    background-color: transparent;
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--border);
}

.report-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 28px;
    letter-spacing: -0.2px;
}

.report-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.85;
}

.report-text p:first-of-type {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-medium);
    z-index: 1000;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.cookie-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 300;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-link {
    color: var(--text-white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.cookie-btn-secondary {
    background-color: transparent;
}

.cookie-btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-white);
}

.cookie-btn-primary {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    font-weight: 600;
}

.cookie-btn-primary:hover {
    background-color: var(--text-white);
    color: #1a1a1a;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.cookie-close:hover {
    opacity: 0.7;
}

/* Badge */
.badge {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-color: var(--badge-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-content {
    text-align: center;
    color: #000;
}

.badge-text-small {
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2px;
}

.badge-text-large {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-nav {
        padding: 12px 20px;
        gap: 15px;
    }

    .logo-img {
        height: 50px;
    }

    .top-nav .nav-link {
        font-size: 11px;
    }

    .main-content {
        margin-top: 50px;
    }

    .hero-image {
        height: calc(100vh - 50px);
    }

    .content-section {
        padding: 90px 30px;
    }

    .content-header {
        margin-bottom: 60px;
    }

    .content-badge {
        font-size: 10px;
        padding: 7px 20px;
    }

    .content-headline {
        font-size: 38px;
    }

    .content-tagline {
        font-size: 17px;
    }

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

    .card-content {
        padding: 28px;
    }

    .welcome-script {
        font-size: 56px;
    }

    .badge {
        bottom: 80px;
        right: 20px;
        width: 80px;
        height: 80px;
    }

    .badge-text-small {
        font-size: 8px;
    }

    .badge-text-large {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 15px 20px;
        gap: 15px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        width: auto;
    }

    .logo-img {
        height: 45px;
    }

    .hamburger-menu {
        right: 20px;
        top: 18px;
    }

    .nav-links {
        display: none;
    }

    .main-content {
        margin-top: 80px;
    }

    .hero-image {
        height: calc(100vh - 80px);
        min-height: 500px;
    }

    .content-section {
        padding: 70px 25px;
    }

    .content-header {
        margin-bottom: 50px;
    }

    .content-badge {
        font-size: 10px;
        padding: 6px 18px;
        margin-bottom: 28px;
    }

    .content-headline {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .content-tagline {
        font-size: 16px;
    }

    .content-grid {
        gap: 28px;
    }

    .card-image {
        height: 220px;
    }

    .card-icon {
        font-size: 52px;
        padding: 35px 20px 15px;
    }

    .card-content {
        padding: 26px;
    }

    .card-content h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .card-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .card-button,
    .card-button-secondary {
        padding: 12px 28px;
        font-size: 12px;
    }

    .page-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 35px;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row label {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
        padding-top: 0;
    }

    .gift-content {
        grid-template-columns: 1fr;
    }

    .member-columns {
        grid-template-columns: 1fr;
    }

    .member-column {
        padding: 28px;
    }

    .report-content {
        grid-template-columns: 1fr;
    }

    .report-download {
        padding: 25px;
    }

    .report-text {
        padding: 28px;
    }

    .welcome-script {
        font-size: 42px;
    }

    .welcome-subtitle {
        font-size: 11px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .badge {
        width: 70px;
        height: 70px;
        bottom: 70px;
    }

    .badge-text-small {
        font-size: 7px;
    }

    .badge-text-large {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 8px 10px;
        gap: 8px;
    }

    .logo-img {
        height: 40px;
    }

    .hamburger-menu {
        right: 10px;
        top: 14px;
    }

    .nav-links {
        gap: 8px;
    }

    .top-nav .nav-link {
        font-size: 9px;
    }

    .main-content {
        margin-top: 100px;
    }

    .hero-image {
        height: calc(100vh - 100px);
        min-height: 450px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-header {
        margin-bottom: 45px;
    }

    .content-badge {
        font-size: 9px;
        padding: 6px 16px;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .content-headline {
        font-size: 26px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .content-tagline {
        font-size: 15px;
    }

    .content-grid {
        gap: 24px;
    }

    .card-image {
        height: 200px;
    }

    .card-icon {
        font-size: 48px;
        padding: 32px 20px 12px;
    }

    .card-content {
        padding: 24px;
    }

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 13px;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .card-button,
    .card-button-secondary {
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .page-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 20px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .form-row label {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
        padding-top: 0;
        font-size: 14px;
    }

    .form-row input,
    .form-row textarea {
        width: 100%;
        font-size: 14px;
    }

    .submit-button {
        padding: 14px 40px;
        font-size: 13px;
    }

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

    .gift-text p {
        font-size: 15px;
    }

    .gift-text p:first-of-type {
        font-size: 16px;
    }

    .history-text {
        font-size: 15px;
    }

    .history-text p:first-of-type {
        font-size: 16px;
    }

    .report-text p {
        font-size: 14px;
    }

    .report-text p:first-of-type {
        font-size: 16px;
    }

    .member-column p {
        font-size: 14px;
    }

    .member-column p:first-of-type {
        font-size: 15px;
    }

    .contact-info {
        padding: 20px;
        font-size: 14px;
    }

    .link-item {
        padding: 22px 28px;
        gap: 20px;
    }

    .link-title {
        font-size: 18px;
    }

    .link-description {
        font-size: 14px;
    }

    .link-arrow {
        font-size: 20px;
    }

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

    .member-column {
        padding: 25px;
    }

    .column-title {
        font-size: 18px;
    }

    .member-column p {
        font-size: 14px;
    }

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

    .report-subtitle {
        font-size: 22px;
    }

    .report-download {
        padding: 25px;
    }

    .report-text {
        padding: 25px;
    }

    .report-title {
        font-size: 18px;
    }

    .report-text p {
        font-size: 14px;
    }

    .nav-item {
        font-size: 12px;
    }

    .brunch-link {
        font-size: 24px;
    }

    .welcome-script {
        font-size: 36px;
    }

    .cookie-banner {
        padding: 15px 20px;
    }

    .cookie-text {
        font-size: 11px;
    }

    .cookie-btn {
        font-size: 11px;
        padding: 8px 15px;
    }
}

/* Hide cookie banner when closed */
.cookie-banner.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100050;
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-stage {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border: 1px solid var(--border-hover);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
    font-size: 15px;
    color: var(--text-light);
    max-width: 80ch;
    line-height: 1.6;
}

.lightbox-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.55);
    color: var(--gold);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.lightbox-control span {
    line-height: 1;
}

.lightbox-control:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.18);
    color: var(--gold-light);
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.35);
}

.lightbox-prev {
    left: 48px;
}

.lightbox-next {
    right: 48px;
}

.lightbox-close {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.06));
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 0 0 rgba(201, 169, 97, 0);
    text-shadow: 0 0 8px rgba(201, 169, 97, 0.35);
}

.lightbox-close-icon {
    font-size: 22px;
    line-height: 1;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.lightbox-close-text {
    letter-spacing: 0.24em;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    box-shadow: 0 18px 34px rgba(201, 169, 97, 0.35), inset 0 0 0 rgba(201, 169, 97, 0.4);
    text-shadow: none;
}

.lightbox-close:hover .lightbox-close-icon,
.lightbox-close:focus-visible .lightbox-close-icon {
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .lightbox {
        padding: 30px;
    }

    .lightbox-prev {
        left: 24px;
    }

    .lightbox-next {
        right: 24px;
    }
}

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }

    .lightbox-control {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        bottom: 24px;
        padding: 10px 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-stage {
        max-height: 70vh;
    }

    .lightbox-image {
        max-height: 55vh;
    }

    .lightbox-caption {
        font-size: 13px;
        line-height: 1.5;
    }

    .lightbox-close {
        width: auto;
        padding: 10px 22px;
        letter-spacing: 0.1em;
    }
}
