/* Variables & Reset */
@font-face {
    font-family: 'PX';
    src: url('PX.woff2') format('woff2'),
        url('PX.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PX';
    src: url('PX-Bold.woff2') format('woff2'),
        url('PX-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    /* New Color Palette */
    --primary-color: #7a9e1a;
    /* Olive Green - Main Text/Headings */
    --accent-color: #d3d800;
    /* Bright Yellow-Green - Highlights/Buttons */
    --text-color: #333333;
    /* Dark Grey for body text */
    --text-light: #666666;
    /* Lighter Grey for secondary text */
    --bg-color: #ffffff;
    --bg-light: #eff2e8;
    /* Very subtle grey for section distinction */
    --white: #ffffff;

    /* Spacing */
    --section-padding: 100px 0;

    /* Fonts */
    --font-heading: 'PX', sans-serif;
    --font-body: 'PX', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-weight: 300;
    /* Lighter weight for modern feel */
}

h1,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    /* Keep headings dark for readability, use primary for accents */
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

b {
    font-weight: 800;
}

.container {
    width: 90%;
    max-width: 1100px;
    /* Slightly narrower for better readability */
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 10px;
    /* Rounded corners */
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjust based on actual SVG aspect ratio */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 800;
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: lowercase;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    /* Thinner bars */
    background-color: var(--text-color);
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-greeting {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 10px;
    max-width: 100%;
    margin: 0 auto;
}

/* Sections General */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
    text-transform: lowercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 15px;
}

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

/* About Section */
.about-content {
    max-width: 800px;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 50px;
    font-weight: 500;
}

/* Activities Section */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    padding: 0;
    /* Removed padding for cleaner look */
    border-radius: 0;
    box-shadow: none;
    /* Removed shadow */
    text-align: left;
    border-top: 3px solid var(--accent-color);
    padding-top: 30px;
}

.card:hover {
    transform: none;
    /* Removed movement */
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Offer Section */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.offer-item {
    background: transparent;
    padding: 0;
    border-left: 1px solid var(--accent-color);
    /* Thinner line */
    padding-left: 30px;
}

.offer-item h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.offer-item ul {
    list-style: none;
    padding-left: 0;
}

.offer-item li {
    margin-bottom: 15px;
    padding-left: 25px;
    color: var(--text-light);
    display: block;
    position: relative;
    hyphens: auto;
}

.offer-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    /* Align with text */
    width: 0.6em;
    height: 0.6em;
    background-color: var(--accent-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.38 39.38'%3E%3Cpath d='M5.37,0h28.64c2.96,0,5.37,2.41,5.37,5.37v28.64c0,2.96-2.41,5.37-5.37,5.37H5.37c-2.96,0-5.37-2.41-5.37-5.37V5.37C0,2.41,2.41,0,5.37,0Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.38 39.38'%3E%3Cpath d='M5.37,0h28.64c2.96,0,5.37,2.41,5.37,5.37v28.64c0,2.96-2.41,5.37-5.37,5.37H5.37c-2.96,0-5.37-2.41-5.37-5.37V5.37C0,2.41,2.41,0,5.37,0Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h2,
.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer address {
    font-style: normal;
    line-height: 1.6;
}

.footer address p {
    margin-bottom: 10px;
}

.footer a {
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
}

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

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 35px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

/* Activities List */
.activities-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.activities-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: block;
    position: relative;
    padding-left: 25px;
}

.activities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.6em;
    height: 0.6em;
    background-color: var(--accent-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.38 39.38'%3E%3Cpath d='M5.37,0h28.64c2.96,0,5.37,2.41,5.37,5.37v28.64c0,2.96-2.41,5.37-5.37,5.37H5.37c-2.96,0-5.37-2.41-5.37-5.37V5.37C0,2.41,2.41,0,5.37,0Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.38 39.38'%3E%3Cpath d='M5.37,0h28.64c2.96,0,5.37,2.41,5.37,5.37v28.64c0,2.96-2.41,5.37-5.37,5.37H5.37c-2.96,0-5.37-2.41-5.37-5.37V5.37C0,2.41,2.41,0,5.37,0Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up,
.activities-list li {
    opacity: 0;
    /* Start hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Delays for staggered effect */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}