/* 
========================================================================
   Frenciz Akustik - Premium Stylesheet (Light Theme)
   Design: iOS / Glassmorphism Style with White background, Black and Gold accents
   Author: Antigravity AI
========================================================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens / CSS Variables (Light Theme) --- */
:root {
    /* Color Palette */
    --color-bg-darkest: #ffffff;      /* Main clean white background */
    --color-bg-darker: #f9f8f6;       /* Warm cream background for alternate sections */
    --color-bg-card: rgba(255, 255, 255, 0.65); /* Frosted white glass card background */
    --color-bg-card-hover: rgba(255, 255, 255, 0.95);
    --color-border-glass: rgba(0, 0, 0, 0.06); /* Ultra-fine borders for glassmorphism */
    --color-border-glass-hover: rgba(0, 0, 0, 0.12);
    --color-border-gold: rgba(212, 175, 55, 0.25);
    --color-border-gold-hover: rgba(212, 175, 55, 0.55);

    /* Text Colors */
    --color-text-white: #111111;      /* Deep black for main titles */
    --color-text-light: #2d2d2d;      /* Charcoal for high-contrast body text */
    --color-text-muted: #64748b;      /* Slate grey for muted text */
    
    /* Gold Gradients & Solid Colors */
    --color-gold-solid: #d4af37;
    --color-gold-light: #f5e9be;
    --color-gold-dark: #a37c0f;
    --gradient-gold: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #b38938 100%);
    --gradient-gold-text: linear-gradient(135deg, #caa14c 0%, #947125 100%); /* Slightly darker gold for readability on white */
    --gradient-dark-glow: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Blur Effect */
    --blur-glass: blur(20px);
    --shadow-premium: 0 15px 40px -10px rgba(0, 0, 0, 0.07);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.15);
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-darkest);
    color: var(--color-text-light);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--color-bg-darkest);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

li {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

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

::-webkit-scrollbar-track {
    background: var(--color-bg-darkest);
}

::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

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

/* --- Typography / Headings --- */
h1, h2, h3, h4 {
    color: var(--color-text-white);
    font-weight: 600;
}

.serif-title {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.gold-gradient-text {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- Logo Watermark --- */
.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 650px;
    height: 90%;
    max-height: 650px;
    background-image: url('frenciz-akustik-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.022; /* Extremely subtle and elegant watermark */
    pointer-events: none;
    z-index: 0;
}

/* --- Ambient Light Effects in Background --- */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-dark-glow);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

/* --- Navigation / Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 42px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-link.active {
    color: var(--color-gold-dark);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.nav-cta-btn:hover {
    background: var(--gradient-gold);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hamburger Active States */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* --- Layout Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* --- Section Padding & Backgrounds --- */
.section {
    padding: 7rem 0;
    position: relative;
}

.bg-darkest {
    background-color: var(--color-bg-darkest);
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

/* --- Buttons --- */
.btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #ffffff;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: none;
    transform: skewX(-25deg);
}

.btn-primary:hover::before {
    left: 200%;
    transition: all 0.8s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text-light);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-border-gold);
    transform: translateY(-3px);
}

/* --- 1. HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-glow-1 {
    top: -10%;
    right: -10%;
}

.hero-glow-2 {
    bottom: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, rgba(255,255,255,0) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Frame for Main Photo */
.hero-image-frame {
    position: relative;
    border-radius: var(--border-radius-xl);
    padding: 0.75rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    transform: rotate(1deg);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: var(--color-border-gold);
    box-shadow: 0 15px 50px -10px rgba(212, 175, 55, 0.15);
}

.hero-img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* --- 2. ABOUT ME SECTION ("O MNĚ") --- */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-images-side {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 520px;
}

