/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
}



/* Root Colors */
:root {
    --blue-light: #35b2e4;  /* modrá c68 m0 y0 k0 */
    --blue-mid: #157ab6;    /* modrá c77 m29 y16 k0 */
    --blue-dark: #0062a9;   /* modrá c85 m50 y0 k0 */
    --blue-logo: #00347e;   /* logotyp modrá c95 m75 y11 k0 */
    --blue-deep: #001a66;   /* modrá c100 m100 y25 k25 */
    --black: #000000;       /* čierna c0 m0 y0 k100 */
    --white: #ffffff;
    --gray-light: #f5f5f5;  /* Svetlá sivá */
    --gray-dark: #333;      /* Tmavá sivá */
    --underglow-light: rgba(53, 178, 228, 0.4); /* Svetlý podsvit */
    --underglow-dark: rgba(255, 255, 255, 0.2); /* Tmavý podsvit */
    --hover-gradient: linear-gradient(90deg, var(--blue-light), var(--blue-dark)); /* Hover gradient */
}

/* Global Font Settings */
body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode */
body.dark-mode {
    background-color: var(--black);
    color: var(--white);
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.dark-mode .main-header {
    background-color: var(--black);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    width: 150px;
    transition: opacity 0.3s ease-in-out;
}

body.dark-mode .logo {
    content: url('peerIT-dark.png'); /* Zmena loga pre dark mode */
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
}

/* Global Font Settings */
body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Root Colors */
:root {
    --blue-light: #35b2e4;
    --blue-mid: #157ab6;
    --blue-dark: #0062a9;
    --blue-logo: #00347e;
    --blue-deep: #001a66;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #333;
    --hover-gradient: linear-gradient(90deg, var(--blue-light), var(--blue-dark));
}

/* Navbar Styling */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    width: 150px;
    transition: opacity 0.3s ease-in-out;
}

/* Align logo to center on mobile */
@media (max-width: 768px) {
    .main-header .container {
        justify-content: center;
    }
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 600;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--blue-light);
}

body.dark-mode .main-nav ul li a {
    color: var(--white);
}

body.dark-mode .main-nav ul li a:hover {
    color: var(--blue-light);
}

/* Burger Menu Button for Mobile */
.burger-menu {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--blue-dark);
}

body.dark-mode .burger-menu {
    color: var(--white);
}
/* Dropdown Menu Styling */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0; /* Odstup medzi okrajmi */
    margin: 0;
    z-index: 1000;
    min-width: 300px; /* Rozšírime menu pre dlhé texty */
    white-space: nowrap; /* Zamedzí zalomeniu textu */
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: var(--blue-dark);
    background-color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav .dropdown-menu li a:hover {
    background-color: var(--gray-light);
}
/* Dark Mode Support */
body.dark-mode .main-nav .dropdown .dropdown-menu {
    background-color: var(--black);
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

body.dark-mode .main-nav .dropdown-menu li a {
    color: var(--white);
    background-color: var(--gray-dark);
}

body.dark-mode .main-nav .dropdown-menu li a:hover {
    background-color: var(--blue-dark);
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(51, 51, 51, 0.9);
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 0;
    }

    .main-nav ul.show {
        display: flex;
    }

    .main-nav ul li a {
        padding: 15px 0;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Center logo on mobile */
    .logo {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Dark Mode Support */
body.dark-mode .main-header {
    background-color: var(--black);
}

body.dark-mode .main-nav ul {
    background-color: rgba(0, 0, 0, 0.9);
}

body.dark-mode .main-nav ul li a {
    color: var(--white);
}

/* Menu Button Styling */
.burger-menu {
    cursor: pointer;
}

.burger-menu i {
    font-size: 24px;
}

/* Burger Menu Icon and Functionality */
.burger-menu.active .fa-bars {
    display: none;
}

.burger-menu.active .fa-times {
    display: block;
}

/* Open/Close Effect */
@media (max-width: 768px) {
    .burger-menu i.fa-times {
        display: none;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid), var(--blue-dark), var(--blue-logo), var(--blue-deep));
    color: var(--white);
    overflow: hidden;
}

/* Overlay for dynamic effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2); /* Jemné stmavenie pre text čitateľnosť */
}
/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--white);
}

/* Zvýraznenie hlavnej správy */
.hero-title .highlight {
    font-size: 5rem; /* Zmenšené z 5.8rem */
    font-weight: bold;
    color: var(--blue-light);
    text-shadow: 
        0 0 40px rgba(53, 178, 228, 1), 
        0 0 80px rgba(53, 178, 228, 0.9), 
        0 0 120px rgba(53, 178, 228, 0.7), 
        0 0 150px rgba(53, 178, 228, 0.6);
    animation: glow-pulse 1.5s infinite alternate;
}

