﻿/* Hero Section */
.hero__wrapper {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero__title {
    font-size: 48px;
    font-weight: bold;
}

.hero__desc {
    font-size: 20px;
    margin: 10px 0 20px;
}

/* ✅ Tablet View (up to 991px width) */
@media (max-width: 991px) {
    .hero__wrapper {
        height: 400px; /* Medium for tablet */
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__desc {
        font-size: 16px;
    }
}

/* ✅ Mobile View (up to 576px width) */
@media (max-width: 576px) {
    .hero__wrapper {
        height: 350px; /* Medium height for mobile */
    }

    .hero__title {
        font-size: 24px; /* Slightly bigger for better readability */
    }

    .hero__desc {
        font-size: 15px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}
