/* =============================================
   SPRECHKRAFT - Logopädische Praxis
   Minimalistisches Design mit Linien
   Akzentfarbe: Zart Rosa
   ============================================= */

:root {
    --primary-color: #6d1b3b;
    --primary-light: #8a2a4d;
    --primary-dark: #4d1229;
    --accent-color: #2a9d8f;
    --accent-light: #3db5a6;
    --accent-dark: #1f7a6e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #666666;
    --bg-light: #f5f3f0;
    --bg-white: #fcfbfa;
    --line-color: #e8e8e8;
    --line-accent: var(--accent-color);
    --font-primary: "source-sans-3", sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Hide navbar on index page when at top (mobile) */
@media (max-width: 767px) {
    body:not(.subpage) .navbar {
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
    }
    
    body:not(.subpage) .navbar.scrolled {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.navbar.scrolled {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.navbar.scrolled .navbar-brand {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Logo always visible on subpages */
.subpage .navbar-brand {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    margin-left: 2rem;
    padding: 0.5rem 0 !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--line-color);
    padding: 0.5rem 0.75rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 100px;
    right: 0;
    width: 40%;
    height: calc(100% - 100px);
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Mobile Hero Image */
.hero-image-mobile {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.hero-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: bounce 2s infinite;
    margin-top: 2rem;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #ffffff 70%, rgba(255, 255, 255, 0) 100%);
    padding-right: 3rem;
}

.hero-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
}

.hero-logo {
    margin-bottom: 3rem;
    transition: opacity 0.5s ease, transform 0.4s ease;
}

.hero-logo img {
    height: 180px;
    width: auto;
}

.hero-logo.fade-out {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-title {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 500px;
    color: var(--text-light);
    line-height: 1.9;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.decoration-line {
    position: absolute;
    background-color: var(--line-color);
}

.line-1 {
    top: 20%;
    right: 10%;
    width: 1px;
    height: 200px;
}

.line-2 {
    top: 40%;
    right: 20%;
    width: 150px;
    height: 1px;
}

.line-3 {
    bottom: 25%;
    right: 15%;
    width: 1px;
    height: 150px;
    background-color: var(--accent-light);
    opacity: 0.4;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* =============================================
   SECTIONS
   ============================================= */
.section-padding {
    padding: 8rem 0;
}

.section-line {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Intro Section */
.intro-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 2;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--line-color);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-line {
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* =============================================
   QUOTE SECTION
   ============================================= */
.quote-section {
    background-color: var(--bg-white);
}

.quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.quote-decoration i {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 1.5rem;
    opacity: 0.7;
}

.quote-line-left,
.quote-line-right {
    width: 100px;
    height: 1px;
    background-color: var(--line-color);
}

.quote-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background-color: var(--bg-light);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-header {
    padding: 12rem 0 6rem;
    background-color: var(--bg-white);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--accent-color);
    z-index: 2;
}

/* Decorative Header Images */
.page-header-decorated {
    overflow: hidden;
}

.header-deco {
    position: absolute;
    height: 85%;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.header-deco-left {
    left: 8%;
    top: 65%;
}

.header-deco-right {
    right: 8%;
    height: 75%;
    top: 65%;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.about-content {
    padding: 6rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
}

.about-image {
    position: relative;
    max-width: 60%;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    object-fit: cover;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    opacity: 0.5;
    z-index: -1;
}

/* Qualifications */
.qualifications {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.qualification-year {
    min-width: 100px;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.qualification-content h4 {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.qualification-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-detail {
    padding: 4rem 0;
    border-bottom: 1px solid var(--line-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background-color: var(--accent-color);
}

.service-image img {
    max-width: 70%;
    height: auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -60px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info {
    padding: 3rem;
    background-color: var(--bg-light);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-control {
    border: none;
    border-bottom: 1px solid var(--line-color);
    border-radius: 0;
    padding: 1rem 0;
    font-size: 0.95rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: transparent;
}

.form-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-check-label a {
    color: var(--text-dark);
}

/* Map Section */
.map-section {
    height: 400px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-line {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin-top: 1.5rem;
}

.footer h5 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
}

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-image-container {
        position: relative;
        width: 100%;
        height: 50vh;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        object-position: center center;
    }
    
    .hero-image-fade {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }
    
    .hero-content {
        background: transparent;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
    }
    
    .hero-logo img {
        height: 120px;
    }
    
    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .nav-link {
        margin-left: 0;
        padding: 0.75rem 0 !important;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navbar logo on subpages always visible on tablet/mobile */
    .subpage .navbar-brand {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .container {
        order: 2;
    }
    
    .hero-section .row {
        min-height: auto !important;
    }
    
    .hero-image-container {
        height: 40vh;
    }
    
    .hero-image-mobile {
        position: relative;
        width: 100%;
        height: auto;
        max-height: 50vh;
        z-index: 0;
        overflow: hidden;
        order: 1;
    }
    
    .hero-image-mobile img {
        opacity: 1;
        object-position: center top;
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: cover;
    }
    
    .hero-image-mobile::after {
        height: 50%;
        bottom: 0;
        background: linear-gradient(to top, rgba(252, 251, 250, 1) 0%, rgba(252, 251, 250, 0) 100%);
    }
    
    .scroll-indicator {
        display: flex;
    }
    
    .hero-content {
        background: transparent;
        padding-right: 1rem;
        padding-left: 1rem;
        text-align: center;
        padding-bottom: 3rem;
        padding-top: 0;
        margin-top: -8rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
    }
    
    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-logo img {
        height: 100px;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-line {
        display: none;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    
    .page-header {
        padding: 10rem 0 4rem;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 0.85rem;
        padding: 0 2.5rem;
    }
    
    /* Deko-Bilder auf Mobile kleiner und ganz außen */
    .header-deco {
        height: 50%;
        opacity: 1;
    }
    
    .header-deco-left {
        left: 0%;
    }
    
    .header-deco-right {
        right: -5%;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    .qualification-item {
        flex-direction: column;
    }
    
    .qualification-year {
        margin-bottom: 0.25rem;
    }
    
    .service-detail {
        padding: 3rem 0;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cookie-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--accent-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Maps Placeholder */
.maps-placeholder {
    background: var(--bg-light);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.maps-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.maps-placeholder p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.maps-placeholder button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.maps-placeholder button:hover {
    background: var(--accent-dark);
}

@media (max-width: 768px) {
    #cookie-banner {
        padding: 1.25rem 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
