/* Meoflix Website Styles */

/* Variables */
:root {
    --white: #fdfdfd;
    --black: #010101;
    --dark-gray: #363636;
    --medium-gray: #696969;
    --light-gray: #b0b0b0;
    --primary-color: #e50914;
    --secondary-color: #0071eb;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* tamaño Logo */
.logo {
    width: 35px; /* Ajusta este valor al tamaño deseado */
    height: auto; /* Mantener la proporción del aspecto */
/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.btn {
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Language Switcher */
.language-switcher .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-indicator {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.language-switcher .dropdown-item.active {
    background-color: var(--secondary-color);
    color: white;
}

.language-switcher .dropdown-item:hover {
    background-color: rgba(0, 113, 235, 0.1);
}

/* Carousel Styles */
.carousel-section {
    margin-top: 76px;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.carousel-caption {
    bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Product Showcase Styles */
.product-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.product-details-btn {
    width: 100%;
    border-radius: 5px;
}

/* Product Modal Styles */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--dark-gray);
    color: var(--white);
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
}

.features-list, .specs-list {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.features-list li, .specs-list li {
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: var(--light-gray);
}

footer a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 500px;
    }
    
    .carousel-caption {
        bottom: 60px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 40px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}