/* ===================================================
   PRAGUE CASTLE - PREMIUM DESIGN SYSTEM
   A Royal Experience for the World's Largest Castle
   =================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Royal Color Palette */
    --color-burgundy: #6B1015;
    --color-burgundy-dark: #4A0B0E;
    --color-burgundy-light: #8B1D1D;
    --color-gold: #C5A059;
    --color-gold-light: #D4B574;
    --color-gold-dark: #A68544;
    --color-cream: #FDFCF7;
    --color-cream-dark: #F5F0E8;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2D2D2D;
    --color-slate: #4a5568;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4B574 0%, #C5A059 50%, #A68544 100%);
    --gradient-burgundy: linear-gradient(135deg, #8B1D1D 0%, #6B1015 50%, #4A0B0E 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-padding: clamp(1rem, 4vw, 3rem);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(197, 160, 89, 0.25);
    --shadow-burgundy: 0 8px 32px rgba(139, 29, 29, 0.2);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

/* ==================== BASE STYLES ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal-light);
    line-height: 1.7;
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-burgundy);
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ==================== CUSTOM SELECTION ==================== */
::selection {
    background-color: var(--color-gold);
    color: white;
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 10px;
    border: 2px solid var(--color-cream-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-burgundy);
}

/* ==================== NAVIGATION ==================== */
.glass-header {
    background: rgba(253, 252, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
}

.glass-header.scrolled {
    background: rgba(253, 252, 247, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: var(--shadow-md);
}

.glass-header.scrolled nav {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--color-charcoal-light);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-burgundy);
}

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

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
    border: 1px solid rgba(197, 160, 89, 0.1);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 1rem 1.75rem;
    color: var(--color-slate);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
    color: var(--color-burgundy);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    width: 3px;
}

/* Mobile Menu */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-content.show {
    max-height: 500px;
}

/* ==================== BUTTONS ==================== */
.btn-gold {
    background: var(--gradient-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-gold::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: var(--transition-slow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(197, 160, 89, 0.4);
    background: linear-gradient(135deg, #D4B574 0%, #A68544 100%);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-burgundy);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-burgundy);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 29, 29, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: white;
    transform: translateY(-2px);
}

/* ==================== CARDS ==================== */
.modern-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(197, 160, 89, 0.15);
}

.modern-card:hover::before {
    opacity: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-8px);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(197, 160, 89, 0.2);
}

.feature-card:hover::after {
    width: 60%;
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-wrapper {
    background: var(--gradient-burgundy);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .icon-wrapper svg {
    color: white;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.6) 40%,
            rgba(26, 26, 26, 0.4) 60%,
            rgba(107, 16, 21, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ==================== SECTION STYLING ==================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-tag span:first-child,
.section-tag span:last-child {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section-tag-text {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
}

.section-title-light {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-slate);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Dark Section */
.section-dark {
    background: var(--gradient-dark);
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== GALLERY CARDS ==================== */
.gallery-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    /* Ensure cards don't shrink too much on mobile scroll */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            transparent 40%,
            rgba(26, 26, 26, 0.9) 100%);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-overlay {
    background: linear-gradient(180deg,
            rgba(107, 16, 21, 0.2) 0%,
            rgba(26, 26, 26, 0.85) 100%);
}

.gallery-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-content {
    transform: translateY(0);
}

.gallery-card-tag {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.625rem;
    margin-bottom: 0.75rem;
    display: block;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.gallery-card-line {
    height: 2px;
    width: 0;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.gallery-card:hover .gallery-card-line {
    width: 100%;
}

.gallery-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-description {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== STATS SECTION ==================== */
.stats-bar {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.stat-label strong {
    display: block;
    color: white;
    font-weight: 600;
}

/* ==================== INFO BOX ==================== */
.info-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.05) 100%);
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}

.info-box-dark {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-gold);
}

/* ==================== TABLES ==================== */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.info-table thead {
    background: var(--gradient-burgundy);
}

.info-table th {
    color: white;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.info-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    transition: var(--transition-fast);
}

.info-table tbody tr:hover td {
    background: var(--color-cream);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-burgundy);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--color-burgundy);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
    color: white;
}

.faq-answer {
    padding-bottom: 1.75rem;
    color: var(--color-slate);
    line-height: 1.9;
}

/* ==================== TICKET CARDS ==================== */
.ticket-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ticket-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.2);
}

.ticket-badge {
    background: var(--gradient-burgundy);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ticket-badge-gold {
    background: var(--gradient-gold);
}

.ticket-badge-green {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.ticket-badge-purple {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gradient-dark);
    color: white;
}

.footer-logo {
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    position: relative;
}

.footer-link:hover {
    color: white;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* ==================== FIXED BOOK BUTTON ==================== */
.fixed-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 40;
    background: var(--gradient-burgundy);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-burgundy);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.fixed-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 29, 29, 0.4);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==================== ANIMATIONS ==================== */
/* Slow Zoom for Hero Images */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Animations Disabled as requested */
.animate-slow-zoom,
.animate-fade-in-up,
.animate-fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Reveal on Scroll Disabled */
.reveal-hidden {
    opacity: 1;
    transform: none;
}

.reveal-visible {
    opacity: 1;
    transform: none;
}

/* Stagger Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    background: var(--gradient-burgundy);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 1.25rem 2rem;
    color: white;
    font-size: 1rem;
    transition: var(--transition-fast);
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== CATEGORY FILTER ==================== */
.category-filter {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: 2px solid rgba(0, 0, 0, 0.08);
    color: var(--color-slate);
    cursor: pointer;
    background: white;
}

.category-filter:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.category-filter.active {
    background: var(--gradient-burgundy);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-burgundy);
}

