/*
Theme Name: BootScore Child - Window Treatments Texas
Theme URI: https://bootscore.me
Description: Custom child theme for Window Treatments Texas based on BootScore
Author: Mario
Author URI: https://bootscore.me
Template: bootscore
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: bootscore-child
*/

/* ========================================
   Custom Fonts - Anisette Std Petite
   ======================================== */

@font-face {
    font-family: 'Anisette Std';
    src: url('fonts/fonnts.com-Anisette_Std_Petite_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anisette Std';
    src: url('fonts/fonnts.com-Anisette_Std_Petite.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anisette Std';
    src: url('fonts/fonnts.com-Anisette_Std_Petite_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anisette Std';
    src: url('fonts/fonnts.com-Anisette_Std_Petite_ExBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   Custom Styles for Window Treatments Texas
   ======================================== */

:root {
    --primary-gray: #9b9b8e;
    --dark-teal: #425257;
    --light-bg: #e8e8e0;
    --dark-bg: #615e59;
    --darker-gray: #7e7e7e;
    --font-family-base: 'Anisette Std', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Font Application */
body {
    font-family: var(--font-family-base);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-base);
}

.navbar,
.nav,
.btn,
button {
    font-family: var(--font-family-base);
}

/* Header Styles */
.navbar-brand {
    color: #ffffff !important;
}

.navbar-brand span {
    color: #ffffff;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #d0d0d0 !important;
}

/* Top Bar Styles */
.top-info-bar {
    background-color: var(--dark-teal);
    color: white;
    padding: 15px 0;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.top-info-bar .separator {
    padding: 0 15px;
}

.top-info-bar a {
    color: white;
    text-decoration: underline;
}

.top-info-bar a:hover {
    opacity: 0.8;
}

/* Hero Section with Images */
.hero-process-section {
    background-color: #a0a094;
}

.hero-images-section {
    padding: 35px 0 0;
}

/* Padding en móviles para imágenes más pequeñas */
@media (max-width: 767px) {
    .hero-images-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.hero-image-wrapper {
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    /*border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);*/
}

/* Cuadradas en móviles (full width) */
@media (max-width: 767px) {
    .hero-image-wrapper {
        aspect-ratio: 1 / 1;
    }
    
    .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Steps Section */
.process-section {
    padding: 50px 0 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 25px;
        text-align: left;
    }
}

.process-number {
    font-family: 'Century Gothic', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    color: var(--darker-gray);
    line-height: 0.85;
    margin-bottom: 0;
    margin-right: 0;
    flex-shrink: 0;
    padding-right: 0;
}

.process-content {
    flex: 1;
}

.process-step h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    color: #fff;
    letter-spacing: 0.3px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.process-step .highlight {
    font-weight: 700;
    color: #333;
}

/* Products Section */
.products-section {
    background-color: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
}

.product-categories {
    margin-bottom: 0px;
}

.product-category {
    display: inline-block;
    margin: 10px 15px;
}

.product-category a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: var(--light-bg);
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.product-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
.custom-footer {
    background-color: var(--dark-teal);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.custom-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero-images-section {
        padding: 60px 0 0;
    }
    
    .hero-image-wrapper {
        margin-bottom: 0;
    }
    
    .process-section {
        padding: 50px 0 40px;
    }
    
    .process-number {
        font-size: 8rem;
        line-height: 0.85;
    }
    
    .product-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .product-gallery img {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .product-gallery {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .products-section h2 {
        font-size: 3rem;
    }
}

/* Header Customization */
.navbar {
    background-color: var(--primary-gray) !important;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #333 !important;
}

/* ========================================
   About Us Page Styles
   ======================================== */

.about-hero-section {
    background-color: #a0a094;
    padding: 80px 0 60px;
}

.about-title-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-title-wrapper h1 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .about-title-wrapper h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
}

.about-ceo-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #d0d0c0;
}

.about-image-wrapper {
    text-align: center;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-teal);
    margin: 0;
    font-style: italic;
}

.about-story-section {
    background-color: #f5f5f0;
    padding: 60px 0;
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.about-today {
    margin: 40px 0 30px;
}

.about-today h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-teal);
    margin-bottom: 20px;
}

.about-today ul {
    list-style: none;
    padding-left: 0;
}

.about-today ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.about-today ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 1.3rem;
}

.about-closing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--dark-teal);
}

.about-closing p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-teal);
    text-align: center;
    font-style: italic;
}

/* ========================================
   Instagram Gallery Marquee
   ======================================== */

.instagram-gallery-section {
    background-color: var(--primary-gray);
    padding: 2rem 0;
    overflow: hidden;
}

.instagram-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.instagram-item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    margin: 0 0.35rem;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .instagram-item {
        width: 150px;
        height: 150px;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-33.333%);
        }
    }
}

/* ========================================
   Contact Us Page Styles
   ======================================== */

.contact-hero-section {
    background-color: #a0a094;
    padding: 80px 0 60px;
}

.contact-title-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-title-wrapper h1 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .contact-title-wrapper h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
    
    .contact-subtitle {
        font-size: 1.4rem;
    }
}

.contact-info-section {
    background-color: #f5f5f0;
    padding: 60px 0;
}

.contact-card {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.contact-icon {
    font-size: 3rem;
    color: var(--dark-teal);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-teal);
}

.contact-company-name {
    font-weight: 600;
    color: var(--dark-teal);
    font-size: 1.3rem !important;
}

.contact-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

.contact-cta {
    background-color: var(--dark-teal);
    border-radius: 12px;
    padding: 60px 40px;
    margin-top: 60px;
}

.contact-cta h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 576px) {
    .contact-buttons {
        flex-direction: row;
        gap: 20px;
    }
}

.contact-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-buttons .btn-primary {
    background-color: #fff;
    color: var(--dark-teal);
    border: none;
}

.contact-buttons .btn-success {
    background-color: #25D366;
    border: none;
}