.about-img-box {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: var(--color-bg-card);
    padding: 0.5rem;
    border: 1px solid var(--color-border-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    transition: var(--transition-smooth);
}

.about-img-box img {
    border-radius: var(--border-radius-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-box-1 {
    grid-column: 1 / 10;
    grid-row: 1 / 9;
    z-index: 2;
    transform: rotate(-1.5deg);
}

.about-img-box-2 {
    grid-column: 5 / 13;
    grid-row: 5 / 13;
    z-index: 3;
    transform: rotate(1.5deg);
    border-color: var(--color-border-gold);
}

.about-img-box:hover {
    transform: scale(1.04) rotate(0deg);
    z-index: 10;
    border-color: var(--color-gold-solid);
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--color-text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon-wrapper {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border-gold);
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1rem;
    color: var(--color-text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- 3. SERVICES SECTION ("SLUŽBY") --- */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Services and other Cards */
.glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.25rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold-hover);
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.08), 0 10px 30px -15px rgba(212, 175, 55, 0.15);
    background: var(--color-bg-card-hover);
}

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

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 10;
}

.glass-card:hover .card-icon-box {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold-solid);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.card-desc {
    color: var(--color-text-light);
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    position: relative;
    z-index: 10;
    align-self: flex-start;
}

.card-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.glass-card:hover .card-link::after {
    transform: translateX(5px);
}

/* Service cards specific spanning for 5 cards */
.services-grid .glass-card:nth-child(4) {
    grid-column: span 1;
}

.services-grid .glass-card:nth-child(5) {
    grid-column: span 2;
}

/* --- 4. WHY CHOOSE ME SECTION ("PROČ SI MĚ VYBRAT") --- */
.why-section {
    position: relative;
}

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

.why-left-content {
    display: flex;
    flex-direction: column;
}

.why-right-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-list-item {
    display: flex;
    gap: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.why-list-item:hover {
    transform: translateX(8px);
    border-color: var(--color-border-gold);
    background: var(--color-bg-card-hover);
}

.why-list-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.why-list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.35rem;
}

.why-list-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    opacity: 0.85;
    font-weight: 300;
}

/* --- 5. WEDDINGS SECTION ("SVATBY") --- */
.wedding-section {
    position: relative;
    overflow: hidden;
}

.wedding-glow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
}

.wedding-intro-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-xl);
    padding: 3.5rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.wedding-intro-text h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.wedding-intro-text p {
    color: var(--color-text-light);
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.wedding-intro-img-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border-glass);
    transform: rotate(-1deg);
    box-shadow: var(--shadow-premium);
}

.wedding-intro-img {
    border-radius: var(--border-radius-md);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Modern Wedding Day Timeline */
.wedding-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.wedding-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-border-glass) 0%, var(--color-gold-solid) 20%, var(--color-gold-solid) 80%, var(--color-border-glass) 100%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--color-bg-darkest);
    border: 2px solid var(--color-gold-solid);
    border-radius: 50%;
    top: 2.5rem;
    z-index: 10;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
}

