/*
Theme Name: QueHayPa
Theme URI: https://quehaypa.com
Author: QueHayPa Team
Author URI: https://quehaypa.com
Description: Tema para guía de recursos de la Costa Colombiana
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quehaypa
*/

/* Variables de color - Paleta Costeña */
:root {
    /* Colores principales */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #00A8CC;
    --secondary-dark: #0089A8;
    --accent: #F7B801;
    --accent-dark: #E5A800;
    --text: #2C3E50;
    --text-light: #5D6D7E;
    --text-muted: #95A5A6;
    --background: #FEF9F3;
    --white: #FFFFFF;
    
    /* Sistema de bordes */
    --border: rgba(0, 0, 0, 0.08);
    
    /* Sombras */
    --shadow: rgba(0,0,0,0.1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    /* Espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Bordes radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Modo Oscuro */
.dark-mode {
    --text: #E8E8E8;
    --text-light: #B0B0B0;
    --text-muted: #808080;
    --background: #1A1A2E;
    --white: #16213E;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: rgba(0,0,0,0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
}

/* Reset básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text);
    font-size: 1.2rem;
}

/* Navegación principal */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Header Search */
.header-search {
    margin-left: 2rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-field {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
}

.search-field::placeholder {
    color: rgba(255,255,255,0.8);
}

.search-field:focus {
    background: var(--white);
    color: var(--text);
    outline: none;
    width: 250px;
}

.search-field:focus::placeholder {
    color: var(--text-light);
}

.search-submit {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Responsive search */
@media (max-width: 768px) {
    .header-search {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .search-form {
        width: 100%;
    }
    
    .search-field {
        flex-grow: 1;
        width: auto;
    }
    
    .search-field:focus {
        width: auto;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-direction: row;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Desktop Header Layout - Explicit */
@media (min-width: 769px) {
    .header-container {
        flex-direction: row !important;
        flex-wrap: nowrap;
    }
    
    .nav-menu {
        flex-direction: row !important;
        flex-wrap: nowrap;
    }
    
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    }
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero section - Hub principal */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Grid de categorías */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Ciudades destacadas */
.cities-section {
    margin: 3rem 0;
}

.section-title {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.city-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.city-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.city-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.city-content {
    padding: 1.5rem;
}

.city-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.city-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Archive/Category pages */
.archive-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.archive-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Lista de lugares */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.place-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.place-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.place-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}

.place-badge span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.place-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.place-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.place-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.place-tag {
    background: var(--background);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.place-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Single lugar */
.single-header {
    background: var(--white);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.single-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-light);
}

.single-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px var(--shadow);
    line-height: 1.8;
}

.single-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.single-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Información de contacto */
.contact-info {
    background: linear-gradient(135deg, var(--background), #FFF);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Responsive - Mobile First Approach */
@media (max-width: 768px) {
    /* Header mobile optimizations */
    .hero-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    /* Simplified nav for mobile */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Larger touch targets for mobile */
    .site-title {
        font-size: 1.25rem;
    }
    
    .category-card,
    .place-card,
    .city-card {
        margin: 0 -0.5rem;
    }
    
    /* Single column layouts */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .places-grid,
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile-optimized cards */
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    /* Single page mobile */
    .single-title {
        font-size: 1.5rem;
    }
    
    .single-content {
        padding: 1.5rem 1rem;
    }
    
    /* Contact info mobile */
    .contact-info {
        padding: 1rem;
    }
    
    /* Better touch targets for buttons */
    .search-submit,
    .dark-mode-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Vote buttons mobile optimization */
    #quehaypa-vote-form button {
        min-height: 56px;
        font-size: 0.95rem;
    }
    
    /* Map iframe mobile height */
    iframe[src*="google.com/maps"] {
        height: 300px !important;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 1.5rem;
    }
}

/* Desktop enhancements */
@media (min-width: 1025px) {
    /* Hover effects only on desktop */
    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    
    .place-card:hover {
        transform: translateY(-5px);
    }
    
    /* Larger images on desktop */
    .place-image,
    .city-image {
        height: 220px;
    }
    
    /* Side-by-side layouts where appropriate */
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utilidades */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Galería de imágenes */
.single-content a[style*="aspect-ratio: 1"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-content a[style*="aspect-ratio: 1"]:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.single-content a[style*="aspect-ratio: 1"] img {
    transition: transform 0.3s ease;
}

.single-content a[style*="aspect-ratio: 1"]:hover img {
    transform: scale(1.1);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0,0,0,0.05);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* =====================================================
   SISTEMA DE VALIDACIÓN - UX OPTIMIZED
   ===================================================== */

.validation-section {
    background: linear-gradient(135deg, var(--white), var(--background));
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-md);
}

.validation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.validation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0;
}

.validation-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.validation-score {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.score-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary) calc(var(--percentage, 0) * 1%),
        var(--background) 0
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.score-ring::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: var(--white);
    border-radius: 50%;
}

.score-value {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.score-details h4 {
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.4;
}

.score-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Formulario de Votación */
.vote-form {
    margin-top: var(--space-lg);
}

.vote-question {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-align: center;
}

.vote-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.vote-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-lg);
    border: 2px solid;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 80px;
}

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

.vote-btn:active {
    transform: translateY(-1px);
}

.vote-btn.up {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #28a745;
    color: #155724;
}

.vote-btn.up:hover {
    background: #28a745;
    color: white;
}

.vote-btn.down {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #dc3545;
    color: #721c24;
}

.vote-btn.down:hover {
    background: #dc3545;
    color: white;
}

.vote-emoji {
    font-size: 1.75rem;
    line-height: 1;
}

.vote-text {
    font-size: 0.9rem;
}

.vote-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mensaje de éxito después de votar */
.vote-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    animation: slideIn var(--transition-slow);
}

.vote-success-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #155724;
    margin-bottom: var(--space-xs);
}

.vote-success-text {
    color: #155724;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para validación */
@media (max-width: 768px) {
    .validation-section {
        padding: var(--space-lg);
        margin: var(--space-lg) calc(-1 * var(--space-md));
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .validation-score {
        flex-direction: column;
        text-align: center;
    }
    
    .vote-actions {
        flex-direction: column;
    }
    
    .vote-btn {
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--space-md);
        min-height: 56px;
    }
}

/* =====================================================
   MODO OSCURO - BOTÓN FLOTANTE ABAJO
   ===================================================== */
.dark-mode-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-left: 0;
}

.dark-mode-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.dark-mode .dark-mode-toggle {
    background: #2d3748;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* =====================================================
   FOOTER STICKY - SIEMPRE ABAJO
   ===================================================== */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
    background: var(--text);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* =====================================================
   HEADER BRANDING - ESTRUCTURA CORREGIDA
   ===================================================== */
.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo-link {
    text-decoration: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-title:hover {
    color: var(--accent);
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-style: italic;
}
