/* Melodica News - Global Styles */

:root {
    --primary-color: #635BFF;
    --primary-dark: #4D45CC;
    --primary-darker: #3D35AA;
    --primary-light: #7A73FF;
    --primary-lighter: #8B85FF;
    --secondary-color: #FF6B9D;
    --accent-color: #7A73FF;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --border-color: #ddd;
    --plus-badge: #FF6B9D;
    --premium-badge: #635BFF;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.header-top {
    background-color: var(--primary-color);
    padding: 0.65rem 1rem 0.25rem 1rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-right {
    display: flex;
    gap: 1rem;
}

.header-top-right a {
    color: white;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--secondary-color), #FF5585);
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.header-top-right a:hover {
    background: linear-gradient(135deg, #FF5585, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.logo-container {
    text-align: center;
    padding: 0 0 1.6rem 0;
    background-color: var(--primary-color);
}

.logo {
    font-family: 'Google Sans Flex', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

.tagline {
    font-family: 'Google Sans Flex', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.6rem;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: white;
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background-color: transparent;
}

nav ul li:last-child a {
    border-right: none;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(0, 0, 0, 0.15);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-bottom: 3px double var(--primary-light);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.article-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.article-section {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.article-date {
    color: #999;
}

.article-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #000;
}

.article-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plus-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--plus-badge);
    color: white;
    padding: 0.25rem 0.75rem;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--premium-badge);
    color: white;
    padding: 0.25rem 0.75rem;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Piano Paywall Gradient */
.template-shown {
    position: relative;
}

.template-shown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 200px;
    background-image: linear-gradient(to top, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0) 100%);
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: white;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-article-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}

.read-more:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: 0 6px 15px rgba(99, 91, 255, 0.4);
    transform: translateY(-2px);
}

/* Article Page */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main {
    min-width: 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-author {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.article-author strong {
    color: var(--primary-color);
}

.article-featured-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    display: block;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.ad-banner {
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ad-banner:hover {
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.2);
    border-color: var(--primary-color);
}

.ad-banner img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.ad-banner h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ad-banner p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.ad-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #FF5585);
    color: white;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.ad-cta:hover {
    background: linear-gradient(135deg, #FF5585, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.ad-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Subscription Page */
.subscription-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-darker));
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.subscription-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.subscription-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.3);
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.2);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.features li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.subscribe-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: 0 6px 18px rgba(99, 91, 255, 0.4);
    transform: scale(1.05) translateY(-2px);
}

