/*
Theme Name: Dream Garages & Gazebos
Theme URI: https://dreamgaragesgazebos.com
Author: Premier Structures
Author URI: https://premierstructures.com
Description: A premium WordPress theme for custom garage and gazebo builders. Features elegant typography, parallax effects, and a warm, professional design.
Version: 1.0.1
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dream-garages-gazebos
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, full-width-template
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Light Theme */
:root {
    --background: 40 20% 97%;
    --foreground: 30 10% 15%;
    --card: 40 25% 95%;
    --card-foreground: 30 10% 15%;
    --popover: 40 20% 97%;
    --popover-foreground: 30 10% 15%;
    --primary: 30 55% 35%;
    --primary-foreground: 40 30% 96%;
    --secondary: 35 25% 88%;
    --secondary-foreground: 30 10% 20%;
    --muted: 35 15% 90%;
    --muted-foreground: 30 8% 45%;
    --accent: 28 70% 45%;
    --accent-foreground: 40 30% 96%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 35 20% 85%;
    --input: 35 20% 85%;
    --ring: 30 55% 35%;
    --radius: 0.5rem;
    --warm-gold: 38 70% 50%;
    --warm-gold-foreground: 38 10% 10%;
    --charcoal: 30 10% 18%;
    --charcoal-foreground: 40 20% 92%;
    --stone: 35 12% 70%;
    --cream: 40 30% 96%;
    --timber: 25 40% 30%;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* Dark Theme */
.dark {
    --background: 30 10% 8%;
    --foreground: 40 20% 92%;
    --card: 30 10% 12%;
    --card-foreground: 40 20% 92%;
    --popover: 30 10% 8%;
    --popover-foreground: 40 20% 92%;
    --primary: 38 70% 50%;
    --primary-foreground: 30 10% 8%;
    --secondary: 30 10% 18%;
    --secondary-foreground: 40 20% 92%;
    --muted: 30 8% 18%;
    --muted-foreground: 35 10% 60%;
    --accent: 28 70% 45%;
    --accent-foreground: 40 30% 96%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 30 8% 22%;
    --input: 30 8% 22%;
    --ring: 38 70% 50%;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: hsl(var(--border));
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: inherit;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

p {
    margin: 0;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    background-color: transparent;
    background-image: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

/* Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary\/30 { background-color: hsl(var(--secondary) / 0.3); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted\/30 { background-color: hsl(var(--muted) / 0.3); }
.bg-charcoal { background-color: hsl(var(--charcoal)); }
.bg-warm-gold { background-color: hsl(var(--warm-gold)); }
.bg-cream { background-color: hsl(var(--cream)); }
.bg-cream\/10 { background-color: hsl(var(--cream) / 0.1); }
.bg-cream\/20 { background-color: hsl(var(--cream) / 0.2); }

.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-warm-gold { color: hsl(var(--warm-gold)); }
.text-cream { color: hsl(var(--cream)); }
.text-cream\/50 { color: hsl(var(--cream) / 0.5); }
.text-cream\/70 { color: hsl(var(--cream) / 0.7); }
.text-cream\/80 { color: hsl(var(--cream) / 0.8); }
.text-charcoal { color: hsl(var(--charcoal)); }
.text-charcoal-foreground { color: hsl(var(--charcoal-foreground)); }
.text-charcoal-foreground\/50 { color: hsl(var(--charcoal-foreground) / 0.5); }
.text-charcoal-foreground\/60 { color: hsl(var(--charcoal-foreground) / 0.6); }
.text-charcoal-foreground\/70 { color: hsl(var(--charcoal-foreground) / 0.7); }

.border-border { border-color: hsl(var(--border)); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-cream\/10 { border-color: hsl(var(--cream) / 0.1); }
.border-cream\/30 { border-color: hsl(var(--cream) / 0.3); }
.border-cream\/50 { border-color: hsl(var(--cream) / 0.5); }

/* Components */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        hsla(30, 10%, 10%, 0.55) 0%,
        hsla(30, 10%, 10%, 0.7) 100%
    );
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}

.section-divider-left {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, hsl(var(--warm-gold)), hsl(var(--accent)));
}

