/*
Theme Name: LeprechaunTheme
Theme URI: https://lime-moose-842141.hostingersite.com
Author: Leprechaun Video
Author URI: https://lime-moose-842141.hostingersite.com
Description: A golden Irish theme for personalized leprechaun videos - bringing the luck of the Irish to everyone.
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leprechaun-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* ==========================================================================
   Google Fonts - Celtic & Modern
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Uncial+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ==========================================================================
   CSS Custom Properties - Golden Irish Theme (Light Mode)
   ========================================================================== */
:root {
    /* Primary Colors - Vibrant Irish Green */
    --color-primary: #0df259;
    --color-primary-dark: #0bc248;
    --color-primary-light: #4dff85;
    --color-primary-muted: rgba(13, 242, 89, 0.15);

    /* Gold Accents - Rich & Warm */
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
    --color-gold-light: #FFE44D;
    --color-gold-muted: rgba(255, 215, 0, 0.15);

    /* Background - Light & Airy (LIGHT THEME!) */
    --color-bg-light: #f5f8f6;
    --color-bg-cream: #fafcfa;
    --color-bg-white: #ffffff;
    --color-bg-dark: #102216;
    --color-bg-dark-alt: #152a1d;

    /* Text Colors */
    --color-text-dark: #111813;
    --color-text-medium: #4a5548;
    --color-text-light: #6b7a6f;
    --color-text-muted: rgba(17, 24, 19, 0.6);

    /* Emerald Variations */
    --color-emerald-50: #ecfdf5;
    --color-emerald-100: #d1fae5;
    --color-emerald-200: #a7f3d0;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --color-emerald-900: #064e3b;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

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

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(13, 242, 89, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(13, 242, 89, 0.5);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-celtic: 'Uncial Antiqua', cursive;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Header */
    --header-height: 80px;
}

/* ==========================================================================
   Base Styles - Light Theme
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-primary);
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typography - Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-md);
}

h1, h2 {
    font-family: var(--font-celtic);
    font-weight: 400;
}

h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin: 0 0 var(--space-md);
    color: var(--color-text-medium);
}

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-gold { color: var(--color-gold-dark); }
.text-dark { color: var(--color-text-dark); }
.text-medium { color: var(--color-text-medium); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: white; }

/* Gradient Text */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-emerald-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-large {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.padding-global {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-lg {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) * 1.5);
}

.padding-section-large {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.padding-section-medium {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

/* Main wrapper - accounts for fixed header on non-home pages */
.main-wrapper {
    padding-top: var(--header-height);
}

body.home .main-wrapper {
    padding-top: 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .padding-section-large {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
    }

    .padding-global {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-align-center { text-align: center; }

/* Alignment */
.align-center {
    margin-left: auto;
    margin-right: auto;
}

.max-width-xlarge {
    max-width: 48rem;
}

.max-width-small {
    max-width: 32rem;
}

/* ==========================================================================
   Header / Navigation - Light Glass Effect
   ========================================================================== */
.section_header,
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 24, 19, 0.08);
    transition: all var(--transition-base);
}

.section_header.is-scrolled,
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header_component,
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header_logo-link,
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary-muted);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 1.5rem;
}

.header-logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.site-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    text-align: left;
    line-height: 1.1;
}

/* Logo color styling */
.site-title .logo-leprechaun {
    color: var(--color-primary);
}

.site-title .logo-video {
    color: var(--color-text-dark);
}

.header_nav,
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header_menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header_menu-link,
.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: color var(--transition-fast);
}

.header_menu-link:hover,
.nav-link:hover,
.current-menu-item .header_menu-link {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Toggle */
.header_menu-toggle,
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 10000;
}

.header_menu-toggle .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header_menu-toggle.is-open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header_menu-toggle.is-open .burger-line:nth-child(2) {
    opacity: 0;
}

.header_menu-toggle.is-open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header_menu,
    .main-nav {
        display: none;
    }

    .header_menu-toggle,
    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn-text {
        display: none;
    }

    /* Compact mobile header */
    .header_component,
    .header-inner {
        padding: 0 var(--space-sm);
        height: 60px;
    }

    /* Hide clover icon on mobile */
    .logo-icon {
        display: none;
    }

    /* Smaller site title */
    .site-title {
        font-size: 1rem;
    }

    /* Compact CTA button */
    .header_cta-desktop {
        padding: 0.4rem 0.65rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .header-actions {
        gap: var(--space-xs);
    }
}

/* ==========================================================================
   Buttons - Golden Irish Style
   ========================================================================== */
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.button,
.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-glow);
}

.button:hover,
.btn-primary:hover {
    background: var(--color-primary-light);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
    color: var(--color-text-dark);
}

