/* Estilos personalizados para Carrión Lavandería */

/* Colores base */
:root {
    --color-primary: #ADD8E6; /* Light Blue */
    --color-secondary: #F0F8FF; /* Alice Blue (soft white) */
    --color-accent: #F5F5DC; /* Beige */
    --color-text: #333;
    --color-light-text: #666;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--color-primary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.site-branding .site-title a {
    color: white;
    text-decoration: none;
}

.site-branding .site-description {
    color: rgba(255,255,255,0.8);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.main-navigation li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-navigation li a:hover {
    background-color: rgba(0,0,0,0.1);
}

/* Responsive Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: var(--color-primary);
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 100;
    }

    .main-navigation ul.toggled {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
}

.footer-section ul li a:hover {
    color: white;
}

.google-map iframe {
    border-radius: 8px;
}

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

.footer-bottom .footer-nav {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

.footer-bottom .footer-nav li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 10px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* General Content Styling */
.site-content {
    padding: 40px 0;
}

.entry-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.entry-content p {
    margin-bottom: 15px;
}

/* Home Page Styles */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 80px 0;
    color: white;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007cba;
    color: white;
}

.btn-primary:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--color-secondary);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: var(--color-text);
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #87CEEB 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Page Template */
.page-hero {
    background-color: var(--color-primary);
    /*padding: 60px 0;*/
    color: white;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
}

.page-content {
    padding: 60px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

