/* Tablet Specific Styles for Header and Footer */

/* Tablet Header Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header-section {
        padding: 8px 0;
        background: rgba(13, 110, 253, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .header-wrapper {
        padding: 12px 0;
    }

    .brand-logo .logo img,
    .mobile-logo img {
        max-height: 45px;
        width: auto;
    }

    .menu-area {
        gap: 15px;
    }

    .menu > li > a {
        padding: 12px 18px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .menu > li > a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

    .login, .signup {
        padding: 10px 16px !important;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .login:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .header-bar {
        width: 28px;
        height: 22px;
    }

    .header-bar span {
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .ellepsis-bar {
        font-size: 22px;
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .ellepsis-bar:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
}

/* Tablet Footer Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-section {
        background-size: cover;
        background-position: center;
        padding: 30px 0 0 0;
    }

    .footer-bottom {
        padding: 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-bottom .row {
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-logo {
        display: none;
    }

    .footer-bottom-content {
        padding: 0;
        text-align: center;
        flex: 1;
    }

    .footer-bottom-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.85);
    }

    .footer-bottom-content a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-bottom-content a:hover {
        color: #ffd700;
    }

    .match-social-list {
        justify-content: center !important;
        gap: 12px;
        margin: 15px 0 0 0;
        padding: 0;
        list-style: none;
    }

    .match-social-list li {
        margin: 0;
    }

    .match-social-list li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .match-social-list li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .match-social-list li img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .footer-links-section {
        text-align: right;
        margin-top: 0;
    }

    .footer-links-section h6 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-list li {
        margin-bottom: 6px;
    }

    .footer-links-list li a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        text-decoration: none;
        transition: color 0.3s ease;
        display: inline-block;
    }

    .footer-links-list li a:hover {
        color: #ffd700;
    }
}

/* Landscape orientation specific adjustments */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .header-section {
        padding: 6px 0;
    }

    .header-wrapper {
        padding: 8px 0;
    }

    .brand-logo .logo img,
    .mobile-logo img {
        max-height: 40px;
    }

    .menu > li > a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .login, .signup {
        padding: 8px 14px !important;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-logo img {
        max-height: 45px;
    }

    .match-social-list li img {
        width: 28px;
        height: 28px;
    }
}

/* Portrait orientation specific adjustments */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .header-section {
        padding: 10px 0;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        display: none;
    }

    .footer-bottom-content {
        margin: 15px 0;
    }

    .footer-links-section {
        text-align: center;
        margin-top: 15px;
    }
}