/* Custom CSS */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #eaeaea;
}

.navbar {
    background-color: #f1aeb5 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.navbar-brand, .nav-link {
    color: #fff !important;
}

.navbar-brand:hover, .nav-link:hover {
    color: #f1aeb5 !important;
}

.hero {
    background: url('../img/hero.webp') no-repeat center center/cover;
    color: #fff;
    padding: 150px 0;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

.about-us, .features, .interesting-fact, .blog-announcement, .testimonials, .contact {
    padding: 60px 0;
}

.about-us img, .blog-announcement img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-box {
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 48px;
    color: #f1aeb5
;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial h4 {
    margin-top: 10px;
    color: #f1aeb5
;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f1aeb5;
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
}

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner .btn {
    margin-left: 20px;
}

.btn-primary {
    background-color: #f1aeb5
;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #ffc3ff;
}

.btn-dark {
    background-color: #333;
    border: none;
}

.btn-dark:hover {
    background-color: #1a1a1a;
}
