/* Generic Promo Section Styling */
.promo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 80rem;
    padding-top: 2rem;
    margin: 0 auto;
}

/* Container */
.promo-container {
    display: flex;
    width: 90%;
    height: auto;
    max-width: 104rem;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(122, 132, 120, 0.2);
    border: 0.21px solid #2ecc71;
    padding: 3rem;
}

/* Text Content */
.promo-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
}

.promo-text h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #2ecc71;
    margin: 1.5rem 0;
}

.promo-text p {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.promo-text ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.promo-text ul li {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Button */
.promo-button {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    font-size: 1.75rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.promo-button:hover {
    background-color: #1dd84e;
}

/* Image Container */
.promo-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .promo-container {
        padding: 2rem;
    }

    .promo-text h1 {
        font-size: 3rem;
    }

    .promo-text p {
        font-size: 1.5rem;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 810px) {
    .promo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-text {
        width: 100%;
        padding: 2rem 2rem;
        align-items: center;
    }

    .promo-image {
        width: 80%;
        margin-top: 2rem;
    }
}

/* Small Screens (Phones) */
@media (max-width: 576px) {
    .promo-text h1 {
        font-size: 2.5rem;
    }

    .promo-text p {
        font-size: 1.25rem;
    }

    .promo-button {
        font-size: 1rem;
    }
}


/* Full-Screen Video Section */
.full-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4rem 0; /* Adds space around the video */
}

/* Centered Video Container */
.full-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 80rem;
}

/* Beautiful Video Border & Shadow */
.full-video-container video {
    width: 100%;
    max-width: 800px; /* Larger video display */
    min-width: 400px; /* Prevents it from getting too small */
    border-radius: 15px; /* Smooth rounded corners */
    border: 4px solid #2ecc71; /* Green border to match theme */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* Soft floating shadow */
    padding: 5px; /* Adds clean spacing around the video */
    background: white; /* Keeps padding clean */
}

/* Responsive Adjustments */
@media (max-width: 810px) {
    .full-video-container video {
        min-width: 300px; /* Adjusts for tablets */
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .full-video-container video {
        min-width: 250px; /* Adjusts for mobile */
        max-width: 95%;
    }
}
