/* Import fonts already enqueued via PHP */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.dphs-hero-wrapper {
    position: relative;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.dphs-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.dphs-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: zoomIn 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.dphs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dphs-content {
    text-align: center;
    max-width: 90%;
    padding: 2rem;
    color: white;
}

.dphs-tagline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dphs-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.dphs-btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dphs-btn.primary {
    background: #4facfe;
    color: white;
}

.dphs-btn.secondary {
    background: #00f2fe;
    color: #000;
}

.dphs-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.dphs-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .dphs-tagline {
        font-size: 2rem;
    }

    .dphs-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-direction: row;
        justify-content: center;
    }

    .dphs-cta-buttons {
        flex-direction: column;
    }
}