/* Pulzujúci efekt pre hlavný text */
@keyframes glow-pulse {
    0% {
        text-shadow: 
            0 0 30px rgba(53, 178, 228, 0.8), 
            0 0 60px rgba(53, 178, 228, 0.6), 
            0 0 90px rgba(53, 178, 228, 0.5);
    }
    100% {
        text-shadow: 
            0 0 60px rgba(53, 178, 228, 1), 
            0 0 120px rgba(53, 178, 228, 0.9), 
            0 0 150px rgba(53, 178, 228, 0.7);
    }
}

/* Bold a tmavomodrý tieň pre podnadpis */
.hero-title .sub-title {
    font-size: 2.4rem; /* Väčšie pre lepšiu čitateľnosť */
    font-weight: bold; /* Nastavené na bold */
    color: rgba(255, 255, 255, 0.4); /* Jemne zvýšená opacita */
    text-shadow: 
        -5px 5px 15px rgba(32, 41, 143, 0.9), /* Tmavomodrý odtieň */
        -10px 10px 30px rgba(23, 33, 102, 0.6); /* Jemnejší tmavomodrý efekt */
    position: relative;
    transition: text-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Zvýraznenie pri prechode myšou */
.hero-title .sub-title:hover {
    opacity: 0.6; /* Jemné zvýšenie viditeľnosti pri interakcii */
    text-shadow: 
        -6px 6px 20px rgba(32, 41, 143, 1), 
        -12px 12px 36px rgba(23, 33, 102, 0.8);
}


/* CTA Buttons */
.cta-buttons {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    background: var(--blue-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--blue-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Glow Animation for Highlight */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(53, 178, 228, 0.6), 0 0 20px rgba(53, 178, 228, 0.4);
    }
    100% {
        text-shadow: 0 0 20px rgba(53, 178, 228, 0.8), 0 0 30px rgba(53, 178, 228, 0.6);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-title .sub-title {
        font-size: 1.5rem;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    background-color: var(--blue-mid);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--blue-light);
    transform: translateY(-3px);
}

body.dark-mode .cta-button {
    background-color: var(--blue-light);
}

body.dark-mode .cta-button:hover {
    background-color: var(--blue-mid);
}

/* QUESTIONS SECTION */

.highlight-link {
    font-weight: bold;
    color: var(--blue-light);
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

.highlight-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--blue-light);
    transition: width 0.3s ease;
}

.highlight-link:hover {
    color: var(--blue-mid);
    transform: scale(1.05);
}

.highlight-link:hover::after {
    width: 100%;
}
.questions-section {
    padding: 60px 20px;
    background: var(--gray-light);
    text-align: left;
}

.questions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--blue-dark);
    text-align: center;
    font-weight: bold;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between each question */
    margin: 0 auto;
    max-width: 900px;
}

.question-item {
    display: flex; /* Align question number and text in a row */
    align-items: flex-start; /* Align number with the top of text */
    font-size: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.question-number {
    font-weight: bold;
    color: var(--blue-light);
    margin-right: 10px;
    font-size: 1.8rem;
    flex-shrink: 0; /* Prevent the number from resizing */
}

.highlight-link {
    font-weight: bold;
    color: var(--blue-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: var(--blue-mid);
}

/* Responsive Design */
@media (max-width: 768px) {
    .questions-section h2 {
        font-size: 2rem;
    }

    .questions-list {
        max-width: 100%;
    }

    .question-item {
        font-size: 1.2rem;
    }

    .question-number {
        font-size: 1.5rem;
    }
}

/* Dark Mode */
body.dark-mode .questions-section {
    background: var(--black);
}

body.dark-mode .questions-section h2 {
    color: var(--blue-light);
}

body.dark-mode .questions-list .question-item {
    color: var(--white);
}

body.dark-mode .highlight-link {
    color: var(--blue-light);
}

body.dark-mode .highlight-link:hover {
    color: var(--blue-mid);
}

/* KEY POINTS SECTION */
.key-points-section {
    padding: 100px 20px;
    background: var(--gray-light); /* Jemné celé pozadie */
    text-align: center;
    position: relative;
}

.key-points-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: bold;
    color: var(--blue-dark);
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.key-point {
    position: relative;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, color 0.3s ease;
}

.key-point:hover h3 {
    color: var(--blue-light);
}

.key-point:hover p {
    color: var(--blue-mid);
}

.key-point-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(53, 178, 228, 0.1); /* Jemná priehľadná modrá */
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
}

.key-point h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blue-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.key-point p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-dark);
    position: relative;
    z-index: 1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .key-points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .key-point-number {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
}

/* DARK MODE */
body.dark-mode .key-points-section {
    background-color: var(--black); /* Jemné tmavé pozadie */
}

body.dark-mode .key-point-number {
    color: rgba(53, 178, 228, 0.2);
}

body.dark-mode .key-point h3 {
    color: var(--blue-light);
}

body.dark-mode .key-point p {
    color: var(--gray-light);
}

/* ROADMAP SECTION */
.roadmap-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.roadmap-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--blue-dark);
}

