@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&family=Commissioner:wght@300;400;500&display=swap');

:root {
    --primary-color: #31845e;
    --secondary-color: #59814d;
    --accent-1: #967353;
    --accent-2: #887749;
    --accent-3: #747c46;
    --accent-4: #008575;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --pastel-bg: #fdfaf5; 
    --icon-color: #967353;
    --transition-speed: 0.3s;
}

.bi:not(footer .bi) {
    color: var(--icon-color) !important;
}

.price-text {
    color: #967353 !important;
}

body {
    font-family: 'Commissioner', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(49, 132, 94, 0.1);
    padding: 1.5rem 0; /* More padding for larger logo */
}

.navbar-brand img {
    height: 85px; 
    width: auto;
    object-fit: contain;
    transition: height var(--transition-speed);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color var(--transition-speed);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-1) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5.5rem; /* Significantly larger */
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: white;
}

.hero-content .lead {
    font-size: 2rem; /* Larger subtitle */
    font-weight: 300;
    margin-bottom: 3rem;
}

/* Images */
img.img-fluid, .news-img, .gallery-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.ratio-3-2 {
    aspect-ratio: 3/2 !important;
}

.pos-center {
    object-position: center !important;
}

.pos-torso {
    object-position: center 15% !important;
}

.pos-top-25 {
    object-position: center 25% !important;
}

.pos-60 {
    object-position: center 60% !important;
}

.pos-40 {
    object-position: center 40% !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.btn-primary:hover {
    background-color: var(--accent-4);
    border-color: var(--accent-4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
}

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

/* Sections */
section {
    padding: 6rem 0;
}

.bg-pastel {
    background-color: var(--pastel-bg);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    color: var(--accent-2);
}

/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: var(--pastel-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 3rem;
}

footer .footer-logo {
    height: 60px; /* Larger logo in footer */
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed);
}

footer a:hover {
    color: var(--accent-1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
}

/* Testimonials border */
.border-primary {
    border-color: var(--accent-3) !important;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    section {
        padding: 4rem 0;
    }
    .navbar-brand img {
        height: 50px;
    }
}