.button.gold,
.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-gold);
}

.button.gold:hover,
.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    color: var(--color-text-dark);
}

.button.secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: none;
}

.button.secondary:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-text {
    background: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    box-shadow: none;
}

.btn-text:hover {
    color: var(--color-primary);
}

.button.large,
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon,
.button:hover .btn-icon {
    transform: translateX(4px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.button-group.is-center {
    justify-content: center;
}

/* ==========================================================================
   Hero Section - Epic Irish Landscape
   ========================================================================== */
.section_hero,
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.video-bg-wrapper,
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after,
.hero_overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 34, 22, 0.7) 0%,
        rgba(16, 34, 22, 0.5) 50%,
        rgba(16, 34, 22, 0.9) 100%
    );
}

.hero_video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero_content,
.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-lg);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    margin-bottom: var(--space-xl);
    background: rgba(13, 242, 89, 0.1);
    border: 1px solid rgba(13, 242, 89, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.hero-title,
.heading-style-h1 {
    font-family: var(--font-celtic);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-xl);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.1;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-emerald-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-irish {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.hero-description,
.text-size-medium {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--color-bg-light);
    clip-path: ellipse(60% 100% at 50% 100%);
    transform: translateY(1px);
}

/* Hero Shamrock Decorations */
.hero_shamrock {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    color: var(--color-primary);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.hero_shamrock--left {
    left: 5%;
    top: 30%;
    animation-delay: 0s;
}

.hero_shamrock--right {
    right: 5%;
    bottom: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@media (max-width: 768px) {
    .section_hero,
    .hero {
        min-height: 80vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn,
    .hero-buttons .button {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Cards - Glass & Shadow Effects
   ========================================================================== */
.card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17, 24, 19, 0.05);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card-dark {
    background: var(--color-bg-dark-alt);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.card-dark h3,
.card-dark h4 {
    color: white;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* Glass Card (for hero/dark sections) */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Step Card */
.step-card {
    text-align: center;
    padding: var(--space-2xl);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(17, 24, 19, 0.05);
}

.step-icon .material-symbols-outlined {
    font-size: 3rem;
    color: var(--color-primary);
}

.step-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

/* Number Badge */
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-emerald-600) 100%);
    color: var(--color-text-dark);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-glow);
}

/* Feature Card */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
}

.feature-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
}

.feature-icon-wrap.emerald {
    background: var(--color-emerald-100);
    color: var(--color-emerald-600);
}

.feature-icon-wrap.gold {
    background: var(--color-gold-muted);
    color: var(--color-gold-dark);
}

.feature-icon-wrap.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.feature-icon-wrap.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.feature-card h3,
.feature-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

/* Info Card */
.info-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(17, 24, 19, 0.05);
    transition: all var(--transition-base);
}

.info-card:hover {
    background: var(--color-bg-cream);
    transform: translateX(8px);
}

.info-card .checkmark {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ Card */
.faq-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(17, 24, 19, 0.05);
    transition: all var(--transition-base);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Gallery Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-cream);
    aspect-ratio: 4/3;
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-card-content {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    color: white;
    transform: translateY(1rem);
    opacity: 0;
    transition: all var(--transition-base);
}

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

/* ==========================================================================
   Sections
   ========================================================================== */
/* Social Proof */
.social-proof {
    background: var(--color-bg-light);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.social-proof-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.social-proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2xl);
    opacity: 0.5;
    filter: grayscale(1);
    transition: all var(--transition-base);
}

.social-proof-logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.social-proof-logos .social-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-proof-logos .social-logo svg {
    width: 28px;
    height: 28px;
    color: var(--color-text-dark);
    transition: color var(--transition-base);
}

.social-proof-logos:hover .social-logo svg {
    color: var(--color-primary);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-medium);
}

/* Decorative Blobs */
.decoration-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.decoration-blob.green {
    background: var(--color-primary);
}

.decoration-blob.gold {
    background: var(--color-gold);
}

/* Gallery Section */
.gallery-section {
    background: var(--color-bg-white);
    padding: var(--space-4xl) 0;
}

.gallery-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    color: var(--color-primary-dark);
}

.gallery-link:hover {
    color: var(--color-primary);
}

.gallery-link .material-symbols-outlined {
    transition: transform var(--transition-fast);
}

.gallery-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Features Section */
.features-section {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   CTA Section - Dark with Green Radial
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-celtic);
    color: white;
    margin-bottom: var(--space-lg);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

/* ==========================================================================
   Footer - Dark with Green Accent
   ========================================================================== */
.section_footer,
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_component,
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.footer_logo img {
    height: 36px;
    width: auto;
}

