/*
Theme Name: Wylde & Knotty
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A modern, elegant theme featuring Shibari art with full WordPress Customizer integration. Every element is customizable with live preview support.
Version: 1.0.10
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wylde-knotty
Tags: one-page, custom-colors, custom-logo, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   CSS Variables - All colors are customizable via Customizer
   ========================================================================== */

:root {
    /* Dark theme by default - Lovable .dark (index.css) */
    --wk-background: 0, 0%, 7%;
    --wk-foreground: 37, 33%, 97%;
    
    --wk-card: 0, 0%, 12%;
    --wk-card-foreground: 37, 33%, 97%;
    
    --wk-popover: 0, 0%, 12%;
    --wk-popover-foreground: 37, 33%, 97%;
    
    --wk-primary: 11, 55%, 55%;
    --wk-primary-foreground: 0, 0%, 10%;
    
    --wk-secondary: 120, 14%, 30%;
    --wk-secondary-foreground: 37, 33%, 97%;
    
    --wk-muted: 0, 0%, 15%;
    --wk-muted-foreground: 37, 20%, 70%;
    
    --wk-accent: 11, 55%, 55%;
    --wk-accent-foreground: 0, 0%, 10%;
    
    --wk-destructive: 0, 62%, 40%;
    --wk-destructive-foreground: 37, 33%, 97%;
    
    --wk-border: 0, 0%, 20%;
    --wk-input: 0, 0%, 20%;
    --wk-ring: 11, 55%, 55%;
    
    --wk-radius: 0.5rem;
    
    /* Custom Properties */
    --wk-gradient-terracotta: linear-gradient(135deg, hsl(var(--wk-primary)) 0%, hsl(var(--wk-accent)) 100%);
    --wk-shadow-elegant: 0 10px 40px -10px hsla(0, 0%, 10%, 0.15);
    --wk-shadow-lift: 0 20px 50px -15px hsla(0, 0%, 10%, 0.2);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*, *::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: 'Arvo', serif;
    background-color: hsl(var(--wk-background));
    color: hsl(var(--wk-foreground));
    line-height: 1.6;
}

/* Main content: same as Lovable - cream background, charcoal text (no inversion) */
.wk-main {
    background-color: hsl(var(--wk-background));
    color: hsl(var(--wk-foreground));
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Coustard', serif;
    font-weight: 700;
}

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

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

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

/* ==========================================================================
   Container
   ========================================================================== */

.wk-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.wk-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 1.25rem 0;
}

.wk-navigation.scrolled {
    background-color: hsla(var(--wk-background), 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px -5px hsla(0, 0%, 0%, 0.1);
    padding: 0.75rem 0;
}

.wk-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

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

.wk-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    color: hsl(var(--wk-foreground));
}

.wk-navigation:not(.scrolled) .wk-nav-link {
    color: #fff;
}

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

.wk-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--wk-foreground));
}

.wk-navigation:not(.scrolled) .wk-mobile-menu-btn {
    color: #fff;
}

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

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

/* Mobile Menu Overlay */
.wk-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: hsl(var(--wk-background));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.wk-mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.wk-mobile-menu .wk-nav-link {
    font-family: 'Coustard', serif;
    font-size: 1.875rem;
    font-weight: 500;
    color: hsl(var(--wk-foreground));
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.wk-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.wk-hero-bg {
    position: absolute;
    inset: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.wk-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.wk-hero-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 64rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

.wk-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

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

.wk-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--wk-primary));
    color: hsl(var(--wk-primary-foreground));
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.wk-hero-btn:hover {
    background-color: hsla(var(--wk-primary), 0.9);
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px hsla(var(--wk-primary), 0.5);
}

.wk-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.wk-scroll-indicator button {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    animation: bounceSlow 2s ease-in-out infinite;
}

.wk-scroll-indicator button:hover {
    color: #fff;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */

.wk-about {
    padding: 6rem 0;
    background-color: hsl(var(--wk-background));
}

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

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

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

.wk-about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-3rem);
    transition: all 1s ease;
}

.wk-about-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.wk-about-image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--wk-shadow-lift);
}

.wk-about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.wk-about-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 8rem;
    height: 8rem;
    background-color: hsla(var(--wk-primary), 0.2);
    border-radius: 0.5rem;
    z-index: -1;
}

