/*
Theme Name: Clarkenite Designs
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A modern brutalist design theme for Clarkenite Designs - Interior Design & Architecture. Features a clean, architectural aesthetic with orange accents and comprehensive Customizer integration.
Version: 1.0.0
Requires at least: 5.0
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: clarkenite-designs
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, theme-options
*/

/* Clarkenite Designs - Modern Brutalist Design System */

:root {
    /* Core palette - customizable via Customizer */
    --background-h: 207;
    --background-s: 29%;
    --background-l: 85%;
    --background: var(--background-h) var(--background-s) var(--background-l);
    
    --foreground-h: 0;
    --foreground-s: 0%;
    --foreground-l: 5%;
    --foreground: var(--foreground-h) var(--foreground-s) var(--foreground-l);

    /* Blue-gray - section backgrounds */
    --beige-h: 207;
    --beige-s: 25%;
    --beige-l: 92%;
    --beige: var(--beige-h) var(--beige-s) var(--beige-l);
    --beige-foreground: 0 0% 10%;

    /* Silver/Concrete - textures and secondary */
    --silver-h: 220;
    --silver-s: 10%;
    --silver-l: 75%;
    --silver: var(--silver-h) var(--silver-s) var(--silver-l);
    --silver-foreground: 0 0% 10%;
    --concrete: 220 5% 45%;

    /* Orange accent - CTAs and highlights */
    --accent-h: 32;
    --accent-s: 95%;
    --accent-l: 44%;
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-foreground: 0 0% 100%;

    /* Card styling */
    --card: 207 30% 98%;
    --card-foreground: 0 0% 5%;

    --popover: 207 30% 98%;
    --popover-foreground: 0 0% 5%;

    --primary: 0 0% 5%;
    --primary-foreground: 0 0% 98%;

    --secondary: 207 20% 95%;
    --secondary-foreground: 0 0% 10%;

    --muted: 207 20% 90%;
    --muted-foreground: 220 5% 45%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 98%;

    --border: 220 10% 85%;
    --input: 220 10% 85%;
    --ring: 32 95% 44%;

    /* Brutalist: sharp corners */
    --radius: 0px;
}

/* Base reset and styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Architectural typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: var(--radius);
}

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

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

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

/* Input styles */
.input, .textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus, .textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

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

/* Card styles */
.card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
}

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

.card-hover:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Image zoom effect */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.5s ease-out;
}

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* Fade up animation */
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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

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

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

.site-header.scrolled {
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

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

.site-logo img {
    height: 3rem;
    width: auto;
    transition: all 0.3s ease;
}

.site-header:not(.scrolled) .site-logo img {
    filter: brightness(0) invert(1);
}

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

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: hsl(var(--muted-foreground));
}

.site-header.scrolled .nav-link:hover {
    color: hsl(var(--foreground));
}

.site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header:not(.scrolled) .nav-link:hover {
    color: white;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
}

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

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.site-header.scrolled .mobile-menu-toggle {
    color: hsl(var(--foreground));
}

.site-header:not(.scrolled) .mobile-menu-toggle {
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background-color: hsl(var(--background));
    border-top: 1px solid hsl(var(--border));
}

.mobile-menu.open {
    display: block;
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 0;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--foreground));
}

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

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

.hero-background img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        hsl(var(--foreground) / 0.6),
        hsl(var(--foreground) / 0.5),
        hsl(var(--foreground) / 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-subtitle {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .accent {
    color: hsl(var(--accent));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: hsl(var(--background) / 0.7);
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: hsl(var(--background));
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 6rem 0;
    background-color: hsl(var(--beige));
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(var(--accent));
}

.section-label {
    color: hsl(var(--accent));
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Quote styles */
.about-quote {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid hsl(var(--accent));
}

.about-quote-icon {
    position: absolute;
    left: -0.75rem;
    top: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--accent));
    background-color: hsl(var(--beige));
}

.about-quote p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
}

@media (min-width: 768px) {
    .about-quote p {
        font-size: 1.25rem;
    }
}

.about-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--accent));
}

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

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .services-section {
        padding: 8rem 0;
    }
}

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

.section-header .section-description {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    padding: 2rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--accent) / 0.1);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: hsl(var(--accent));
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--accent));
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: hsl(var(--accent-foreground));
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio-section {
    padding: 6rem 0;
    background-color: hsl(var(--beige));
}

@media (min-width: 1024px) {
    .portfolio-section {
        padding: 8rem 0;
    }
}

.project-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .project-card {
        padding: 3rem;
    }
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
    .project-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .project-title {
        font-size: 1.875rem;
    }
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.project-location svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--accent));
}

.project-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-exterior {
    margin-bottom: 2.5rem;
}

.project-exterior-image {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.project-exterior-content .section-label {
    margin-bottom: 1rem;
}

.project-exterior-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .project-exterior-title {
        font-size: 1.5rem;
    }
}

.project-exterior-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

/* Residential project exterior */
.project-exterior-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .project-exterior-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.project-exterior-grid .project-exterior-image {
    aspect-ratio: 3/4;
    margin-bottom: 0;
}

/* Tabs */
.tabs-container {
    width: 100%;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: hsl(var(--muted));
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.tab-trigger {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
    background: transparent;
}

@media (min-width: 768px) {
    .tab-trigger {
        font-size: 0.875rem;
    }
}

.tab-trigger.active {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tab-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.tab-content-inner {
    display: flex;
    flex-direction: column;
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tab-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--accent));
}

.tab-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--accent-foreground));
}

.tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .tab-title {
        font-size: 1.5rem;
    }
}

.tab-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--accent));
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--accent-foreground));
}

.contact-item-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-value {
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: color 0.3s ease;
}

a.contact-item-value:hover {
    color: hsl(var(--accent));
}

/* Contact form */
.contact-form-wrapper {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 2rem;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-top: 0.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    padding: 3rem 0;
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
}

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

.footer-logo img {
    height: 3.5rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--silver));
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(var(--accent));
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: hsl(var(--silver));
}

.footer-credit {
    font-size: 0.75rem;
    color: hsl(var(--silver) / 0.7);
    margin-top: 0.25rem;
}

.footer-credit a {
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: hsl(var(--accent));
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* WordPress specific */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Print styles */
@media print {
    .site-header,
    .scroll-indicator,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
