/* Doreni Wood - Custom Styles */

:root {
    --primary-color: #00312d;
    --secondary-color: #508457;
    --highlight-color: #d5d800;
    --text-color: #1a1a1a;
    --bg-pastel: #f4f7f6; /* Soft light background */
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-pastel);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

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

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

.highlight {
    color: var(--highlight-color);
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 49, 45, 0.6); /* Dark green overlay */
}

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

/* Sections */
section {
    padding: 80px 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Cookie Banner - Premium Floating Card */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 1050;
    display: none; /* Controlled by JS */
    animation: cookieFadeInUp 0.5s ease-out forwards;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    #cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
    }
}

.cookie-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.45;
}

.cookie-link {
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--primary-color) !important;
}

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

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--white);
}
