/* Global Reset - Kein schwarzer Hintergrund */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: rgb(250, 243, 231) !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: rgb(250, 243, 231) !important;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100% !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container {
    display: flex;
    min-height: 100vh;
    background: rgb(250, 243, 231);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.main-content {
    flex: 1;
    background: rgb(250, 243, 231);
    width: 100%;
    overflow-x: hidden;
}

/* Team Button Section */
.team-button-section {
    padding: 40px 0;
    text-align: center;
    background: rgb(250, 243, 231);
}

/* Hero Section - Kein schwarzer Bereich */
.hero-section {
    background: rgb(250, 243, 231);
    width: 100%;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    background: rgb(250, 243, 231);
    position: relative;
}

.team-header-logo {
    background: rgb(250, 243, 231);
    padding: 40px 0 20px;
    text-align: center;
}

.fotoart-logo {
    display: inline-block;
}

.logo-image {
    max-width: 200px;
    height: auto;
}

.team-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center;
    background: rgb(250, 243, 231);
    display: block;
    margin: 0;
    padding: 0;
}

.team-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgb(250, 243, 231);
    border: 3px solid rgb(191, 151, 97);
    border-radius: 50px;
    text-decoration: none;
    color: rgb(191, 151, 97);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(191, 151, 97, 0.1);
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.team-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 151, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-button:hover::before {
    left: 100%;
}

.team-button:hover {
    background: rgb(191, 151, 97);
    color: rgb(250, 243, 231);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 151, 97, 0.3);
    border-color: rgb(170, 130, 75);
}

.team-button span {
    position: relative;
    z-index: 2;
}

.button-arrow {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.team-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Team Members Section */
.team-members-section {
    background: rgb(250, 243, 231);
    padding: 30px 40px 60px;
    text-align: center;
    border-top: 3px solid rgba(191, 151, 97, 0.3);
}

.team-members-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.team-members-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member-card {
    background: transparent;
    border: 2px solid rgb(191, 151, 97);
    border-radius: 20px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 151, 97, 0.2);
    border-color: rgb(160, 120, 75);
}

.team-member-card .member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(191, 151, 97, 0.3);
    transition: all 0.3s ease;
}

.team-member-card:hover .member-photo {
    border-color: rgb(191, 151, 97);
    transform: scale(1.05);
}

.team-member-card .member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image {
    transform: scale(1.1);
}

.team-member-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.team-member-card .member-role {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
}

.team-member-card .member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-member-card .specialty {
    background: rgba(191, 151, 97, 0.1);
    color: rgb(191, 151, 97);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid rgba(191, 151, 97, 0.2);
    transition: all 0.3s ease;
}

.team-member-card:hover .specialty {
    background: rgba(191, 151, 97, 0.2);
    border-color: rgba(191, 151, 97, 0.4);
}

/* Home Contact CTA */
.home-contact-cta {
    background: rgb(250, 243, 231);
    color: rgb(191, 151, 97);
    padding: 60px 40px;
    text-align: center;
    border-top: 3px solid rgba(191, 151, 97, 0.3);
}

.home-contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: rgb(191, 151, 97);
}

.home-contact-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgb(191, 151, 97);
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: rgb(191, 151, 97);
    color: rgb(250, 243, 231);
}

.cta-button.primary:hover {
    background: rgb(250, 243, 231);
    color: rgb(191, 151, 97);
    border-color: rgb(191, 151, 97);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 151, 97, 0.3);
}

.cta-button.secondary {
    background: rgb(250, 243, 231);
    color: rgb(191, 151, 97);
    border-color: rgb(191, 151, 97);
}

.cta-button.secondary:hover {
    background: rgb(191, 151, 97);
    color: rgb(250, 243, 231);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 151, 97, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: rgb(250, 243, 231);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 200px;
    background: rgb(250, 243, 231);
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #333;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 0 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sidebar-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.logo-underline {
    width: 80px;
    height: 2px;
    background: rgb(191, 151, 97);
    margin: 0 auto 15px;
}

.camera-icon {
    font-size: 24px;
    margin-bottom: 20px;
    color: rgb(191, 151, 97);
}

.phone {
    font-size: 12px;
    color: rgb(191, 151, 97);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    padding: 40px 0;
}