.wk-about-line {
    position: absolute;
    left: -1rem;
    top: 25%;
    width: 0.25rem;
    height: 8rem;
    background-color: hsl(var(--wk-primary));
    border-radius: 9999px;
    display: none;
}

@media (min-width: 1024px) {
    .wk-about-line {
        display: block;
    }
}

.wk-about-content {
    opacity: 0;
    transform: translateX(3rem);
    transition: all 1s ease 0.2s;
}

.wk-about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.wk-section-label {
    font-family: 'Arvo', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--wk-primary));
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.wk-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--wk-foreground));
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

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

.wk-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(var(--wk-primary));
}

.wk-about-text {
    font-size: 1.125rem;
    color: hsl(var(--wk-muted-foreground));
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.wk-about-quote {
    border-left: 4px solid hsl(var(--wk-primary));
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.wk-about-quote p {
    font-family: 'Coustard', serif;
    font-size: 1.25rem;
    color: hsl(var(--wk-foreground));
    font-style: italic;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */

.wk-services {
    padding: 6rem 0;
    background-color: hsl(var(--wk-primary));
}

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

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

.wk-services-header .wk-section-label {
    color: rgba(255, 255, 255, 0.8);
}

.wk-services-header .wk-section-title {
    color: #fff;
}

.wk-services-header .wk-section-title::after {
    display: none;
}

.wk-services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.wk-service-card {
    background-color: hsl(var(--wk-card));
    border-radius: var(--wk-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--wk-shadow-elegant);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(3rem);
}

.wk-service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.wk-service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--wk-shadow-lift);
}

.wk-service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background-color: hsla(var(--wk-primary), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.wk-service-card:hover .wk-service-icon {
    background-color: hsla(var(--wk-primary), 0.2);
}

.wk-service-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--wk-primary));
}

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

.wk-service-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--wk-primary));
    font-weight: 500;
    margin-bottom: 1rem;
}

.wk-service-description {
    color: hsl(var(--wk-muted-foreground));
    line-height: 1.6;
}

.wk-services-cta {
    text-align: center;
    margin-top: 4rem;
}

