/* ===================================
   Valeria Portfolio - Custom Styles
   Design: Minimalist Cinema
   Colors: Black, White, Red (#FF0000)
   =================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: #FFFFFF !important;
}

.navbar .nav-link {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 30px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInUp 1.2s ease;
}

.showreel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showreel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections */
.categories-section,
.portfolio-section,
.about-section,
.services-section,
.contact-section {
    padding: 100px 0;
}

.section-title,
.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after,
.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FF0000;
}

/* Category Cards */
.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: rgba(255, 0, 0, 0.7);
}

.category-overlay h3 {
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 3px;
}

/* Video Cards */
.video-card {
    position: relative;
    overflow: hidden;
    background: #000000;
    margin-bottom: 30px;
}

.video-thumbnail-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail-link:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-thumbnail-link:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    background: none;
    border: none;
    color: #FF0000;
    font-size: 4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 20px;
    outline: none;
}

.play-btn:hover {
    transform: scale(1.2);
    color: #FFFFFF;
}

.play-btn:focus {
    outline: none;
    box-shadow: none;
}

.video-info {
    padding: 20px;
    background: #FFFFFF;
}

.video-info h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.category-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #000000;
    color: #FFFFFF;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Category Filter */
.category-filter {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 30px;
    margin: 5px 10px;
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FF0000;
    border-color: #FF0000;
    color: #FFFFFF;
}

/* Service Cards */
.service-card {
    padding: 40px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: #FF0000;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-description {
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0000;
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF0000;
}

/* CTA Section */
.cta-section {
    background: #000000;
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.btn-cta {
    padding: 15px 50px;
    background: #FF0000;
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid #000000;
    padding: 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: #FF0000;
    box-shadow: none;
}

.contact-form button[type="submit"] {
    background: #FF0000;
    border: none;
    padding: 15px 50px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background: #000000;
}

/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.social-links a {
    color: #FFFFFF;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FF0000;
}

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

/* Video Modal */
.modal-content {
    background: #FFFFFF;
    border: 3px solid #000000;
}

.modal-header {
    border-bottom: 2px solid #000000;
}

.modal-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.modal-body {
    padding: 0;
}

.btn-close:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }

    .navbar .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }
}
