/**
 * LopiPay Main Styles
 * Responzívne štýly pre celú aplikáciu
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1d1d1d;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn-outline, .btn-primary, .btn-large, .cta-button {
    border-radius: 0 !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    border: none;
}

.btn-outline {
    background: white;
    color: #666;
    padding: 8px 32px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    font-size: 14px;
    min-width: 120px;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.btn-primary {
    background: #3498db;
    color: white;
    padding: 8px 32px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    min-width: 120px;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-large {
    padding: 12px 48px;
    font-size: 16px;
    min-width: 180px;
}

.btn-outline.disabled,
.btn-primary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* === HEADER === */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    height: 80px;
    transition: all 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px; /* Väčšia šírka pre viac menu položiek */
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    min-width: 150px; /* Zabezpečí stabilnú šírku */
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #3498db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px; /* Menší gap pre viac položiek */
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center; /* Centrovanie menu */
}

.nav-menu a {
    color: #1d1d1d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px; /* Trochu menší font */
    transition: color 0.2s ease;
    padding: 10px 8px;
    white-space: nowrap; /* Zabráni zalomeniu textu */
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 250px; /* Stabilná šírka pre CTA tlačidlá */
    justify-content: flex-end;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1d1d1d;
    margin: 3px 0;
    transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
    padding: 140px 0 100px;
    background: #f8f9fa;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1d1d1d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero .highlight {
    font-weight: 600;
    color: #3498db;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* === PHONE MOCKUP === */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    width: 320px;
    height: 640px;
    background: #000000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    padding: 40px 25px 25px 25px;
    position: relative;
    overflow: hidden;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.phone-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1d;
}

.phone-avatar {
    width: 36px;
    height: 36px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.payment-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.amount-display {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    color: #3498db;
    padding: 20px 0;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.quick-amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.quick-amount {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    background: #fafafa;
    text-align: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-amount:hover {
    border-color: #3498db;
    color: #3498db;
    background: white;
}

.quick-amount.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.recipient-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.recipient-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-weight: 600;
    font-size: 16px;
}

.recipient-info h4 {
    font-size: 16px;
    color: #1d1d1d;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.recipient-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.note-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    color: #1d1d1d;
    margin-bottom: 25px;
}

.send-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
}

.send-button:hover {
    transform: translateY(-1px);
}

/* === SECTIONS === */
.section-header {
    max-width: 600px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* === FEATURES === */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 30px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* === DEMO SECTION === */
.demo-section {
    margin-top: 80px;
    text-align: center;
}

/* === PRICING === */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: white;
    border-color: #3498db;
    transform: scale(1.05);
}

.popular-badge {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1d1d1d;
}

.price {
    font-size: 3rem;
    font-weight: 300;
    color: #3498db;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.pricing-card li {
    margin-bottom: 12px;
    font-size: 14px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
}

/* === USE CASES === */
.use-cases {
    padding: 100px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.use-case {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.use-case p {
    color: #666;
    margin-bottom: 20px;
}

.use-case ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.use-case li {
    color: #3498db;
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.use-case li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* === SECURITY === */
.security {
    padding: 100px 0;
    background: #f8f9fa;
}

.security-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1d1d1d;
    font-weight: 300;
}

.security-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.security-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    font-size: 32px;
    min-width: 50px;
}

.security-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1d1d1d;
}

.security-feature p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.security-cta {
    margin-top: 30px;
}

.security-visual {
    display: flex;
    justify-content: center;
}

.security-badge {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.badge-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.security-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1d1d1d;
}

.security-badge p {
    color: #666;
    margin-bottom: 30px;
}

.certifications {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.certifications span {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: #1d1d1d;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.testimonial-author h4 {
    margin: 0;
    color: #1d1d1d;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-style: normal;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* === STATS === */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 8px;
}

.stat p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    background: #ffffff;
    color: #1d1d1d;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid #bbdefb;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1d1d1d;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.cta-icon {
    font-size: 16px;
    color: #3498db;
}

/* === FOOTER === */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0b4a8c;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #0b4a8c;
}

.footer-app-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.footer-app-links a {
    display: inline-block;
}

.app-badge {
    max-width: 150px;
    height: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.app-badge:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #0b4a8c;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FLASH MESSAGES === */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.flash-message {
    background: white;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    animation: slideIn 0.3s ease;
}

.flash-message.flash-success {
    border-left-color: #27ae60;
}

.flash-message.flash-error {
    border-left-color: #e74c3c;
}

.flash-message.flash-warning {
    border-left-color: #f39c12;
}

.flash-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === SCROLL TO TOP === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .nav {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        padding: 10px 5px;
    }
    
    .nav-cta {
        min-width: 200px;
    }
    
    .security-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone {
        width: 280px;
        height: 560px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flash-messages {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
        min-width: 120px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 10px 24px;
        font-size: 14px;
        min-width: 140px;
    }

    .phone {
        width: 240px;
        height: 480px;
    }

    .phone-screen {
        padding: 30px 20px 20px 20px;
    }

    .amount-display {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
.logo-text {
    height: 215px;
    width: auto;
    object-fit: contain;
}

/* Responzívne úpravy pre logo */
@media (max-width: 768px) {
    .logo-text {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        height: 24px;
    }
}
