/*
Theme Name: Heritage Motor Co.
Theme URI: https://bengkelmalang.repair/
Author: Heritage Motor Co.
Author URI: https://bengkelmalang.repair/
Description: Premium automotive restoration, body repair, and painting service WordPress theme with full customization options. Classic heritage design with gold and black accents.
Version: 2.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: heritage-motor-co
Tags: automotive, repair, restoration, custom-colors, custom-menu, featured-images, theme-options

This theme is designed specifically for Heritage Motor Co. Malang, featuring a premium dark design with classic gold and bronze accents.
Website: https://bengkelmalang.repair/
*/

:root {
    --primary-gold: #D4AF37;
    --secondary-bronze: #B8860B;
    --dark-bg: #0a0a0a;
    --light-text: #F5F5F5;
    --gray-text: #b0b0b0;
    --card-bg: #1a1a1a;
    --gradient-start: #D4AF37;
    --gradient-end: #B8860B;
    --accent-gold: #C9A050;
    --deep-black: #050505;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,153,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.hero {
    margin-top: 82px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 50%, var(--dark-bg) 100%);
    z-index: -2;
}

.paint-splash {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.paint-splash-1 {
    top: -200px;
    right: -200px;
}

.paint-splash-2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary-bronze) 0%, transparent 70%);
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(0,153,255,0.2);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Heritage Trust Badges */
.heritage-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.heritage-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.heritage-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
}

.heritage-badge-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.heritage-badge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.4);
}

.heritage-badge-item:hover::after {
    opacity: 1;
}

.badge-icon {
    font-size: 3rem;
    line-height: 1;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}

.badge-content {
    flex: 1;
    z-index: 1;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gradient-end) 100%);
    color: white;
    box-shadow: 0 5px 30px rgba(0,153,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0,153,255,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(26,26,26,0.5);
    border: 1px solid rgba(0,153,255,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0,153,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,153,255,0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    font-size: 0.85rem;
    color: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    background: rgba(0,153,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,153,255,0.2);
}

.process {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 50%, var(--dark-bg) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,153,255,0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray-text);
}

.gallery {
    background: var(--dark-bg);
    overflow: hidden;
}

.gallery-container {
    margin: 0 -2rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    min-height: 450px; /* Much taller for full images */
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(26,26,26,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-item img {
    max-width: 100%;
    max-height: 500px; /* Much larger display area */
    width: auto;
    height: auto;
    object-fit: contain; /* Shows full image - NO CROPPING */
    object-position: center;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-item img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.gallery-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(10,10,10,0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.4s ease;
    position: relative;
    min-height: 700px; /* Much taller cards for full image display */
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212,175,55,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.25);
    border-color: rgba(212,175,55,0.4);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-info {
    padding: 2rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.gallery-info h4 {
    color: var(--primary-gold);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gallery-caption {
    color: var(--secondary-bronze);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.project-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-badge.cat-mobil {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-bronze) 100%);
}

.project-badge.body-repair {
    background: linear-gradient(135deg, var(--secondary-bronze) 0%, #8B4513 100%);
}

.project-badge.custom-paint {
    background: linear-gradient(135deg, #9c27b0 0%, #7B1FA2 100%);
}

.project-badge.restorasi {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.project-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 0 0;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-item {
    font-size: 0.85rem;
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    background: rgba(212,175,55,0.1);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.3);
}

.contact {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,153,255,0.1);
    border: 1px solid rgba(0,153,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-gold);
}

.quick-contact-container {
    background: rgba(26,26,26,0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0,153,255,0.2);
}

.quick-contact-container h3 {
    margin-bottom: 2rem;
    color: var(--light-text);
    text-align: center;
}

.quick-contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(0,153,255,0.1);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,153,255,0.3);
    transform: translateY(-2px);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-bg {
    background: #25d366;
}

.phone-bg {
    background: var(--primary-gold);
}

.visit-bg {
    background: var(--secondary-bronze);
}

.option-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.option-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-contact-method {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact-method:hover {
    background: var(--secondary-bronze);
    transform: translateY(-1px);
}

.quick-tips {
    background: rgba(0,153,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0,153,255,0.2);
}

.quick-tips h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.quick-tips ul {
    color: var(--gray-text);
    padding-left: 1.2rem;
}

.quick-tips li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin: 0.5rem 0;
}

.whatsapp-link,
.direction-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover,
.direction-link:hover {
    color: var(--secondary-bronze);
}

.note {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-style: italic;
    margin-top: 0.5rem;
}

.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.map-container {
    background: rgba(26,26,26,0.5);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0,153,255,0.2);
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
}

.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.footer {
    background: var(--dark-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0,153,255,0.2);
}

.footer-content {
    text-align: center;
    color: var(--gray-text);
}

.footer-logo {
    height: 50px;
    width: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
    object-fit: contain;
}

.sidebar {
    width: 250px;
    background: var(--card-bg);
}

.sidebar-nav {
    list-style: none;
    padding: 2rem 0;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: rgba(0,153,255,0.1);
    color: var(--primary-gold);
    padding-left: 2.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.75rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }

    .heritage-trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .heritage-badge-item {
        padding: 1.5rem;
    }

    .badge-icon {
        font-size: 2.5rem;
        min-width: 50px;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .badge-description {
        font-size: 0.9rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-features {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .services-grid,
    .process-timeline,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-card {
        margin: 0 1rem;
        min-height: 600px; /* Slightly smaller on mobile */
    }

    .gallery-item {
        min-height: 350px; /* Adjusted for mobile */
    }

    .gallery-item img {
        max-height: 400px; /* Adjusted for mobile */
    }


    .gallery-info {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }

    .gallery-info h4 {
        font-size: 1.1rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .quick-contact-container {
        padding: 1.5rem;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .option-icon {
        margin-bottom: 1rem;
    }
    
    .quick-tips {
        padding: 1rem;
    }
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, transparent 100%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-bronze) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 5%;
    animation: float 20s ease-in-out infinite reverse;
}

/* WordPress Admin Bar fix */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* WordPress Gallery Styles */
.wp-block-gallery {
    margin: 0;
}

/* WordPress Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Captions */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* WordPress Required Classes */
.sticky {
    display: block;
}

.bypostauthor {
    display: block;
}

.gallery-caption {
    display: block;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Settings Sticky Button (Bottom Left) */
.settings-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: var(--dark-bg);
}

.settings-sticky:hover {
    background: var(--secondary-bronze);
    transform: scale(1.1);
    color: var(--light-text);
}

.settings-sticky svg {
    width: 20px;
    height: 20px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .settings-sticky {
        bottom: 90px;
        left: 10px;
    }
}