.footer_links,
.footer-social {
    display: flex;
    gap: var(--space-lg);
}

.footer_link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer_link:hover {
    color: var(--color-gold);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

/* Footer Link Columns — mobile first */
.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    padding: 0 16px;
    margin-bottom: 24px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
.footer-col-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: #ffd700;
}

@media (min-width: 640px) {
    .footer-columns {
        flex-direction: row;
        justify-content: center;
        gap: 48px;
        padding: 0;
    }
    .footer-col {
        text-align: left;
    }
}

.footer-sister-site {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sister-site a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-sister-site a:hover {
    color: #ffd700;
}

.footer_copyright,
.footer-copyright {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .footer_component,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer_links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Reviews Banner - Green Gradient
   ========================================================================== */
.reviews-banner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-emerald-600) 100%);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.reviews-banner__track {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-banner__slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.reviews-banner__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.reviews-banner__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.reviews-banner__stars {
    display: block;
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.reviews-banner__text {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.reviews-banner__author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--color-bg-white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    padding: 80px 24px 24px;
    border-left: 1px solid rgba(17, 24, 19, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.mobile-nav_overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav_menu li {
    border-bottom: 1px solid rgba(17, 24, 19, 0.08);
}

.mobile-nav_menu a {
    display: block;
    padding: 16px 0;
    color: var(--color-text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav_menu a:hover {
    color: var(--color-primary);
}

.mobile-nav_separator {
    height: 2px;
    background: rgba(17, 24, 19, 0.15);
    margin: 8px 0;
}

.mobile-nav_menu--account {
    margin-bottom: 8px;
}

.mobile-nav_cta {
    display: block;
    text-align: center;
    margin-top: 24px;
}

/* ==========================================================================
   Modal - Dark Irish Theme (Santa-style)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.is-visible .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #fff;
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-signup {
    margin-top: 1.5rem;
}

.modal-signup-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.modal-signup-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.modal-signup-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-display);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: #fff;
}

.modal-signup-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal-signup-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal-signup-btn {
    white-space: nowrap;
}

.modal-honeypot {
    position: absolute;
    left: -9999px;
}

.modal-signup-message {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.modal-signup-message.success {
    color: var(--color-primary);
}

.modal-signup-message.error {
    color: #ef4444;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-signup-form {
        flex-direction: column;
    }

    .modal-signup-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Dividers
   ========================================================================== */
.leprechaun-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: var(--space-3xl) auto;
    max-width: 200px;
    opacity: 0.5;
}

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

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.bg-light { background-color: var(--color-bg-light); }
.bg-white { background-color: var(--color-bg-white); }
.bg-cream { background-color: var(--color-bg-cream); }
.bg-dark { background-color: var(--color-bg-dark); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Spacing Utilities */
.margin-bottom.margin-xsmall { margin-bottom: 0.5rem; }
.margin-bottom.margin-small { margin-bottom: 1rem; }
.margin-bottom.margin-medium { margin-bottom: 1.5rem; }
.margin-bottom.margin-large { margin-bottom: 2rem; }
.margin-bottom.margin-xlarge { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ==========================================================================
   Material Symbols (Icons)
   ========================================================================== */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: var(--space-lg);
}

.alignright {
    float: right;
    margin-left: var(--space-lg);
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignwide {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: var(--shadow-glow-strong); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-shimmer {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ==========================================================================
   Irish-Themed Utility Classes
   ========================================================================== */
/* Shamrock Icon */
.shamrock {
    color: var(--color-primary);
}

.shamrock::before {
    content: '\2618';
}

/* Gold coin effect */
.gold-coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    color: var(--color-text-dark);
    font-weight: bold;
    box-shadow: var(--shadow-gold);
}

/* Feature Icon */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

/* ==========================================================================
   Phone Mockup Video Preview
   ========================================================================== */
.phone-preview-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #e8f5ec 100%);
    text-align: center;
}

.phone-mockup {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid #2a2a2a;
    border-radius: 35px;
    pointer-events: none;
}

.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-play-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(13, 242, 89, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 242, 89, 0.4);
}

.phone-play-btn:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    box-shadow: 0 6px 20px rgba(13, 242, 89, 0.5);
}

.phone-play-btn .material-symbols-outlined {
    font-size: 24px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 620px;
    background: radial-gradient(ellipse at center, rgba(13, 242, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: phone-glow-pulse 3s ease-in-out infinite;
}

@keyframes phone-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.phone-caption {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--color-text-medium);
    font-weight: 500;
}

/* Phone mockup responsive */
@media (max-width: 480px) {
    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 38px;
    }

    .phone-notch {
        width: 80px;
        height: 24px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .phone-glow {
        width: 280px;
        height: 540px;
    }
}