.wk-services-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.wk-services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--wk-foreground));
    color: hsl(var(--wk-background));
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.wk-services-cta-btn:hover {
    background-color: hsla(var(--wk-foreground), 0.9);
    transform: scale(1.05);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.wk-gallery {
    padding: 6rem 0;
    background-color: hsl(var(--wk-background));
}

@media (min-width: 768px) {
    .wk-gallery {
        padding: 8rem 0;
    }
}

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

.wk-carousel-wrapper {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.wk-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: hsla(var(--wk-background), 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(var(--wk-primary), 0.2);
    color: hsl(var(--wk-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wk-carousel-btn:hover {
    background-color: hsl(var(--wk-primary));
    color: #fff;
}

.wk-carousel-btn.prev {
    left: 0.5rem;
}

@media (min-width: 768px) {
    .wk-carousel-btn.prev {
        left: 1rem;
    }
}

.wk-carousel-btn.next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .wk-carousel-btn.next {
        right: 1rem;
    }
}

.wk-carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.wk-carousel {
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 0 1rem;
}

.wk-carousel-track {
    display: flex;
    margin-left: -1rem;
    transition: transform 0.5s ease;
}

/* All items rendered: Lovable parity (85% mobile, 70% desktop, center align) */
.wk-carousel-track-all {
    display: flex;
    margin-left: -1rem;
    width: var(--wk-track-width-mobile, 425%);
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .wk-carousel-track-all {
        width: var(--wk-track-width-desktop, 350%);
    }
}

.wk-carousel-track-all .wk-carousel-slide {
    flex: 0 0 var(--wk-slide-flex, 20%);
    min-width: 0;
    padding-left: 1rem;
    padding-right: 0;
}

.wk-carousel-slide {
    min-width: 0;
}

.wk-carousel-image {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--wk-shadow-elegant);
    transition: transform 0.3s ease;
}

.wk-carousel-image:hover {
    transform: scale(1.02);
}

.wk-carousel-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .wk-carousel-image img {
        height: 500px;
    }
}

.wk-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.wk-carousel-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background-color: hsla(var(--wk-primary), 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wk-carousel-dot:hover {
    background-color: hsla(var(--wk-primary), 0.5);
}

.wk-carousel-dot.active {
    width: 2rem;
    background-color: hsl(var(--wk-primary));
}

/* Lightbox */
.wk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wk-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.wk-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.wk-lightbox-close:hover {
    color: #fff;
}

.wk-lightbox-close svg {
    width: 2rem;
    height: 2rem;
}

.wk-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    animation: scaleIn 0.5s ease-out forwards;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.wk-testimonials {
    padding: 6rem 0;
    background-color: hsl(var(--wk-secondary));
    color: hsl(var(--wk-secondary-foreground));
}

@media (min-width: 768px) {
    .wk-testimonials {
        padding: 8rem 0;
    }
}

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

.wk-testimonials-header .wk-section-label {
    color: hsl(var(--wk-primary));
}

.wk-testimonials-header .wk-section-title {
    color: hsl(var(--wk-secondary-foreground));
}

.wk-testimonials-header .wk-section-title::after {
    display: none;
}

.wk-testimonial-carousel {
    max-width: 64rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(3rem);
    transition: all 1s ease;
}

.wk-testimonial-carousel.visible {
    opacity: 1;
    transform: translateY(0);
}

.wk-testimonial-container {
    position: relative;
}

.wk-testimonial-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 3rem;
    height: 3rem;
    color: hsla(var(--wk-primary), 0.3);
}

.wk-testimonial-content {
    min-height: 200px;
    display: flex;
    align-items: center;
}

.wk-testimonial-text {
    font-family: 'Coustard', serif;
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .wk-testimonial-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .wk-testimonial-text {
        font-size: 1.875rem;
    }
}

.wk-testimonial-author {
    text-align: center;
}

.wk-testimonial-author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.wk-testimonial-author-role {
    font-size: 0.875rem;
    color: hsl(var(--wk-primary));
}

.wk-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.wk-testimonial-nav-btn {
    color: hsl(var(--wk-secondary-foreground));
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.wk-testimonial-nav-btn:hover {
    color: hsl(var(--wk-primary));
    background-color: rgba(255, 255, 255, 0.1);
}

.wk-testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.wk-testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.wk-testimonial-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.wk-testimonial-dot.active {
    width: 1.5rem;
    background-color: hsl(var(--wk-primary));
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.wk-contact {
    padding: 6rem 0;
    background-color: hsla(var(--wk-muted), 0.5);
}

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

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

.wk-contact-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(3rem);
    transition: all 1s ease;
}

.wk-contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.wk-contact-intro {
    color: hsl(var(--wk-muted-foreground));
    line-height: 1.8;
    margin-bottom: 2rem;
}

.wk-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--wk-primary));
    color: hsl(var(--wk-primary-foreground));
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.wk-contact-btn:hover {
    background-color: hsla(var(--wk-primary), 0.9);
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px hsla(var(--wk-primary), 0.5);
}

.wk-contact-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.wk-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .wk-contact-info {
        flex-direction: row;
        justify-content: center;
    }
}

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

.wk-contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: hsla(var(--wk-primary), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.wk-contact-item:hover .wk-contact-item-icon {
    background-color: hsla(var(--wk-primary), 0.2);
}

.wk-contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--wk-primary));
}

.wk-contact-item-text {
    text-align: left;
}

.wk-contact-item-label {
    font-size: 0.875rem;
    color: hsl(var(--wk-muted-foreground));
}

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

.wk-contact-item:hover .wk-contact-item-value {
    color: hsl(var(--wk-primary));
}

.wk-social-links {
    margin-top: 2.5rem;
}

.wk-social-links p {
    font-size: 0.875rem;
    color: hsl(var(--wk-muted-foreground));
    margin-bottom: 1rem;
}

