/* YASI PORA 2025 - CUSTOM STYLES */
/* Colores: Rojo (#DC2626) y Negro (#000000) */

:root {
    --primary-red: #DC2626;
    --primary-black: #000000;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --gradient-red: linear-gradient(135deg, #DC2626, #B91C1C);
    --gradient-black: linear-gradient(135deg, #000000, #1F2937);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: var(--gradient-black) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--white) !important;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: var(--white);
}

.brand-year {
    color: var(--primary-red);
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-black);
    color: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.title-main {
    color: var(--white);
    display: block;
}

.title-year {
    color: var(--primary-red);
    display: block;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-red);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-placeholder i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Services Section */
.services-section {
    background: var(--white);
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Form Section */
.form-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.form-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: var(--gradient-red);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.form-header h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
}

.google-form-container {
    padding: 2rem;
    background: var(--white);
}

.google-form-iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-footer {
    background: var(--light-gray);
    padding: 2rem;
    border-top: 1px solid #E5E7EB;
}

.form-info {
    padding: 1rem;
}

.form-info i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.form-info h5 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-info p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 5rem 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.contact-info {
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-info h5 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--gradient-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand h4 {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.footer-brand p {
    color: var(--light-gray);
}

.footer-social h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.footer-divider {
    border-color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--light-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-year {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Logo responsive */
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
    
    .hero-logo {
        max-height: 150px;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-year {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-box,
    .service-card {
        margin-bottom: 2rem;
    }
    
    /* Logo responsive para móviles pequeños */
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .hero-logo {
        max-height: 120px;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 150px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}