/* My Account Page */
.account-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-only {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Recommendations Section */
#recommendations {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#recommendations::before {
    content: 'Read Next';
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

#recommendations:empty::before {
    content: 'Read Next';
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.4rem;
    }

    .logo-container {
        position: relative;
    }

    /* Hide date and buttons on mobile */
    .header-top {
        display: none;
    }

    /* Adjust logo container padding on mobile */
    .logo-container {
        padding: 1rem 0;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Mobile navigation */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
        transition: left 0.3s ease;
        z-index: 1000;
        border-right: 2px solid var(--primary-light);
        border-top: none;
        border-bottom: none;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 5rem 0 2rem 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-right: none;
    }

    .mobile-only {
        display: block;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-only a {
        font-weight: 600;
        background: rgba(255, 107, 157, 0.1);
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        margin-top: 2rem;
    }

    #recommendations {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    #recommendations::before {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* ========================================
   SWISS MINIMALIST HEADER DESIGN (with Purple Theme)
   ======================================== */

.header-swiss {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Top Bar - Clean and Simple */
.header-top-swiss {
    background: var(--primary-color);
    padding: 1rem 2rem 0.5rem 2rem;
    font-size: 0.7rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease;
}

.current-date-swiss {
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.header-top-swiss .header-top-right {
    display: none; /* Hide in top bar */
}

/* Logo Container - Asymmetric Layout */
.logo-container-swiss {
    background: var(--primary-color);
    padding: 1.25rem 2rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.logo-main {
    flex: 1;
}

/* Logo - Ultra Bold Typography */
.logo-swiss {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 4.5rem;
    color: #ffffff;
    letter-spacing: 8px;
    font-weight: 900;
    line-height: 0.85;
    text-decoration: none;
    display: block;
    transition: font-size 0.3s ease, letter-spacing 0.3s ease, line-height 0.3s ease;
    position: relative;
}

.logo-swiss::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    transition: width 0.3s ease;
}

.logo-swiss:hover::after {
    width: 120px;
}

/* Tagline - Vertical Typewriter Style */
.tagline-swiss {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    padding-left: 1.5rem;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

.tagline-swiss span {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    writing-mode: horizontal-tb;
    text-align: right;
}

.tagline-swiss span:last-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    letter-spacing: 3px;
}

/* Buttons aligned with tagline */
.logo-container-swiss .header-top-right {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-container-swiss .header-top-right a {
    color: white;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--secondary-color), #FF5585);
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.logo-container-swiss .header-top-right a:hover {
    background: linear-gradient(135deg, #FF5585, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

/* Navigation - Purple Bar with White Text */
.nav-swiss {
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-swiss ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-swiss ul li {
    margin: 0;
    flex: 1;
    text-align: center;
}

.nav-swiss ul li a {
    display: block;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: transparent;
}

.nav-swiss ul li:last-child a {
    border-right: none;
}

.nav-swiss ul li a:hover,
.nav-swiss ul li a.active {
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

/* ========================================
   MINIMIZED HEADER STATE (All Screen Sizes)
   ======================================== */

/* Desktop minimized header */
.header-swiss.header-minimized .header-top-swiss {
    padding: 0.5rem 2rem 0.25rem 2rem;
    font-size: 0.6rem;
}

.header-swiss.header-minimized .logo-container-swiss {
    padding: 0.5rem 2rem 0.75rem 2rem;
}

.header-swiss.header-minimized .logo-swiss {
    font-size: 2.5rem;
    letter-spacing: 4px;
    line-height: 1;
}

.header-swiss.header-minimized .logo-swiss::after {
    height: 4px;
    width: 40px;
    bottom: -4px;
}

.header-swiss.header-minimized .tagline-swiss {
    gap: 0.4rem;
    padding-left: 1rem;
    margin-left: 1.5rem;
}

.header-swiss.header-minimized .tagline-swiss span {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
}

.header-swiss.header-minimized .tagline-swiss span:last-child {
    font-size: 0.5rem;
}

.header-swiss.header-minimized .logo-container-swiss .header-top-right a {
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
}

.header-swiss.header-minimized .nav-swiss ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* Mobile minimized header overrides - hide tagline completely on mobile */
    .header-swiss.header-minimized .header-top-swiss {
        padding: 0.5rem 1rem 0.25rem 1rem;
    }

    .header-swiss.header-minimized .logo-container-swiss {
        padding: 0.75rem 1rem;
    }

    .header-swiss.header-minimized .logo-swiss {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .header-swiss.header-minimized .logo-swiss::after {
        height: 3px;
        width: 30px;
    }

    .header-swiss.header-minimized .tagline-swiss {
        display: none; /* Hide tagline completely on mobile when minimized */
    }

    .header-swiss.header-minimized .nav-swiss ul li a {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .logo-container-swiss {
        flex-direction: column;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .logo-swiss {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .logo-swiss::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .tagline-swiss {
        margin-top: 1.5rem;
        margin-left: 0;
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.5);
        padding-left: 0;
        padding-top: 1rem;
        align-items: center;
    }

    .tagline-swiss span {
        text-align: center;
    }

    .logo-container-swiss .header-top-right {
        justify-content: center;
    }

    .nav-swiss ul {
        flex-direction: column;
    }

    .nav-swiss ul li a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hide mobile-only menu items in Swiss design */
.nav-swiss .mobile-only {
    display: none;
}
