:root {
    --bg-black: #000000;
    --bg-dark: #111111;
    --bg-gray: #1a1a1a;
    --text-white: #ffffff;
    --text-muted: #888888;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

/* Japanese-style headings for gallery sections */
#portfolio h4,
#portfolio .display-3 {
    font-family: 'Shippori Mincho B1', serif;
    letter-spacing: 3px;
}

/* Pinturas y Murales – vertical auto-scroll slider */
.pinturas-swiper .swiper-slide {
    width: 250px !important;
    /* Fixed thin width for the "bar" look */
}

.pinturas-swiper .swiper-slide img {
    height: 600px !important;
    /* Slightly taller for more impact */
    width: 100% !important;
    object-fit: cover !important;
    /* Cover the bar area without distortion */
}

.pinturas-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.bg-darker {
    background-color: #050505;
}

/* Navbar Overrides */
.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-title {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -2px;
}

/* Swiper Gallery Overrides */
.swiper-slide {
    display: flex;
    /* Remove inline-block gaps */
}

.swiper-slide img {
    transition: transform 0.6s ease;
    display: block;
    width: 100%;
    /* Height is set inline for specific sliders */
}

.swiper-slide:hover img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
    filter: brightness(1.1);
}

.gallery-link {
    display: block;
    width: 100%;
    overflow: hidden;
    /* Contain hover zoom */
}

/* Slider Nav */
.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev,
.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.featured-swiper .swiper-pagination-bullet,
.category-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.featured-swiper .swiper-pagination-bullet-active,
.category-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}



/* Form Control Overrides */
.form-control:focus {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Icons & Lightbox */
.social-links a:hover {
    background-color: white;
    color: black !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
    color: white;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Form Feedback Styles */
#formStatus {
    padding: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

#formStatus.success {
    color: #25d366;
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

#formStatus.error {
    color: #ff4444;
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}
