/* CSS Variables - Color Palette */
:root {
    --porcelain: #F8F7F4;
    --soft-blush: #F3E8EA;
    --champagne: #EEDFCC;
    --deep-black: #101010;
    --ink: #0E0E10;
    --dove-gray: #7D7C78;
    --font-display: 'Playfair Display', serif;
    --font-playfair: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --silk-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --velvet-transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --cashmere-transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Grid Layouts */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: var(--cashmere-transition);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

nav.scrolled {
    background-color: rgba(248, 247, 244, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(238, 223, 204, 0.2);
}

nav.scrolled .brand-logo h1 {
    color: var(--ink);
}

nav.scrolled .brand-logo p {
    color: rgba(14, 14, 16, 0.6);
}

nav.scrolled .nav-links a {
    color: var(--ink);
}

nav.scrolled .nav-cta {
    color: var(--ink);
    border: 1px solid rgba(14, 14, 16, 0.2);
    background-color: rgba(14, 14, 16, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand-logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--velvet-transition);
    color: white;
}

.brand-logo p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: var(--velvet-transition);
    color: rgba(248, 247, 244, 0.8);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a, .nav-links button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: var(--silk-transition);
    text-decoration: none;
    transform: translateY(0);
    color: white;
}

.nav-links a:hover, .nav-links button:hover {
    transform: translateY(-1px);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--silk-transition);
    border: 1px solid rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    backdrop-filter: blur(12px);
    display: none;
    border-radius: 9999px;
}

@media (min-width: 1024px) {
    .nav-cta { display: block; }
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14, 14, 16, 0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

.mobile-menu-toggle span {
    width: 2rem;
    height: 2px;
    background-color: white;
    transition: var(--silk-transition);
    transform-origin: center;
}

nav.scrolled .mobile-menu-toggle span {
    background-color: var(--ink);
}

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

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

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

/* Mobile Menu Overlay */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/uploads/2025/11/brautfrisur-make-up-graz-salon-palmira-shopping-nord-2025-11-scaled.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem 2rem;
    z-index: 55;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-links.mobile-active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 16, 0.85);
    z-index: -1;
}

.nav-links.mobile-active::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.nav-links.mobile-active a {
    font-size: 1.5rem;
    color: white !important;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-toggle { display: none; }
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: var(--deep-black);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-haare {
    width: 400px;
    padding: 1.5rem;
}

.mega-menu-services {
    width: 350px;
    padding: 1.5rem;
}

.mega-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mega-item:hover {
    transform: scale(1.05);
}

.mega-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.mega-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink) 0%, var(--dove-gray) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/uploads/2025/11/brautfrisur-make-up-graz-salon-palmira-shopping-nord-2025-11-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) contrast(1.1);
    transform: scale(1.1);
    z-index: 1;
    opacity: 0;
    animation: heroImageFade 13s ease-in-out infinite;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.1);
    transform: scale(1.1);
    z-index: 2;
    opacity: 1;
    animation: heroVideoFade 13s ease-in-out infinite;
}

/* Video shows first for 8 seconds, fades for 1 second */
@keyframes heroVideoFade {
    0%, 61.5% {
        opacity: 1;
    }
    69.2%, 100% {
        opacity: 0;
    }
}

/* Image shows for 4 seconds after video, fades for 1 second */
@keyframes heroImageFade {
    0%, 61.5% {
        opacity: 0;
    }
    69.2%, 92.3% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.grain-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 3;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(14,14,16,0.6) 0%, rgba(14,14,16,0.3) 50%, transparent 100%);
    z-index: 4;
    pointer-events: none;
}

.cover-lines-top-left {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(248, 247, 244, 0.9);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    z-index: 10;
}

.cover-lines-top-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(248, 247, 244, 0.9);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: right;
    z-index: 10;
}