.timeline-time {
    display: inline-block;
    color: var(--color-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.6;
}

/* --- 6. DEMOS & VIDEO SECTION ("UKÁZKY") --- */
.demos-section {
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.video-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 0.75rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.25rem 0.5rem 0.5rem 0.5rem;
}

.video-title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.video-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Premium Lightroom Photo Gallery */
.gallery-wrapper {
    position: relative;
}

.gallery-title-sub {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    padding: 0.35rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

/* Gallery layout styling (different grid shapes) */
.gallery-item.col-span-2 {
    grid-column: span 2;
}

.gallery-item.row-span-2 {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.35rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-item:hover {
    border-color: var(--color-border-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1), var(--shadow-premium);
}

.gallery-icon-zoom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-icon-zoom {
    transform: translateY(0);
}

/* Call to Action Bar below Gallery */
.gallery-cta-bar {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius-xl);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.gallery-cta-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.gallery-cta-text p {
    color: var(--color-text-muted);
    font-weight: 300;
}

/* --- 7. REFERENCES / TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.25rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), var(--shadow-premium);
    background: var(--color-bg-card-hover);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-gold-solid);
    margin-bottom: 1.5rem;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 0.95rem;
    color: var(--color-text-white);
    margin-bottom: 0.1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- 8. COOPERATION PROCESS SECTION ("JAK PROBÍHÁ SPOLUPRÁCE") --- */
.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border-glass) 15%, var(--color-border-gold) 50%, var(--color-border-glass) 85%, transparent 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-number-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7f5f2;
    border: 1px solid var(--color-border-glass);
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step:hover .step-number-box {
    transform: scale(1.1);
    border-color: var(--color-gold-solid);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
    background: #ffffff;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* --- 9. CONTACT SECTION ("KONTAKT") --- */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title-group h3 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.contact-title-group p {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
}

.contact-item-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 1.1rem;
    color: var(--color-text-white);
    font-weight: 500;
}

.contact-item-text a:hover {
    color: var(--color-gold-dark);
}

/* Social Icon Badges */
.socials-wrapper {
    display: flex;
    gap: 1rem;
}

.social-badge {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border-glass);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.social-badge:hover {
    border-color: var(--color-border-gold);
    color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    background: var(--color-bg-card-hover);
}

/* Glassmorphic Contact Form */
.contact-form-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    padding: 3.5rem;
    border-radius: var(--border-radius-xl);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), var(--shadow-premium);
    position: relative;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    margin-bottom: 2rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
}

.form-input {
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 0.9rem 1.25rem;
    color: var(--color-text-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-input:focus {
    border-color: var(--color-border-gold-hover);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

/* Date input styling custom color for calendar icon */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: sepia(50%) saturate(1000%) hue-rotate(340deg) brightness(50%);
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form success message popup */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.25);
    color: #1e7e34;
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
    color: #bd2130;
    display: block;
}

/* --- 10. FOOTER --- */
.footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border-glass);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background: var(--color-gold-solid);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-gold-dark);
    transform: translateX(3px);
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-developer {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-developer a {
    color: var(--color-text-white);
    font-weight: 500;
}

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

/* --- LIGHTBOX PHOTO GALLERY --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-fast);
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10002;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gradient-gold);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.lightbox-prev {
    left: -80px;
}

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

.lightbox-caption {
    color: #cccccc;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

/* --- ANIMATION TRIGGERS (Intersection Observer) --- */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ======================================================================== */

@media (max-width: 1100px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid .glass-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.col-span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .hero-image-area {
        order: -1;
    }
    
    .hero-image-frame {
        max-width: 360px;
    }
    
    .hero-img {
        height: 380px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-images-side {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-highlights {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .why-left-content {
        align-items: center;
    }
    
    .why-right-list {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        text-align: left;
    }
    
    .wedding-intro-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2.5rem;
    }
    
    .wedding-intro-img-frame {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .wedding-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 4.5rem;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 2rem !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info-side {
        text-align: center;
        align-items: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer style */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--color-border-glass);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-cta-btn {
        margin-top: 1rem;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .header.scrolled {
        padding: 0.75rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .glass-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .gallery-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 4.5rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .about-images-side {
        height: 320px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }
}

/* --- PREMIUM LOGO PRELOADER --- */
body.loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-darkest);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 90px;
    height: auto;
    z-index: 10;
    animation: logo-pulse 2s infinite ease-in-out;
}

/* Glowing gold loader ring around the logo */
.preloader-ring {
    position: absolute;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.08);
    border-top: 2px solid var(--color-gold-solid);
    animation: preloader-spin 1.2s infinite linear;
}

.preloader-bar-wrap {
    width: 180px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    animation: preloader-progress 1.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

.preloader-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: text-pulse 1.5s infinite ease-in-out;
}

/* Preloader Animations */
@keyframes preloader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.22)); }
}

@keyframes preloader-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

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

/* Interactive Direct Contact Links */
.direct-contact-link {
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.direct-contact-link:hover {
    transform: translateX(6px);
    background: rgba(212, 175, 55, 0.03);
}

.direct-contact-link:hover .contact-icon {
    background: var(--gradient-gold) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: var(--shadow-gold);
}