.wk-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.wk-social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: hsla(var(--wk-primary), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wk-social-icon:hover {
    background-color: hsl(var(--wk-primary));
    color: hsl(var(--wk-primary-foreground));
}

.wk-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ==========================================================================
   Contact Dialog/Modal
   ========================================================================== */

.wk-dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wk-dialog-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wk-dialog {
    background-color: hsl(var(--wk-background));
    border-radius: var(--wk-radius);
    max-width: 500px;
    width: 100%;
    padding: 1.5rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.wk-dialog-overlay.active .wk-dialog {
    transform: scale(1);
}

.wk-dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: hsl(var(--wk-muted-foreground));
    transition: color 0.3s ease;
}

.wk-dialog-close:hover {
    color: hsl(var(--wk-foreground));
}

.wk-dialog-header {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

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

.wk-dialog-description {
    color: hsl(var(--wk-muted-foreground));
}

.wk-form-group {
    margin-bottom: 1.25rem;
}

.wk-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--wk-foreground));
}

.wk-form-input,
.wk-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--wk-border));
    border-radius: var(--wk-radius);
    background-color: hsl(var(--wk-background));
    color: hsl(var(--wk-foreground));
    font-family: 'Arvo', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wk-form-input:focus,
.wk-form-textarea:focus {
    outline: none;
    border-color: hsl(var(--wk-primary));
    box-shadow: 0 0 0 3px hsla(var(--wk-primary), 0.1);
}

.wk-form-textarea {
    resize: none;
    min-height: 100px;
}

.wk-form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: hsl(var(--wk-primary));
    color: hsl(var(--wk-primary-foreground));
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wk-form-submit:hover {
    background-color: hsla(var(--wk-primary), 0.9);
    transform: scale(1.02);
    box-shadow: 0 10px 30px -10px hsla(var(--wk-primary), 0.5);
}

/* Form Success/Error Messages */
.wk-form-message {
    padding: 1rem;
    border-radius: var(--wk-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.wk-form-message.success {
    background-color: hsla(120, 60%, 50%, 0.1);
    color: hsl(120, 60%, 30%);
    border: 1px solid hsla(120, 60%, 50%, 0.3);
}

.wk-form-message.error {
    background-color: hsla(0, 60%, 50%, 0.1);
    color: hsl(0, 60%, 30%);
    border: 1px solid hsla(0, 60%, 50%, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.wk-footer {
    background-color: hsl(var(--wk-primary));
    color: #fff;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .wk-footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

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

.wk-footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.wk-footer-link:hover {
    color: #fff;
}

.wk-footer-top-btn {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.wk-footer-top-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.wk-footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.wk-footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.wk-footer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.wk-footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wk-footer-credit a:hover {
    color: #fff;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

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

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

/* ==========================================================================
   Screen Reader Only
   ========================================================================== */

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

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

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

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

/* Hide admin bar offset when logged in */
html.logged-in .wk-navigation {
    top: 32px;
}

@media screen and (max-width: 782px) {
    html.logged-in .wk-navigation {
        top: 46px;
    }
}

/* ==========================================================================
   Page & Post Styles
   ========================================================================== */

.wk-page,
.wk-single,
.wk-404 {
    padding-top: 6rem;
    min-height: 100vh;
    background-color: hsl(var(--wk-background));
}

.wk-page-content,
.wk-single-content,
.wk-404-content {
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .wk-page-title {
        font-size: 3rem;
    }
}

.wk-article {
    max-width: 800px;
    margin: 0 auto;
}

.wk-article-meta {
    font-size: 0.875rem;
    color: hsl(var(--wk-muted-foreground));
    margin-top: 0.5rem;
}

.wk-article-thumbnail {
    margin: 2rem 0;
    border-radius: var(--wk-radius);
    overflow: hidden;
}

.wk-article-thumbnail img {
    width: 100%;
    height: auto;
}

.wk-article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--wk-foreground));
}

.wk-article-content p {
    margin-bottom: 1.5rem;
}

.wk-article-content h2,
.wk-article-content h3,
.wk-article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.wk-article-content a {
    color: hsl(var(--wk-primary));
    text-decoration: underline;
}

.wk-article-content a:hover {
    color: hsla(var(--wk-primary), 0.8);
}

.wk-article-content ul,
.wk-article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.wk-article-content li {
    margin-bottom: 0.5rem;
}

.wk-article-content blockquote {
    border-left: 4px solid hsl(var(--wk-primary));
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: hsl(var(--wk-muted-foreground));
}

.wk-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--wk-radius);
    margin: 1.5rem 0;
}
