body, h1, h2, h3, h4, h5, h6, .navbar, .btn, .form-label, .form-control, .footer {
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #212529;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

.navbar {
    background-color: #007bff;
}


.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.btn-custom {
    background-color: #28a745;
    color: white;
}

.btn-custom:hover {
    background-color: #218838;
}

/* Contact Form Custom Styles */
#contactForm {
    font-family: 'Montserrat', Arial, sans-serif;
}

#contactForm .form-label {
    font-weight: 600;
    color: #4b6a4b;
    letter-spacing: 0.5px;
}

#contactForm .form-control {
    border-radius: 0.75rem;
    border: 1.5px solid #c2a45b;
    background: #faf7e6;
    transition: border-color 0.2s;
    font-size: 1.05rem;
}

#contactForm .form-control:focus {
    border-color: #4b6a4b;
    box-shadow: 0 0 0 0.15rem #c2a45b55;
    background: #fff;
}

#contactForm textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

#contactForm .btn-dark {
    background: #181818;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px #0001;
    transition: background 0.2s, transform 0.2s;
}

#contactForm .btn-dark:hover, 
#contactForm .btn-dark:focus {
    background: #4b6a4b;
    transform: translateY(-2px) scale(1.03);
}

#contactForm .invalid-feedback {
    font-size: 0.95rem;
    color: #d9534f;
}

.bg-opacity-90 {
    background-color: rgba(255,255,255,0.90) !important;
    backdrop-filter: blur(2px);
}

/* Hero Section Responsive */
#inicio {
    height: 80vh;
    min-height: 400px;
    position: relative;
}

#inicio video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 80vh;
}

#inicio .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    max-width: 700px;
}

@media (max-width: 991px) {
    #inicio {
        height: 60vh;
        min-height: 300px;
    }
    #inicio .hero-text h1 {
        font-size: 2rem !important;
    }
    #inicio .hero-text p {
        font-size: 1rem !important;
    }
}

@media (max-width: 575px) {
    #inicio {
        height: 40vh;
        min-height: 200px;
    }
    #inicio .hero-text {
        padding: 0.5rem;
        max-width: 95vw;
    }
    #inicio .hero-text h1 {
        font-size: 1.2rem !important;
    }
    #inicio .hero-text p {
        font-size: 0.95rem !important;
    }
}