/* ==========================================================
   RESPONSIVE.CSS – FINAL, STABLE VERSION
   Desktop: image left / text right
   Mobile & tablets: image top / text below
   ========================================================== */


/* ----------------------------------------------------------
   ≤ 1200px
---------------------------------------------------------- */
@media (max-width: 1200px) {

    .date-countdown {
        width: 100%;
    }

}


/* ----------------------------------------------------------
   ≤ 992px  (TABLETS + PHONES)
---------------------------------------------------------- */
@media (max-width: 992px) {

    /* MAIN WRAPPER */
    .main-area {
        height: auto;
        min-height: 100vh;
    }

    /* LEFT SECTION – IMAGE ON TOP (HARD RESET) */
    .left-section {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        height: 40vh;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* RIGHT SECTION – CONTENT BELOW IMAGE */
    .right-section {
        float: none;
        width: 100%;
        height: auto;

        padding: 40px 30px 20px;
    }

    .right-section .main-content {
        padding: 0;
    }

    /* FOOTER ICONS – NORMAL FLOW */
    .right-section .footer-icons {
        position: static;
        margin-top: 40px;
        text-align: center;
    }

    .right-section .footer-icons li {
        margin: 0 6px;
    }

    .right-section .footer-icons > li > a > i {
        width: 32px;
        height: 32px;
        line-height: 30px;
    }
}


/* ----------------------------------------------------------
   SHORT LANDSCAPE SCREENS (1024×600, etc.)
---------------------------------------------------------- */
@media (max-width: 1024px) and (max-height: 700px) {

    .left-section {
        height: 35vh;
    }

}


/* ----------------------------------------------------------
   ≤ 767px  (PHONES)
---------------------------------------------------------- */
@media (max-width: 767px) {

    body {
        font-size: 14px;
    }

    p {
        font-size: 1.1em;
        line-height: 1.5;
    }

    h1 {
        font-size: 2.6em;
    }

    h2.title {
        font-size: 2.4em;
    }

    h3 {
        font-size: 1.6em;
    }

}


/* ----------------------------------------------------------
   ≤ 479px  (SMALL PHONES)
---------------------------------------------------------- */
@media (max-width: 479px) {

    body {
        font-size: 13px;
    }

    .left-section {
        height: 30vh;
    }

    .right-section {
        padding: 30px 20px 15px;
    }

    .right-section .footer-icons {
        margin-top: 30px;
    }

}


/* ----------------------------------------------------------
   ≤ 359px
---------------------------------------------------------- */
@media (max-width: 359px) {

    h2.title {
        font-size: 2em;
    }

}


/* ----------------------------------------------------------
   ≤ 290px  (EXTREME CASES)
---------------------------------------------------------- */
@media (max-width: 290px) {

    body {
        font-size: 12px;
    }

}