.cover-lines-bottom-left {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: rgba(248, 247, 244, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 10;
}

.hairline-divider {
    width: 30px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: var(--porcelain);
    max-width: 1500px;
    padding: 0 1.5rem;
}

.magazine-title h1 {
    font-size: clamp(4rem, 12vw, 12rem);
    font-family: var(--font-playfair);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.magazine-title h1 span {
    font-weight: 500;
    font-style: italic;
}

.magazine-subhead h2 {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-family: var(--font-playfair);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.magazine-subhead h2 em {
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.btn-primary {
    background-color: var(--porcelain);
    color: var(--ink);
    padding: 1rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--velvet-transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-inter);
    box-shadow: 0 4px 25px rgba(14, 14, 16, 0.15);
    transform: translateY(0) scale(1);
}

.btn-primary:hover {
    background-color: var(--champagne);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14, 14, 16, 0.25);
}

.btn-link {
    color: var(--porcelain);
    font-weight: 300;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    transition: var(--silk-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transform: translateY(0);
}

.btn-link:hover {
    color: var(--champagne);
    transform: translateY(-1px);
}

.btn-link svg {
    transition: var(--silk-transition);
}

.btn-link:hover svg {
    transform: translateX(6px) rotate(5deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 4rem;
    background-color: rgba(248, 247, 244, 0.6);
}

.scroll-text {
    color: rgba(248, 247, 244, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

@media (min-width: 640px) {
    .hero-ctas { flex-direction: row; }
}

/* Sections */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    font-family: var(--font-display);
    color: var(--deep-black);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dove-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--porcelain);
}

.services-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.menu-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.menu-card:nth-child(even) {
    transform: translateX(50px);
}

.menu-card:nth-child(even).animate {
    transform: translateX(0);
}

.menu-card {
    background: linear-gradient(135deg, #f8f7f4 0%, #eedfcc 100%);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(125, 124, 120, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(243, 232, 234, 0.1) 100%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.menu-card:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(243, 232, 234, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.menu-card:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(243, 232, 234, 0.08) 100%);
}

.menu-card:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(243, 232, 234, 0.08) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(125, 124, 120, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125, 124, 120, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(125, 124, 120, 0.02) 2px, rgba(125, 124, 120, 0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(125, 124, 120, 0.02) 2px, rgba(125, 124, 120, 0.02) 4px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(243, 232, 234, 0.6);
    position: relative;
    z-index: 2;
    background: rgba(248, 247, 244, 0.9);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.menu-header svg {
    color: var(--dove-gray);
    flex-shrink: 0;
}

.menu-header h3 {
    font-size: 1.75rem;
    font-weight: 300;
    font-family: var(--font-display);
    color: var(--deep-black);
    margin: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background: rgba(248, 247, 244, 0.85);
    border-radius: 0.375rem;
}

.menu-item:hover {
    padding-left: 0.5rem;
}

.item-name {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--deep-black);
    min-width: 0;
}

.item-dots {
    flex-grow: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--dove-gray) 0,
        var(--dove-gray) 3px,
        transparent 3px,
        transparent 8px
    );
    opacity: 0.3;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--deep-black);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-card {
        padding: 2rem 1.5rem;
    }
    
    .menu-header h3 {
        font-size: 1.5rem;
    }
    
    .item-name,
    .item-price {
        font-size: 0.9rem;
    }
}

/* Lookbook Section */
.lookbook {
    background: var(--soft-blush);
}

.magazine-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
}

.magazine-cover {
    max-width: 50rem;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: magazineFloat 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .magazine-cover {
        max-width: 90%;
    }
}

@keyframes magazineFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.magazine-cover:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.25);
}

.magazine-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.magazine-cover:hover .cover-overlay {
    opacity: 1;
}

.cover-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: var(--font-display);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.magazine-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: var(--deep-black);
}

.magazine-close:hover {
    background: var(--soft-blush);
    transform: scale(1.1) rotate(90deg);
}

.book-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .book-container {
        max-width: 80rem;
        margin: 0 auto;
        position: relative;
    }
}

.book {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    aspect-ratio: 2/1.4;
}

@media (max-width: 768px) {
    .book {
        aspect-ratio: 2/1.4;
    }
}

.book::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.02) 50%, 
        transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.book::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.02) 50%, 
        transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.book-pages {
    display: flex;
    height: 100%;
}

.book-page {
    width: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
}