.roadmap-section .roadmap-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--gray-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.roadmap-step {
    flex: 1 1 18%;
    max-width: 200px;
    text-align: center;
    position: relative;
}

.roadmap-step .icon {
    font-size: 3rem;
    color: var(--blue-light);
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.roadmap-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--blue-dark);
    transition: color 0.3s ease;
}

.roadmap-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    background: var(--blue-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--blue-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responzivita */
@media (max-width: 768px) {
    .roadmap-steps {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-step {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* DARK MODE */
body.dark-mode .roadmap-section h2 {
    color: var(--blue-light);
}

body.dark-mode .roadmap-section .roadmap-description {
    color: var(--gray-light);
}

body.dark-mode .roadmap-step .icon {
    color: var(--blue-light);
}

body.dark-mode .roadmap-step:hover .icon {
    color: var(--blue-mid);
}

body.dark-mode .roadmap-step h3 {
    color: var(--blue-light);
}

body.dark-mode .roadmap-step:hover h3 {
    color: var(--blue-mid);
}

body.dark-mode .roadmap-step p {
    color: var(--gray-light);
}

body.dark-mode .roadmap-step:hover p {
    color: var(--blue-mid);
}

body.dark-mode .cta-button {
    background: var(--blue-light);
    color: var(--black);
}

body.dark-mode .cta-button:hover {
    background: var(--blue-mid);
}



/* Footer */
footer {
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}

body.dark-mode footer {
    background-color: var(--black);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }
}

/* Dark Mode Settings */
body.dark-mode {
    background-color: var(--black);
    color: var(--white);
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3 {
    color: var(--blue-light);
}

body.dark-mode p {
    color: var(--gray-light);
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}



/* Section for responsiveness adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add more padding and adjust font sizes for mobile */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}

/* Extra lines for layout expansion and detailed CSS development */

.main-header {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* End of CSS file with more lines for detailed control and flexibility */
/* Ensure smooth transition between light and dark modes, including all UI elements */
/* Styling for the home icon in navbar */
.main-nav ul li a i {
    font-size: 1.2rem; /* Nastavenie veľkosti ikony */
    color: var(--blue-dark); /* Farba ikony */
    transition: color 0.3s ease;
}

.main-nav ul li a i:hover {
    color: var(--blue-light); /* Zmena farby ikony pri hover */
}

body.dark-mode .main-nav ul li a i {
    color: var(--white); /* Farba ikony v tmavom režime */
}

body.dark-mode .main-nav ul li a i:hover {
    color: var(--blue-light); /* Zmena farby ikony v tmavom režime pri hover */
}
/* Tlačidlo pre zmenu témy */
.theme-toggle {
    background-color: var(--blue-light);
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    position: fixed;
    bottom: 20px; /* Vždy zarovnané dole */
    right: 20px; /* Vždy zarovnané vpravo */
    z-index: 1000;
}

body.dark-mode .theme-toggle {
    background-color: var(--blue-mid);
}

.theme-toggle i {
    color: var(--black); /* Farba ikony */
}

body.dark-mode .theme-toggle i {
    color: var(--white); /* Farba ikony v tmavom režime */
}

.theme-toggle:hover {
    background-color: var(--blue-dark);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}


/* Adjusting navbar to fit within the container on mobile */
@media (max-width: 768px) {
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px; /* Add horizontal padding inside the container */
        position: relative;
    }

    .logo {
        position: relative;
        left: 50%;
        transform: translateX(-50%); /* Center the logo */
        max-width: 120px; /* Adjust size if needed */
    }

    .burger-menu {
        position: absolute;
        right: 20px;
        top: 20px; /* Align burger menu within the container */
    }

    .main-header {
        padding: 30px 0; /* Adjust top and bottom padding for more space */
    }

    .hero {
        margin-top: 80px; /* Add margin to push down the content from the navbar */
        padding-top: 60px; /* Further padding to ensure content doesn't collide */
    }
}

/* Hide the menu by default on mobile */
@media (max-width: 768px) {
    .main-nav ul {
        display: none; /* Hidden initially on mobile */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Dark background for mobile menu */
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        z-index: 1000;
    }

    /* When 'show' class is added, display the menu */
    .main-nav ul.show {
        display: flex; /* Show the menu when class is toggled */
    }

    /* Burger Menu button styling */
    .burger-menu {
        display: block; /* Show the burger icon only on mobile */
        cursor: pointer;
        font-size: 24px;
        background: none;
        border: none;
        color: var(--blue-dark); /* Adjust color as needed */
        z-index: 1001; /* Keep the button above everything */
    }
}

/* On larger screens (PC view), always display the menu */
@media (min-width: 769px) {
    .main-nav ul {
        display: flex; /* Ensure the menu is always visible on larger screens */
        flex-direction: row; /* Horizontal layout for desktop */
        position: static; /* Static positioning for desktop */
        background-color: transparent;
        justify-content: flex-end;
    }

    .burger-menu {
        display: none; /* Hide burger icon on desktop */
    }
}

