/* Video Hero Styles for index2.html */

.hero-video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: -89px; /* Offset header height (approx) */
    padding-top: 89px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.hero-video-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-video-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-video-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-video-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-video-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px; /* Modern pill shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-video-primary {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-video-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-video-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
}

.btn-video-outline:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Trust badges in video hero */
.hero-video-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    opacity: 0.8;
}

.trust-badge-video {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .hero-video-title {
        font-size: 2.5rem;
    }
    .hero-video-subtitle {
        font-size: 1.1rem;
    }
    .hero-video-section {
         /* Adjust for mobile navbar if needed */
    }
}

/* Logo Styles */
.logo-wrapper {
    width: 100%;
    max-width: 276px; /* Adjust size to fit header */
    display: flex;
    align-items: center;
}
.logo-wrapper img { 
    width: 100%; 
    height: auto; 
    object-fit: contain;
}