.book-page.flipping-left {
    animation: flipLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-page.flipping-right {
    animation: flipRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-binding {
    width: 3px;
    background: linear-gradient(to bottom,
        #a8a8a8 0%,
        #d4d4d4 10%,
        #e5e7eb 50%,
        #d4d4d4 90%,
        #a8a8a8 100%);
    box-shadow: 
        inset -2px 0 4px rgba(0, 0, 0, 0.3),
        inset 2px 0 4px rgba(0, 0, 0, 0.3),
        0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.book-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--deep-black);
}

@media (max-width: 768px) {
    .book-nav {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.95);
    }
}
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.book-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.book-nav-prev {
    left: 1rem;
}

.book-nav-next {
    right: 1rem;
}

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

.book-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-dot.active {
    background: var(--deep-black);
    transform: scale(1.25);
}

/* Video Section */
.video-section {
    background: var(--deep-black);
    color: white;
    position: relative;
    overflow: hidden;
}

.video-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/uploads/2025/11/salon-palmira-mode-editorial-schwarzer-chiffon-lookbook-graz-shopping-nord-2025-11.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.video-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 9/16;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(255, 255, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.video-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    position: relative;
    z-index: 1;
}

.video-item::after {
    content: '';
    position: absolute;
    inset: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    transition: opacity 0.5s ease;
    border-radius: 0.5rem;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.video-item:hover::after {
    opacity: 1;
}

/* Before/After Section */
.before-after {
    background: var(--champagne);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
}

.technique-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.technique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.technique-title {
    font-size: 1.875rem;
    font-weight: 300;
    font-family: var(--font-display);
    color: var(--deep-black);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-blush);
}

@media (max-width: 768px) {
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technique-card {
        padding: 1.5rem;
    }
    
    .technique-title {
        font-size: 1.5rem;
    }
}

.comparison-slider {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.1s ease-out;
}

.comparison-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease-out;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.comparison-handle::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #6b7280;
    border-radius: 2px;
}

.comparison-labels {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
}

.comparison-label {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background: var(--porcelain);
}

.testimonial-content {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    font-family: var(--font-display);
    color: var(--deep-black);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--dove-gray);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--deep-black);
    transform: scale(1.25);
}

/* About Section */
.about {
    background: var(--soft-blush);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.25rem;
    color: var(--dove-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Shop Section */
.shop {
    background: var(--champagne);
}

.product-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-display);
    color: var(--deep-black);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--deep-black);
    margin-bottom: 1rem;
}

.product-button {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--deep-black);
    color: var(--deep-black);
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: var(--deep-black);
    color: white;
    transform: translateY(-1px);
}

/* CTA Section */
.cta {
    background: var(--deep-black);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

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

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    font-family: var(--font-display);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--dove-gray);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.cta-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.cta-secondary:hover {
    background: white;
    color: var(--deep-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--deep-black);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.875rem;
    font-weight: 300;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-info h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.footer-info p {
    color: var(--dove-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-map {
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(1) contrast(0.8) brightness(0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-display);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--dove-gray);
    margin-top: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--dove-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: 2px solid var(--deep-black);
    background: transparent;
    color: var(--deep-black);
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: var(--deep-black);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(16, 16, 16, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes flipLeft {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(-90deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes flipRight {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq {
    background: var(--porcelain);
}

.faq-container {
    max-width: 50rem;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--deep-black);
    transition: all 0.3s ease;
}

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

.faq-question span {
    flex: 1;
    padding-right: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--dove-gray);
    margin-top: 0.25rem;
    min-width: 24px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dove-gray);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none !important;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
        margin-top: 2.5rem;
    }

    .footer-brand h2 {
        font-size: 1.375rem;
    }

    .footer-brand p {
        font-size: 0.8125rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.8125rem;
    }

    .footer-links p {
        margin: 0 !important;
    }

    .footer-section h3 {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .footer-info {
        margin-bottom: 1.25rem;
    }

    .footer-info h4 {
        font-size: 0.9375rem;
    }

    .footer-info p {
        font-size: 0.875rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-map {
        aspect-ratio: 16/10;
    }

    /* FAQ Mobile Optimierung */
    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1rem 1rem;
        font-size: 0.9375rem;
    }

    .faq-question span {
        padding-right: 0.5rem;
        line-height: 1.4;
        max-width: calc(100% - 32px);
    }

    .faq-icon {
        margin-top: 0.125rem;
        min-width: 20px;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 0.25rem;
    }

    .faq-question {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
    }

    .faq-question span {
        padding-right: 0.375rem;
        max-width: calc(100% - 28px);
    }

    .faq-icon {
        min-width: 18px;
    }

    .faq-answer p {
        padding: 0 0.75rem 0.875rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-brand h2 {
        font-size: 1.25rem;
    }

    .footer-brand p {
        font-size: 0.75rem;
    }

    .footer-links {
        font-size: 0.75rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-info {
        margin-bottom: 1rem;
    }

    .footer-info h4 {
        font-size: 0.875rem;
    }

    .footer-info p {
        font-size: 0.8125rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        gap: 1.25rem;
        padding-top: 1.25rem;
        margin-top: 2rem;
    }
}

/* Accessibility */
@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;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-black);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dove-gray);
}

