/* 
 * Responsive typography styles for the website
 * Handles text sizing and spacing for better readability on mobile devices
 */

/* Base responsive typography styles */
html {
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling in landscape on iOS */
}

/* Medium screens / tablets (up to 992px) */
@media screen and (max-width: 992px) {

    /* Adjust header text */
    header.large p {
        font-size: 48px;
        line-height: 60px;
    }

    /* Adjust navigation font size */
    #navigation li a {
        font-size: 16px;
    }

    /* Adjust miss list text */
    #profile-list li strong {
        font-size: 13px;
        line-height: 15px;
    }

    /* Adjust winners table text */
    #winners-list table td {
        font-size: 14px;
        line-height: 18px;
    }

    /* Adjust footer text */
    footer p {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Small screens / mobile (up to 768px) */
@media screen and (max-width: 768px) {

    /* Adjust body text */
    body {
        font-size: 14px;
        line-height: 20px;
    }

    /* Adjust header text */
    header.large p {
        font-size: 42px;
        line-height: 52px;
    }

    /* Adjust navigation font size */
    #navigation li a {
        font-size: 18px;
        line-height: 24px;
    }

    /* Adjust miss list text */
    #profile-list li strong {
        font-size: 14px;
        line-height: 16px;
    }

    /* Adjust miss list vote count */
    #profile-list li em {
        font-size: 12px;
        line-height: 12px;
        padding: 4px 8px 2px;
    }

    /* Adjust headings */
    h1 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    /* Adjust message text */
    .message {
        font-size: 14px;
        line-height: 20px;
    }

    /* Adjust winners text */
    .winners-youtube h1 {
        font-size: 20px;
        line-height: 26px;
    }
}

/* Extra small screens (up to 480px) */
@media screen and (max-width: 480px) {

    /* Further reduce header text */
    header.large p {
        font-size: 36px;
        line-height: 44px;
    }

    /* Adjust logo text */
    #logo span {
        font-size: 24px;
        line-height: 28px;
    }

    /* Adjust navigation font size */
    #navigation li a {
        font-size: 16px;
        line-height: 22px;
    }

    /* Adjust miss list text for smaller screens */
    #profile-list li strong {
        font-size: 13px;
        line-height: 15px;
    }

    /* Adjust miss list vote count */
    #profile-list li em {
        font-size: 11px;
        padding: 3px 6px 1px;
    }

    /* Adjust headings for very small screens */
    h1 {
        font-size: 22px;
        line-height: 28px;
    }

    h2 {
        font-size: 18px;
        line-height: 24px;
    }

    h3 {
        font-size: 16px;
        line-height: 22px;
    }

    /* Adjust footer text */
    footer p {
        font-size: 11px;
        line-height: 15px;
    }
}