.card-hover {
    transition: all 0.5s ease-out;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px hsla(30, 10%, 10%, 0.15);
}

.nav-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: hsla(40, 20%, 97%, 0.85);
    border-bottom: 1px solid hsla(35, 20%, 85%, 0.5);
}

.nav-glass.scrolled {
    background: hsla(40, 20%, 97%, 0.95);
    box-shadow: 0 4px 20px -5px hsla(30, 10%, 10%, 0.1);
}

.stat-counter {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: hsl(var(--warm-gold));
}

@media (min-width: 768px) {
    .stat-counter {
        font-size: 3.75rem;
    }
}

.hero-text {
    text-shadow: 0 2px 20px hsla(30, 10%, 10%, 0.3);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up-delay-1 {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid hsl(var(--cream) / 0.5);
    color: hsl(var(--cream));
}

.btn-outline:hover {
    background-color: hsl(var(--cream) / 0.2);
}

/* Grid Utilities */
.grid {
    display: grid;
}

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Flexbox Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

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

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.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-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-4 { padding-top: 1rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }

.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

.min-h-screen { min-height: 100vh; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[450px\] { min-height: 450px; }
.min-h-\[700px\] { min-height: 700px; }

.h-\[70vh\] { height: 70vh; }
.h-\[60vh\] { height: 60vh; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-16 { bottom: 4rem; }
.-bottom-6 { bottom: -1.5rem; }
.-right-6 { right: -1.5rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.block { display: block; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
}

/* Text */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.16; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

@media (min-width: 768px) {
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.16; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:text-8xl { font-size: 6rem; line-height: 1; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1); }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Flex Shrink */
.flex-shrink-0 { flex-shrink: 0; }

/* Background */
.bg-fixed { background-attachment: fixed; }
.bg-center { background-position: center; }
.bg-cover { background-size: cover; }
.bg-no-repeat { background-repeat: no-repeat; }

/* Fill */
.fill-warm-gold { fill: hsl(var(--warm-gold)); }

/* Group Hover */
.group:hover .group-hover\:bg-primary\/20 {
    background-color: hsl(var(--primary) / 0.2);
}

.group:hover .group-hover\:text-primary\/20 {
    color: hsl(var(--primary) / 0.2);
}

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

.group:hover .group-hover\:gap-3 {
    gap: 0.75rem;
}

/* Hover States */
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-warm-gold:hover { color: hsl(var(--warm-gold)); }
.hover\:bg-primary\/90:hover { background-color: hsl(var(--primary) / 0.9); }
.hover\:bg-cream\/10:hover { background-color: hsl(var(--cream) / 0.1); }
.hover\:bg-cream\/20:hover { background-color: hsl(var(--cream) / 0.2); }
.hover\:bg-background\/90:hover { background-color: hsl(var(--background) / 0.9); }

/* Aspect Ratio */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: var(--radius);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: hsl(var(--card));
    margin-bottom: 0.75rem;
}

.accordion-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.accordion-trigger:hover {
    color: hsl(var(--primary));
}

.accordion-trigger svg {
    transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    font-family: var(--font-body);
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.625;
    padding-bottom: 1.25rem;
}

.accordion-content[data-state="closed"] {
    display: none;
}

/* Star Rating */
.star-icon {
    width: 1rem;
    height: 1rem;
    fill: hsl(var(--warm-gold));
    color: hsl(var(--warm-gold));
}

/* Hero Indicators */
.hero-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--cream) / 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-indicator.active {
    width: 1.5rem;
    background-color: hsl(var(--warm-gold));
}

/* Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    color: hsl(var(--muted-foreground));
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

.mobile-menu.is-open {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Icon Styles */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

/* WordPress Specific */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.wp-caption-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Additional Responsive Utilities */
@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none; }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer {
        display: none;
    }
}
