:root {
    --primary-dark: #1a3c34;
    --primary-leaf: #2d6a4f;
    --accent-gold: #d4a373;
    --bg-light: #f3f4f1;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Badges */
.badge-pill-custom {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    background-color: rgba(26, 60, 52, 0.05);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.text-white .badge-pill-custom {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(31, 71, 46, 0.9), rgba(66, 51, 36, 0.85)), url('assets/hero-2.png');
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    background-position-x: initial;
    background-position-y: initial;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
}

.logo-white-bg {
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    /* optional – slightly rounded corners */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.btn-primary-custom {
    background-color: var(--primary-leaf);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

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

/* Section Styling */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-custom img {
    height: 450px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 2rem;
}

.card-custom .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-custom .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Founder Section */
.founder-quote {
    background-color: #f3f4f1;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid var(--primary-leaf);
}

.founder-quote i {
    font-size: 2rem;
    color: var(--primary-leaf);
    opacity: 0.2;
}

.founder-img {
    border-radius: 20px;
    width: 75%;
}

/* Social Boxes Section */
.social-section {
    background-color: var(--primary-dark);
    color: white;
}

.social-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: white;
    display: block;
}

.social-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.social-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.info-box {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-leaf);
}

/* Footer */
footer {
    background-color: #0d1b17;
    color: white;
    padding: 80px 0 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
        background-color: var(--primary-dark);
        position: fixed;
    }

    .navbar-collapse {
        background-color: var(--primary-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .card-custom img {
        height: 280px;
    }

    .founder-img {
        width: 100%;
        margin-bottom: 2rem;
    }

    #about .col-lg-6 {
        text-align: center;
    }

    .founder-quote {
        text-align: left;
    }

    footer .text-center,
    footer .col-lg-4,
    footer .col-lg-2 {
        text-align: center !important;
    }

    footer .d-flex {
        justify-content: center !important;
    }
}

/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--primary-leaf);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Lightbox/Modal Enhancements for Gallery */
.modal-content.gallery-modal-content {
    background-color: transparent;
    border: none;
}

.gallery-modal-img {
    border-radius: 15px;
    max-height: 85vh;
    object-fit: contain;
}

.btn-close-white-custom {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}