/* Main style css for the website including site-header and site-footer with nav menus */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: 'Comic Sans MS', Arial, sans-serif;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    overflow-x: hidden;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

main {
    max-width: 1200px;
    margin-top: 9rem;/* To prevent main content from being hidden underneath the fixed header */
    margin: 2rem auto;
    padding: 0 2rem;
    min-height: 60vh;
    flex-grow: 1 !important;
    margin-top: 6rem; /* To prevent main content from being hidden underneath the fixed header */
}

#disclosureLink { font-size: 0.95rem; padding: 0.5rem; margin: 0.5rem; color: white; }

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.main-effect.active { opacity: 0.1; }

/* Site-Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /*position: sticky;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 5px solid #ff6b6b;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5656;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.mobile-menu {
    display: none;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link:hover {
    background: #ff6b6b;
    color: white;
    -webkit-text-fill-color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.nav-link.active {
    background: #4ecdc4;
    color: white;
    -webkit-text-fill-color: white;
    transform: scale(1.05);
}

.page-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.page-content.active {
    display: block;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.seperate-page-content {
    display: block !important;
    animation: fadeIn 0.5s ease-in;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

#nativeAd.content-card {
    display: block;
    padding: 1rem;
    background: #FFE066;
    overflow: hidden;
    width: 100%;
    align-content: center !important;
}

.content-card:hover {
    /*transform: translateY(-5px) rotate(1deg);*/
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #ff6b6b;
}

.content-card h1 {
    font-size: 3rem;
}
.content-card h2 {
    font-size: 2.5rem;
}
.content-card h3 {
    font-size: 1.3rem;
}

.content-emoji {/* what's inside emoji */
    font-size: 3rem;
}

.funny-button-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.funny-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    /*position: relative;*/
    overflow: hidden;
    margin: 0 auto;
    width: 240px;
}

.funny-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.funny-button:active {
    transform: scale(0.95);
}

.funny-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.funny-button:hover::before {
    width: 200%;
    height: 200%;
}

.emoji-rain {
    position: fixed;
    top: -50px;
    animation: fall 3s linear infinite;
    font-size: 2rem;
    z-index: 500;
}

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

/* Footer Styles */
footer {
    background: rgba(51, 51, 51, 0.9);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 5px solid #4ecdc4;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.footer-link.active {
    /*background: #4ecdc4;*/
    color: #ff6b6b;
    -webkit-text-fill-color: #ff6b6b;
    transform: scale(1.05);
}

.joke-display {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* CSS Animations */
.wiggle {
    animation: wiggle 2.0s ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.shake {
    animation: shake 2.0s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

.app-section {
    display: none;
}

.app-section.active {
    display: block;
}

.quiz-app-section {
    display: none;
}

.quiz-app-section.active {
    display: block;
}

/* add the three classes: toggle-arrow and two quiz-app-section properties below
** to attachment-style-tailwind.css seperately; it doesn't use style.css **/
.toggle-arrow-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 10px;
}

.toggle-arrow {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-arrow-section .toggle-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #ff6b6b;
    border-top: 0;
    box-shadow: 0px -5px 10px rgba(218, 26, 26, 0.8), /* Bottom highlight */
                0px 5px 15px rgba(255, 255, 255, 01); /* Top shadow */
}

.toggle-arrow-section.active .toggle-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #ff6b6b;
    border-bottom: 0;
    box-shadow: 0px 5px 10px rgba(218, 26, 26, 0.8), /* Bottom shadow */
                0px -5px 15px rgba(255, 255, 255, 1); /* Top highlight */
}

/* Mobile Responsiveness - Add to style.css */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 0.4rem 1.3rem;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    main {
        margin: 1.5rem auto;
        padding: 0 1.5rem;
    }

    .content-card {
        padding: 1rem;
        border-radius: 15px;
    }

    .content-card h1 {
        font-size: 2.25rem;
    }

    .content-card h2 {
        font-size: 1.75rem;
    }

    .funny-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 40px;
    }

    .joke-display {
        font-size: 1rem;
        padding: 0.8rem;
        border-radius: 12px;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .emoji-rain {
        font-size: 1.75rem;
    }
}

