/* Font Loading Optimization */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset and Base Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #888888;
    --news-bg: #1a1a1a;
    --dates-bg: #000000;
    --projects-bg: #1a1a1a;
    --discography-bg: #000000;
    --press-bg: #1a1a1a;
    --bio-bg: #000000;
    --font-weight: 200;
    --letter-spacing: 1.5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: var(--font-weight);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: var(--letter-spacing);
    /* Prevent font flashing and improve loading */
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Ensure font weight is consistent */
    font-synthesis: none;
    font-variant-ligatures: none;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* Ensure content doesn't get hidden behind fixed navbar */
main {
    position: relative;
    z-index: 1;
}

/* Navigation Styles */
.navbar {
    position: sticky!important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s, backdrop-filter 0.3s;
    /* Ensure navbar stays sticky on all devices */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brand {
    display: none; /* Hide brand in navigation */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    animation: fadeInFromBlack 3s ease-out both;
    z-index: 1001;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.2rem!important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1002;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
    transition: all 0.3s ease;
    will-change: transform;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-sizing: border-box;
    visibility: visible;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Enhanced hamburger visibility during scroll */
.hamburger.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Smooth transition for hamburger when scrolling */
.hamburger {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Better mobile support */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure hero content isn't hidden behind navbar */
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    text-align: right;
    margin-right: 1%;
    z-index: 10;
    position: relative;
    transform: translateY(-65%);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight);
    letter-spacing: 4px;
    margin: 0;
    line-height: 0.9;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Prevent font weight flash */
    font-display: swap;
    font-synthesis: none;
    font-variant-ligatures: none;
    /* Ensure consistent font weight */
    font-variation-settings: 'wght' var(--font-weight);
}

.hero-title .name-part {
    display: block;
    margin-bottom: 0.2em;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: var(--font-weight);
    letter-spacing: 3px;
    opacity: 0.8;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
    /* Ensure sections aren't hidden behind sticky navbar */
    scroll-margin-top: 80px;
}

#news {
    background-color: var(--news-bg);
}

#dates {
    background-color: var(--dates-bg);
}

#projects {
    background-color: var(--projects-bg);
}

#discography {
    background-color: var(--discography-bg);
}

#press {
    background-color: var(--press-bg);
}

#bio {
    background-color: var(--bio-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-subtitle {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

.section-subtitle a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease;
}

.section-subtitle a:hover {
    opacity: 0.7;
}

/* Separator Images */
.separator {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.separator img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* News Section */
.news-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    margin-bottom: 2rem;
    text-align: left;
}

.news-item h3 {
    font-size: 1.2rem;
    font-weight: 200;
}

.news-link {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 0.3rem 0.8rem;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 200;
    letter-spacing: 0.3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.news-link:hover {
    background: #fff;
    color: #000;
}

/* Dates Section */
.dates-content {
    max-width: 800px;
    margin: 0 auto;
}

.dates-content h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 200;
}

.dates-content h3 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #ccc;
}

.year-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 200;
}

.month-group {
    margin-bottom: 2rem;
}

.month-group h5 {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: -10px;
    color: #ccc;
}

.month-group ul {
    list-style: none;
}

.month-group li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.project-item {
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    /* Ensure container doesn't overflow */
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-item h3 {
    font-size: 1.2rem;
        color: #ea830d;
    font-weight: var(--font-weight);
    word-wrap: break-word;
}

.project-item p {
    color: #e6d9ca;
    font-size: 0.9rem;
    word-wrap: break-word;
}

/* Discography Grid */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    text-align: left;
    display: block;
    width: 100%;
    max-width: 100%;
}

.album-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.album-card:hover img {
    filter: saturate(1.2);
}

.album-card h3 {
    font-size: 0.9rem;
    font-weight: var(--font-weight);
    line-height: 1.4;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    hyphens: auto;
}

/* Press Section */
.press-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    margin-bottom: 2rem;
    text-align: left;
}

.press-item h3 {
    font-size: 1.3rem;
    font-weight: 200;
}

.press-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: #ccc;
}

/* Bio & Contact Section */
.bio-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: #fff;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ccc;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    z-index: 10000;
    max-width: 400px;
    transform: translateX(150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 0.5px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.cookie-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    flex: 1;
}

.cookie-btn.accept {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-btn.accept:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInFromBlack {
    from {
        opacity: 0;
        background-color: rgba(0, 0, 0, 1);
        color: transparent;
    }
    to {
        opacity: 1;
        background-color: transparent;
        color: inherit;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
    border: 2px solid #000;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

::-webkit-scrollbar-corner {
    background: #000;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #333 #000;
}

/* Responsive Design */
@media (max-width: 882px) {
    .hero-content {
        margin-right: 5%;
        transform: translateY(-20%);
    }

    .hero {
        height: 55vh;
    }
    
    .hero-image {
        object-fit: contain;
    }
    
    .hero-image img {
    width: 100%;
    height: auto;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0))!important;
    display: block;
}

    .nav-container {
        padding: 1rem;
        justify-content: space-between;
    }
    
    .hamburger {
        display: flex !important;
        /* Hamburger is now always sticky/fixed from the main rule above */
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 1002 !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.98) !important; /* Fekete háttér a menü megnyitásakor */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%); /* Alapértelmezetten rejtett */
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s, backdrop-filter 0.4s, visibility 0.4s, opacity 0.4s;
        z-index: 1000 !important;
        padding: 2rem;
        overflow-y: auto;
        /* Biztosítja hogy csak aktív állapotban látszik */
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        background: rgba(0,0,0,0.98) !important; /* Fekete háttér aktív állapotban */
        visibility: visible;
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 300px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(-20px);
    }
    
    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        opacity: 0;
    }
    
    .separator {
        height: 40vh;
        min-height: 250px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discography-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.5rem;
    }
    
    .album-card img {
        height: 140px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    
    .album-card:hover {
        transform: none;
    }
    
    .scroll-to-top:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-right: 3%;
        transform: translateY(-15%);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 15vw, 2.5rem);
        letter-spacing: 1px;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .projects-grid {
        gap: 1.5rem;
    }
    
    .discography-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .album-card img {
        height: 120px;
    }
    
    .album-card h3 {
        font-size: 0.8rem;
    }
    
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Footer */
.footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

.footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ccc;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.3); /* Lighter background on mobile initially */
    }
    
    .hamburger {
        display: flex;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 1001;
        /* Initially hidden, only shows when active */
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: relative;
        background: transparent;
        height: auto;
        width: auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0;
        text-align: left;
        border-bottom: none;
        width: auto;
    }
}

/* Responsive Design */
