/* Base styles */
.home-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 300px;
    padding-right: 300px;
    padding-top: 20px;
    height: 100vh;
}

.home-big-card {
    width: 60%;
    flex-direction: column;
    height: 650px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    color: #333;
}

.home-container h1 {
    font-size: 62px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: bold;
}

.home-container p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
    margin-top: 20px;
    font-family: 'Poppins';
}

.home-btn-container {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
}

.home-button {
    flex: 1;
    padding: 10px 20px;
    font-size: 1rem;
    color: #333;
    background-color: #ff6541ff;
    border: 2px solid #333;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    box-shadow: none;
}

.home-button:hover {
    background-color: #ff6541ff;
    color: #333;
    border: 2px solid #fffefe;
}

/* <!-- Styles for Popup --> */
    
        /* Popup overlay styling */
        .popup {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.648);
            justify-content: center;
            align-items: center;
        }

        /* Popup content styling */
        .popup-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            width: 300px;
            margin: auto;
            position: relative;
        }

        .popup-content h2 {

            font-family: 'Poppins';
        }

        /* Close button styling */
        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }

        /* Email input and submit button styling */
        #emailInput {
            width: 80%;
            padding: 10px;
            margin-top: 20px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        .popup-button {
            background-color: #ff6541ff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            margin-top: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        .popup-button:hover {
            background-color: #ff6538;
        }


/* Responsive styles for very large displays (Ultra-Wide screens) */
@media (min-width: 1600px) {
    .home-container {
        padding-left: 400px;
        padding-right: 400px;
    }

    .home-big-card {
        width: 50%;
        height: 700px;
    }

    .home-container h1 {
        font-size: 82px;
    }

    .home-container p {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .home-btn-container {
        flex-direction: row;
        gap: 20px;
    }

    .home-button {
        font-size: 1.2rem;
    }
}

/* Responsive styles for larger displays (Desktop and larger tablets) */
@media (max-width: 1200px) {
    .home-container {
        padding-left: 100px;
        padding-right: 100px;
    }

    .home-big-card {
        width: 70%;
        height: auto;
    }

    .home-container h1 {
        font-size: 72px;
    }

    .home-container p {
        font-size: 20px;
    }

    .home-btn-container {
        flex-direction: row;
    }
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
    .home-container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .home-big-card {
        width: 80%;
        height: auto;
        padding: 15px;
    }

    .home-container h1 {
        font-size: 48px;
    }

    .home-container p {
        font-size: 18px;
    }

    .home-btn-container {
        flex-direction: column;
        gap: 10px;
    }

    .home-button {
        width: 100%;
    }
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
    .home-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-big-card {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .home-container h1 {
        font-size: 36px;
    }

    .home-container p {
        font-size: 16px;
        text-align: center;
    }

    .home-btn-container {
        flex-direction: column;
        gap: 10px;
    }

    .home-button {
        width: 100%;
    }
}
