/**
 * Schilcher Cookie Banner Styles
 * 
 * Brand-aligned styling for the cookie consent banner
 */

/* Banner Container */
.scb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fef8e7; /* Schilcher brand light teal */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    animation: scb-slide-up 0.3s ease-out;
    font-family: 'Open Sans', sans-serif;
}

/* Animations */
@keyframes scb-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scb-slide-down {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}
/* Container */
.scb-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Layout */
.scb-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Image Wrapper */
.scb-image-wrapper {
    flex-shrink: 0;
}

.scb-cookie-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* Text Wrapper */
.scb-text-wrapper {
    flex: 1;
    min-width: 300px;
}
/* Message Text */
.scb-message {
    color: #49391b; /* Schilcher brand dark brown */
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Button Wrapper */
.scb-button-wrapper {
    flex-shrink: 0;
}

/* Accept Button */
.scb-accept-button {
    background-color: #49391b; /* Dark brown */
    color: #fef8e7; /* Light teal */
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.scb-accept-button:hover {
    background-color: #352507; /* Darker brown on hover */
    transform: translateY(-1px);
}
.scb-accept-button:focus {
    outline: 2px solid #fdfdfc; /* Yellow accent for focus */
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scb-cookie-banner {
        padding: 15px;
    }
    
    .scb-content {
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .scb-cookie-image {
        width: 60px;
        height: 60px;
    }
    
    .scb-text-wrapper {
        min-width: auto;
    }
    
    .scb-message {
        font-size: 14px;
    }
    
    .scb-accept-button {
        padding: 10px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 200px;
    }
}