/* Global Styling */
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

/* Fullscreen container for image effect */
.zoom-container {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Ensures it covers the full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ken Burns effect for background image */
.ken-burns-slide {
    background: url('images/tarmac-driveways.jpg') no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: zoomInEffect 20s ease-in-out infinite;
    will-change: transform;
}

/* Zoom animation */
@keyframes zoomInEffect {
    0%, 100% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Text Overlay */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
}

/* Text Styling */
.text-overlay h1 {
    font-size: 3.5vw; /* Scales better on all screens */
    margin-bottom: 10px;
}

.text-overlay h2 {
    font-size: 2.5vw;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .text-overlay h1 {
        font-size: 5vw;
    }

    .text-overlay h2 {
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    .text-overlay {
        width: 100%;
        padding: 0 20px;
    }

    .text-overlay h1 {
        font-size: 6vw;
    }

    .text-overlay h2 {
        font-size: 5vw;
    }
}
