/* ============================================
   AVANTI v2 — "Mediteran" Šibenik Motiv
   ============================================ */

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

:root {
    --cream: #FAF8F5;
    --dark: #3F556A;
    --terracotta: #B59E5F;
    --gold: #B59E5F;
    --teal: #3F556A;
    --text: #1C2B33;
    --text-light: #5A6B75;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --font-numbers: 'Cormorant Garamond', Georgia, serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--terracotta);
}

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

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

@media (min-width: 1440px) {
    .container { max-width: 1320px; padding: 0 60px; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--terracotta);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #A84A24;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 0;
    height: 70px;
    background: #3F556A;
    transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
    background: rgba(63, 85, 106, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-serif {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: color 0.4s;
}

.navbar.scrolled .logo-serif {
    color: var(--dark);
}

/* Logo images */
.logo-img {
    height: 60px;
    width: auto;
    transition: opacity 0.4s;
}

.logo-img--white {
    display: block;
}

.logo-img--dark {
    display: none;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.nav-menu {
    display: none;
    gap: 4px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link--cta {
    color: var(--gold) !important;
    font-weight: 600;
}

/* Language toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
    margin-right: 8px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
    .lang-toggle {
        margin-left: 12px;
        margin-right: 0;
    }
}

/* Nav toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }
}

/* Mobile nav menu dropdown */
@media (max-width: 767px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 16px 20px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        color: var(--text);
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu .nav-link:hover {
        color: var(--terracotta);
    }
}

/* Mobile Bottom Bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
}

@media (max-width: 767px) {
    .mobile-bar {
        display: flex;
    }
    body {
        padding-bottom: 72px;
    }
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    color: var(--text-light);
    transition: color 0.2s;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-bar-item svg {
    width: 22px;
    height: 22px;
}

.mobile-bar-item.active {
    color: var(--terracotta);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--dark);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 43, 51, 0.82) 0%,
        rgba(28, 43, 51, 0.45) 40%,
        rgba(28, 43, 51, 0.2) 70%,
        rgba(28, 43, 51, 0.1) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-bottom: 100px;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1px solid rgba(232, 164, 74, 0.4);
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-title em {
    color: var(--gold);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    background: rgba(28, 43, 51, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 0;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-stats { gap: 80px; }
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-numbers);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .section { padding: 120px 0; }
}

.section-warm {
    background: #F3EDE6;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

/* --- About --- */
.about-layout {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
    }
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-right p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Services Carousel --- */
.services-carousel {
    padding: 0 20px;
}

@media (min-width: 768px) {
    .services-carousel { padding: 0 40px; }
}

@media (min-width: 1440px) {
    .services-carousel { padding: 0 calc((100vw - 1200px) / 2); }
}

.services-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .services-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--terracotta);
}

.service-card-number {
    font-family: var(--font-numbers);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card ul {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 12px;
}

.service-card li {
    font-size: 0.8125rem;
    color: var(--text-light);
    padding: 4px 0 4px 16px;
    position: relative;
}

.service-card li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

/* --- Process Mosaic --- */
.process-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .process-mosaic {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

.process-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px 28px;
}

.process-number {
    font-family: var(--font-numbers);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-photo {
    border-radius: 8px;
    overflow: hidden;
    display: none;
}

@media (min-width: 768px) {
    .process-photo { display: block; }
}

.process-photo img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.6s;
}

.process-photo:hover img {
    transform: scale(1.05);
}

/* --- Benefits --- */
.benefits-layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .benefits-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
}

.benefits-image {
    border-radius: 8px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px;
    transition: transform 0.6s;
}

.benefits-image:hover img {
    transform: scale(1.03);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px 28px;
    border-left: 3px solid var(--terracotta);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateX(4px);
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- CTA --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 43, 51, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-card svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card a {
    font-weight: 500;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--terracotta);
}

/* Form */
.contact-form {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px;
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 480px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: 4px;
    background: #FAFAFA;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field-error {
    font-size: 0.75rem;
    color: #C1582E;
    min-height: 18px;
    padding-top: 4px;
}

/* Override field-error: keep red for actual error visibility */

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--terracotta);
}

#submitBtn {
    width: 100%;
}

.btn-loading {
    display: none;
}

#submitBtn.loading .btn-text {
    display: none;
}

#submitBtn.loading .btn-loading {
    display: inline;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
}

/* --- Map --- */
.map-section {
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 350px;
}

/* --- Footer --- */
.footer {
    position: relative;
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-skyline {
    position: relative;
    margin-top: -1px;
    color: var(--dark);
    line-height: 0;
}

.footer-skyline svg {
    width: 100%;
    height: 80px;
    display: block;
}

@media (min-width: 768px) {
    .footer-skyline svg { height: 120px; }
}

.footer-inner {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo-serif {
    font-size: 1.75rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-col li {
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 0.8125rem;
    text-align: center;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.8125rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    margin: 0 4px;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* GDPR consent in form */
.form-consent {
    margin-top: 8px;
}

.consent-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-link {
    color: var(--terracotta);
    text-decoration: underline;
}

.form-consent.error .consent-label {
    color: var(--terracotta);
}

/* Legal modal (privacy & cookies) */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modal.is-open {
    display: flex;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 43, 51, 0.7);
    cursor: pointer;
}

.legal-modal-content {
    position: relative;
    background: #FFFFFF;
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.legal-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 12px;
}

.legal-modal-close:hover {
    color: var(--terracotta);
}

.legal-modal-content h2 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.legal-modal-content h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.legal-modal-content p {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.legal-modal-content a {
    color: var(--terracotta);
    text-decoration: underline;
}

.legal-modal-content code {
    background: #F5F1EA;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.875rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--dark);
    color: #FFFFFF;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    flex: 1;
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    min-width: 250px;
}

.cookie-banner-content a {
    color: var(--gold);
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