/* Mobile styles (480px and below) */
@media screen and (max-width: 480px) {
    #disclosureLink { font-size: 0.86rem; padding: 0.3rem; margin: 0.1rem; }

    .header-content {
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: 1.75rem;
    }

    .nav-menu {
        gap: 1rem;
        padding: 0.75rem;
        flex-direction: column;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.35rem 0.7rem;
    }

    main {
        margin: 1rem auto;
        padding: 0 1rem;
        min-height: 50vh;
        margin-top: 3.1rem; /* To prevent main content from being hidden underneath the fixed header */
    }

    .content-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .content-card h1 {
        /*font-size: 2rem;*/
        line-height: 1.2;
    }

    .content-card h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .content-card h3 {
        font-size: 1.2rem;
    }

    .content-emoji {/* what's inside emoji */
        font-size: 2.5rem;
    }

    .funny-button-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .funny-button {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 35px;
        margin: 0 auto;
        width: 170px;
    }
    .funny-button.long {
        width: 200px;
    }
    .funny-button.long.thin {
        padding: 0.85rem;
    }

    .joke-display {
        font-size: 0.95rem;
        padding: 0.75rem;
        border-radius: 10px;
        line-height: 1.4;
    }

    footer {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .emoji-rain {
        font-size: 1.5rem;
    }

    .mobile-menu {
        font-size: 1.25rem;
        padding: 0.4rem;
    }
}

/* Small mobile styles (360px and below) */
@media screen and (max-width: 360px) {
    .header-content {
        padding: 0.4rem 0.75rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    main {
        margin: 0.75rem auto;
        padding: 0 0.75rem;
        margin-top: 3.1rem; /* To prevent main content from being hidden underneath the fixed header */
    }

    .content-card {
        padding: 1rem;
        margin: 0.5rem auto;
        border-radius: 10px;
    }

    .content-card h1 {
        /*font-size: 1.8rem;*/
        line-height: 1.1;
    }

    .content-card h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .funny-button {
        /*padding: 0.6rem 1rem;
        font-size: 0.9rem;*/
        border-radius: 30px;
        margin: 0.3rem;
    }

    .joke-display {
        font-size: 0.9rem;
        padding: 0.6rem;
        border-radius: 8px;
        line-height: 1.3;
    }

    footer {
        padding: 1rem;
        margin-top: 2rem;
    }

    .footer-links {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .emoji-rain {
        font-size: 1.25rem;
    }

    .mobile-menu {
        font-size: 1.1rem;
        padding: 0.3rem;
    }
}

/* Extra small mobile styles (320px and below) */
@media screen and (max-width: 320px) {
    .header-content {
        padding: 0.3rem 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }

    main {
        padding: 0 0.5rem;
    }

    .content-card {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .content-card h1 {
        font-size: 1.3rem;
    }

    .content-card h2 {
        font-size: 1.1rem;
    }

    .funny-button {
        /*padding: 0.5rem 0.8rem;
        font-size: 0.85rem;*/
        border-radius: 25px;
        margin: 0.25rem;
    }

    .joke-display {
        font-size: 0.85rem;
        padding: 0.5rem;
        border-radius: 6px;
    }

    footer {
        padding: 0.75rem;
    }

    .footer-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .emoji-rain {
        font-size: 1rem;
    }
}

/* Surface Pro 7 Portrait (912px x 1368px) */
@media screen and (min-width: 910px) and (min-height: 1360px) and (orientation: portrait) {
    .header-content { height: 6vh; }

    .nav-menu {
        gap: 5px;
    }
    .nav-link {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 0.8rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.8rem;
    }
}

/* iPad Mini portrait (768px x 1024px) & Surface Pro 7 portrait */
@media screen and (max-width: 770px) and (min-height: 1024px) and (orientation: portrait) {
    .header-content {
        padding: 1rem 2rem;
        height: 8vh;
    }

    .logo {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 0.8rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.8rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }

    main {
        margin: 2rem auto;
        padding: 0 2rem;
        margin-top: 5.2rem; /* To prevent main content from being hidden underneath the fixed header */
    }

    .content-card {
        padding: 1.75rem;
        border-radius: 20px;
        margin: 1.5rem auto;
    }

    .content-card h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .content-card h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .funny-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.2rem;
        border-radius: 50px;
        margin: 0.6rem;
    }

    .joke-display {
        font-size: 1.2rem;
        padding: 1.2rem;
        border-radius: 15px;
    }

    .emoji-rain {
        font-size: 2.2rem;
    }

    footer {
        padding: 2.5rem;
    }

    .footer-links {
        gap: 2.5rem;
        font-size: 1.1rem;
    }
}

/* iPad Mini Landscape (1024px x 768px) */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .header-content {
        padding: 0.3rem 1.6rem;
    }

    .logo {
        font-size: 1.7rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    main {
        margin: 1.5rem auto;
        padding: 0 2rem;
        min-height: 45vh;
        margin-top: 2.7rem; /* To prevent main content from being hidden underneath the fixed header */
    }

    .content-card {
        padding: 1.75rem;
        border-radius: 18px;
    }

    .content-card h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .content-card h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .funny-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 45px;
        margin: 0.5rem;
    }

    .joke-display {
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 14px;
    }

    .emoji-rain {
        font-size: 2rem;
    }

    footer {
        padding: 2rem;
        margin-top: 3rem;
    }

    .footer-links {
        gap: 2rem;
        font-size: 1rem;
    }
}

/* iPad Air Portrait (820px x 1180px) */
@media screen and (min-width: 820px) and (max-width: 834px) and (min-height: 1180px) and (orientation: portrait) {
    .header-content {
        padding: 1.2rem 2.5rem;
        height: 7vh;
    }

    .logo {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 5px;
    }

    .nav-menu.active {
        display: flex;
        padding: 1rem;
    }

    .mobile-menu {
        display: block;
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 10px;
        cursor: pointer;
        font-size: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.7rem 1.4rem;
        border-radius: 30px;
    }

    main {
        margin: 2.5rem auto;
        padding: 0 2.5rem;
        max-width: 1000px;
        margin-top: 5.6rem; /* To prevent main content from being hidden underneath the fixed header */
    }

    .content-card {
        padding: 3rem;
        border-radius: 25px;
        margin: 2rem auto;
    }

    .content-card h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .content-card h2 {
        font-size: 2.8rem;
        line-height: 1.3;
    }

    .funny-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.3rem;
        border-radius: 55px;
        margin: 0.7rem;
    }

    .joke-display {
        font-size: 1.3rem;
        padding: 1.4rem;
        border-radius: 18px;
        line-height: 1.4;
    }

    .emoji-rain {
        font-size: 2.5rem;
    }

    footer {
        padding: 3rem;
        margin-top: 4rem;
    }

    .footer-links {
        gap: 3rem;
        font-size: 1.2rem;
    }

    /* Enhanced hover effects for iPad Air's larger screen */
    .content-card:hover {
        transform: translateY(-8px) rotate(1.5deg);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .funny-button:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    }
}

/* Asus Zen Book Portrait */
@media screen and (min-width: 850px) and (min-height: 1200px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .logo {
        font-size: 2.2rem;
    }
}

/* iPad Pro Portrait (1024px x 1366px) */
@media screen and (min-width: 1024px) and (max-width: 1034px) and (max-height: 1376px) and (orientation: portrait) {
    main {
        margin-top: 7rem; /* To prevent main content from being hidden underneath the fixed header */
        margin-bottom: -2rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        /*flex-direction: column;*/
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
        padding: 1.5rem;
    }

    .mobile-menu {
        display: block;
    }

    .nav-link {
        font-size: 1.4rem;
    }
}

/* Surface Duo fold */
@media screen and (min-width: 540px) and (max-width: 768px) and (orientation: portrait) {
    .header-content {
        height: 9vh;
    }

    .mobile-menu {
        font-size: 1rem;
    }

    .nav-menu {
        font-size: 1.1rem;
        flex-direction: column;
    }
}

/* Surface Duo dual */
@media screen and (min-width: 540px) and (min-height: 1100px) and (orientation: portrait) {
    .header-content {
        height: 6vh;
    }

    .mobile-menu {
        font-size: 1rem;
    }

    .nav-menu {
        font-size: 1.1rem;
        flex-direction: column;
    }
}

/* Galaxy Z Fold 5 */
@media screen and (min-width: 680px) and (max-width: 720px) and (orientation: portrait) {
    .header-content {
        height: 7vh;
    }

    .mobile-menu {
        font-size: 1rem;
    }

    .nav-menu {
        font-size: 1.1rem;
        flex-direction: column;
    }
}

/* iPad Air landscape */
@media screen and (min-width: 1170px) and (min-height: 810px) and (max-height: 830px) and (orientation: landscape) {
    .header-content {
        height: 9vh;
    }
}

/* Surface Duo Landscape fold & dual */
@media screen and (min-width: 720px) and (min-height: 540px) and (max-height: 915px) and (orientation: landscape) {
    .header-content {
        /*height: 12vh;*/
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px;
    }
}

/* Surface Pro7 Landscape */
@media screen and (min-width: 1360px) and (min-height: 540px) and (orientation: landscape) {
    .header-content {
        height: 9vh;
    }
}


/* iPad Mini landscape */
@media screen and (min-width: 1014px) and (max-width: 1034px) and (orientation: landscape) {
    .header-content {
        height: 8vh;
        padding: 5px 3rem;
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-link {
        font-size: 1rem;
    }
}

/* Galaxy Z Fold 5 */
@media screen and (min-width: 820px) and (min-height: 680px) and (max-height: 700px) and (orientation: landscape) {
    .header-content {
        height: 9vh;
    }

    .nav-menu {
        font-size: 1.1rem;
        gap: 0.7rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px;
    }
}
