@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #002d5c;
    --accent-color: #00a8e8;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f4f8fb;
    --bg-dark: var(--primary-color);
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 168, 232, 0.15);
    --border-radius: 1rem;
    --border-radius-lg: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in {
    transform: translateY(0);
}

.slide-up {
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

/* Header & Nav */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.text-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.text-logo:hover .logo-title {
    color: var(--accent-color);
}

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.dropdown {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1rem;
    min-width: 280px;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: buttonShineSweep 8s infinite;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

@keyframes buttonShineSweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-book {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-book:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Background Utility Classes */
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { 
    background-color: var(--bg-dark); 
    color: var(--white);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p {
    color: var(--white);
}

/* Hero Section */
.hero-section-full {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hintergrund.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-label {
    display: inline-block;
    background-color: rgba(0, 168, 232, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero-content .hero-desc {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Trust Bar Marquee */
.trust-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    width: 100%;
}

.trust-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    width: max-content;
    padding: 0 2rem;
    animation: marquee-scroll 25s linear infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 0 0 auto;
    white-space: nowrap;
}

.trust-item i {
    color: var(--white);
    font-size: 1.2rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

/* Generic Section Styles */
.section {
    padding: 6rem 2rem;
    width: 100%;
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Counters Section */
.counters-section {
    padding: 4rem 2rem;
}

.counter-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.counter-number {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.counter-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* Bento Grid (Leistungen) */
.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bento-large {
    grid-column: span 2;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Split Image Section */
.split-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content {
    flex: 1;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Reviews Slider */
.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: block;
}

.reviews-slider {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.reviews-slider.active {
    scroll-behavior: auto;
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: rgba(0, 168, 232, 0.1);
    color: var(--accent-color);
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(33.333% - 1.333rem);
    width: calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem);
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-quote-icon {
    font-size: 3rem;
    color: rgba(0, 168, 232, 0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px; /* Arbitrary large height to allow expansion */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* CTA Banner */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-banner {
    background: linear-gradient(45deg, var(--primary-color), #004287, var(--accent-color), var(--primary-color));
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Jobs Section */
.jobs-panel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    gap: 4rem;
}

.jobs-content {
    flex: 2;
}

.jobs-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jobs-icon i {
    font-size: 10rem;
    color: rgba(0, 168, 232, 0.05);
}

/* Contact Section */
.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.contact-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-list span, .contact-list a {
    color: var(--text-light);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a.contact-block-link {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.contact-list a.contact-block-link:hover {
    transform: translateX(5px);
}

.contact-list a.contact-block-link:hover i,
.contact-list a.contact-block-link:hover span,
.contact-list a.contact-block-link:hover strong {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.opening-hours-modern .time-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.opening-hours-modern .time-row:last-child {
    border-bottom: none;
}

.opening-hours-modern .day {
    font-weight: 500;
    color: var(--text-dark);
}

.opening-hours-modern .time {
    color: var(--text-light);
}

.opening-hours-modern .closed {
    opacity: 0.6;
}

.contact-cta {
    margin-top: 3rem;
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1.5rem;
}

.contact-cta p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a.contact-link {
    display: inline;
    margin-bottom: 0;
}

.footer-col a:hover, .footer-col a.contact-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

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

/* Burger Menu Button Styles */
.burger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1005;
}

.burger-menu-btn span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.no-scroll {
    overflow: hidden;
}

.mobile-only-btn {
    display: none !important;
}

.page-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Global safety for mobile overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .burger-menu-btn {
        display: flex;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-container > .btn-book {
        display: none;
    }
    
    .mobile-only-btn {
        display: block !important;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .split-section, .contact-split, .jobs-panel { flex-direction: column; }
    
    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 6rem 1.5rem 2rem 1.5rem;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        width: 100%;
    }
    
    .main-nav > ul > li {
        width: 100%;
    }
    
    .main-nav a {
        font-size: 1.15rem;
        display: block;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        width: 100%;
    }
    
    .main-nav li.mobile-only-btn a {
        border-bottom: none;
    }
    
    /* Dropdown on mobile */
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background: transparent;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .dropdown-menu li a {
        font-size: 1rem;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .review-card { 
        flex: 0 0 calc(50% - 1rem); 
        width: calc(50% - 1rem); 
        max-width: calc(50% - 1rem); 
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.3rem; }
    .hero-content .hero-desc { font-size: 1.1rem; margin-bottom: 2rem; }
    .split-image img { max-height: 350px; }
    
    /* Center Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col div {
        justify-content: center !important;
    }
    .social-links-large {
        justify-content: center !important;
    }
    
}

@media (max-width: 600px) {
    .review-card { 
        flex: 0 0 100%; 
        width: 100%; 
        max-width: 100%; 
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.58rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .hero-buttons {
        width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}