.nav-item {
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.nav-item a {
    color: rgb(191, 151, 97);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 0;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.nav-item.active a,
.nav-item a:hover {
    color: rgb(140, 110, 70);
}

/* .nav-item.highlighted {
    background: rgb(191, 151, 97);
    margin: 0;
}

.nav-item.highlighted a {
    color: #000;
    font-weight: 600;
} */

.badge {
    background: rgb(191, 151, 97);
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.arrow {
    color: rgb(191, 151, 97);
    font-size: 10px;
}

/* Footer Info */
.footer-info {
    padding: 0 15px;
    font-size: 10px;
    color: rgb(191, 151, 97);
    line-height: 1.4;
}

.footer-info a {
    color: rgb(191, 151, 97);
    text-decoration: none;
}

.footer-info a:hover {
    color: rgb(140, 110, 70);
}

/* Main Content */
.main-content {
    margin-left: 200px;
    flex: 1;
    background: rgb(250, 243, 231);
    width: 100%;
}

.hero-section {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.team-photo {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    background-color: rgb(250, 243, 231);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Team Header mit Logo */
.team-header-logo {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 10;
    background: rgb(250, 243, 231);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    margin: 0;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Neues FOTOART Logo Design */
.fotoart-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    letter-spacing: 12px;
    text-transform: uppercase;
    position: relative;
    display: block;
    text-align: center;
}

/* Neues Logo Design mit Kamera */
.logo-design {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.logo-line {
    height: 3px;
    background-color: rgb(191, 151, 97);
    flex: 1;
    max-width: 200px;
}

.logo-line-left {
    margin-right: 30px;
}

.logo-line-right {
    margin-left: 30px;
}

.camera-icon-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-body {
    width: 80px;
    height: 60px;
    background-color: rgb(191, 151, 97);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 8px;
    background-color: rgb(191, 151, 97);
    border-radius: 4px 4px 0 0;
}

.camera-lens {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid rgb(191, 151, 97);
}

.fotoart-text {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    letter-spacing: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* Logo Bild */
.logo-image {
    max-height: 220px;
    max-width: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.team-image {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    object-position: center;
    background-color: rgb(250, 243, 231);
    margin-top: 0;
    display: block;
}

/* Name Tags for Team Members */
.name-tag {
    position: absolute;
    background: linear-gradient(135deg, rgba(191, 151, 97, 0.95), rgba(170, 130, 75, 0.95));
    color: rgb(250, 243, 231);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(191, 151, 97, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(250, 243, 231, 0.6);
    transform: translateX(-50%);
}

.name-tag:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(191, 151, 97, 0.4);
    border-color: rgba(250, 243, 231, 0.9);
}

/* Positioning for each team member (positioned lower and better arranged) */
.name-tag-1 {
    top: 65%;
    left: 12%;
}

.name-tag-2 {
    top: 68%;
    left: 32%;
}

.name-tag-3 {
    top: 65%;
    left: 58%;
}

.name-tag-4 {
    top: 68%;
    left: 78%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 180px;
    }
    
    .main-content {
        margin-left: 180px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .sidebar-logo {
        max-width: 130px;
    }
    
    .nav-item a {
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .logo-main {
        font-size: 56px;
        letter-spacing: 8px;
    }
    
    .logo-image {
        max-height: 170px;
        max-width: 480px;
    }
    
    .fotoart-text {
        font-size: 60px;
        letter-spacing: 15px;
    }
    
    .camera-body {
        width: 60px;
        height: 45px;
    }
    
    .camera-lens {
        width: 25px;
        height: 25px;
    }
    
    .logo-line {
        max-width: 150px;
    }
    
    .logo-line-left, .logo-line-right {
        margin: 0 20px;
    }
    
    .team-header-logo {
        top: 0px;
        padding: 15px 0;
    }
    
    .home-contact-cta {
        padding: 50px 30px;
    }
    
    .home-contact-cta h2 {
        font-size: 30px;
    }
    
    .team-members-section {
        padding: 25px 30px 50px;
    }
    
    .team-members-section h2 {
        font-size: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .team-button {
        font-size: 18px;
        padding: 18px 35px;
        min-width: 280px;
    }
    
    .team-button-section {
        padding: 35px 0;
    }
}

@media (max-width: 600px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .name-tag {
        font-size: 11px;
        padding: 8px 14px;
        border-radius: 20px;
    }
    
    .logo-text {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .logo-main {
        font-size: 42px;
        letter-spacing: 6px;
    }
    
    .logo-image {
        max-height: 130px;
        max-width: 350px;
    }
    
    .fotoart-text {
        font-size: 40px;
        letter-spacing: 10px;
    }
    
    .camera-body {
        width: 45px;
        height: 35px;
    }
    
    .camera-lens {
        width: 18px;
        height: 18px;
    }
    
    .logo-line {
        max-width: 100px;
    }
    
    .logo-line-left, .logo-line-right {
        margin: 0 15px;
    }
    
    .logo-design {
        margin-bottom: 15px;
    }
    
    .team-header-logo {
        top: 0px;
        padding: 12px 0;
    }
    
    .home-contact-cta {
        padding: 40px 20px;
    }
    
    .home-contact-cta h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .team-members-section {
        padding: 20px 20px 40px;
    }
    
    .team-members-section h2 {
        font-size: 26px;
    }
    
    .team-members-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .team-member-card {
        padding: 20px;
    }
    
    .team-member-card .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-button {
        font-size: 16px;
        padding: 15px 25px;
        min-width: 250px;
        gap: 10px;
    }
    
    .team-button-section {
        padding: 30px 20px;
    }
    
    .button-arrow {
        font-size: 16px;
    }
}

/* Smooth animations */
.name-tag {
    animation: fadeIn 0.8s ease-out;
}

.name-tag-1 { animation-delay: 0.2s; }
.name-tag-2 { animation-delay: 0.4s; }
.name-tag-3 { animation-delay: 0.6s; }
.name-tag-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for navigation */
.nav-item {
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: rgb(191, 151, 97);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-item.active::before,
.nav-item:hover::before {
    transform: scaleY(1);
}

/* Impressum Modal Styles */
.impressum-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.impressum-content {
    position: relative;
    background: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.impressum-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.impressum-close:hover {
    color: rgb(191, 151, 97);
    background: rgba(191, 151, 97, 0.1);
    transform: scale(1.1);
}

.impressum-text {
    padding: 40px;
    max-height: 75vh;
    overflow-y: auto;
    line-height: 1.6;
}

.impressum-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgb(191, 151, 97);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(191, 151, 97, 0.2);
}

.impressum-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: rgb(191, 151, 97);
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.impressum-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.impressum-text strong {
    color: #333;
    font-weight: 600;
}

.impressum-text a {
    color: rgb(191, 151, 97);
    text-decoration: none;
    font-weight: 500;
}

.impressum-text a:hover {
    text-decoration: underline;
}

/* Responsive Impressum Modal */
@media (max-width: 768px) {
    .impressum-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .impressum-text {
        padding: 30px 25px;
        max-height: 85vh;
    }
    
    .impressum-text h2 {
        font-size: 24px;
    }
    
    .impressum-text h3 {
        font-size: 16px;
    }
    
    .impressum-text p {
        font-size: 13px;
        text-align: left;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 243, 231, 0.98);
    color: #333;
    padding: 12px 20px;
    z-index: 3000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(191, 151, 97, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    max-height: 120px;
}

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

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

.cookie-icon {
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 32px;
    height: 32px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #555;
}

.cookie-text a {
    color: rgb(191, 151, 97);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: rgb(255, 223, 186);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.cookie-btn-decline {
    background: transparent;
    color: #666;
    border: 2px solid rgba(191, 151, 97, 0.5);
}

.cookie-btn-decline:hover {
    background: rgba(191, 151, 97, 0.1);
    border-color: rgb(191, 151, 97);
    color: rgb(191, 151, 97);
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background: rgb(191, 151, 97);
    color: rgb(250, 243, 231);
    border: 2px solid rgb(191, 151, 97);
}

.cookie-btn-accept:hover {
    background: rgb(160, 120, 75);
    border-color: rgb(160, 120, 75);
    transform: translateY(-2px);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 20px;
        max-height: 150px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 140px;
        min-width: 100px;
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cookie-btn:active {
        transform: scale(0.95);
    }
}