/* ==================== TIMELINE ==================== */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-burgundy) 0%, rgba(139, 29, 29, 0.2) 100%);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-burgundy);
    box-shadow: 0 0 0 4px var(--color-cream);
}

.timeline-item:last-child::before {
    display: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .fixed-book-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.625rem;
    }

    .fixed-book-btn span {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-card {
        height: 400px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-burgundy);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.skip-to-content:focus {
    top: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .nav-link,
    .dropdown-item,
    .footer-link {
        text-decoration: underline;
    }

    .btn-gold,
    .btn-primary {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {

    .fixed-book-btn,
    header,
    footer,
    .newsletter-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-burgundy);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
    line-height: 1.3;
}

.blog-card:hover .blog-card-title {
    color: var(--color-burgundy);
}

.blog-card-excerpt {
    color: var(--color-slate);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--color-gold);
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--color-gold);
}

/* ==================== BLOG CONTENT (TYPOGRAPHY) ==================== */
.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.75rem;
    color: var(--color-slate);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
    margin: 3rem 0 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}

.blog-content h2 {
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 2rem;
}

.blog-content h4 {
    font-size: 1.5rem;
}

.blog-content strong {
    color: var(--color-charcoal);
    font-weight: 700;
}

.blog-content blockquote {
    padding: 2.5rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(197, 160, 89, 0.03) 100%);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--color-burgundy);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
}

.blog-content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    font-family: serif;
    line-height: 1;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-content ul {
    list-style-type: none;
}

.blog-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-slate);
}

.blog-content ul li::before {
    content: '→';
    color: var(--color-gold);
    font-weight: 700;
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.blog-content ul li:hover::before {
    transform: translateX(3px);
}

.blog-content ol {
    list-style-type: decimal;
    color: var(--color-slate);
}

.blog-content ol li {
    padding-left: 0.75rem;
    margin-bottom: 1rem;
}

.blog-content img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 3.5rem auto;
    max-width: 100%;
    display: block;
}

.blog-content a {
    color: var(--color-burgundy);
    font-weight: 600;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
}

.blog-content a:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-burgundy);
    background: rgba(197, 160, 89, 0.05);
}

.blog-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 4rem 0;
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-slate);
    font-style: italic;
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
}

.blog-content table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-content th {
    background: var(--color-burgundy);
    color: white;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-content td {
    padding: 1rem 1.5rem;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-slate);
}

.blog-content tr:last-child td {
    border-bottom: none;
}

.blog-content tr:nth-child(even) td {
    background: var(--color-cream);
}

/* ==================== LOADING SPINNER ==================== */
.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(197, 160, 89, 0.2);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== TOOLTIP ==================== */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-charcoal);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* ==================== PARALLAX EFFECT ==================== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@supports (-webkit-touch-callout: none) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ==================== DIVIDER ==================== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 4rem 0;
}

.divider-vertical {
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    margin: 0 auto;
}

/* ==================== UTILITIES ==================== */
.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.scroll-snap-x {
    scroll-snap-type: x mandatory;
}

.scroll-snap-x>* {
    scroll-snap-align: start;
}