/* --- Global Variables --- */
:root {
    --giu-green: #006A41;
    --giu-light-green: #22A64A;
    --giu-dark: #115640;
}

/* --- Components: Headings --- */
.section-heading {
    font-size: 1.1rem;
    color: var(--giu-green);
    border-bottom: 3px solid var(--giu-light-green);
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
p {
    text-align: justify;
}
.small-heading { font-size: 0.95rem; }
.xx-small { font-size: 0.75rem; }
.lead-text { font-size: 1.05rem; }

/* --- Component: Hero Area --- */
.hero-area {
    background: linear-gradient(180deg, #e8f3ee 0%, #f9fbfd 50%, #ffffff 100%);
    padding: 80px 0 !important;
    border-bottom: 1px solid #d1e7dd !important;
}
.hero-title {
    color: var(--giu-dark);
    font-size: clamp(1.8rem, 4vw, 3.5rem); /* Responsive sizing */
    text-shadow: 0px 2px 4px rgba(0,0,0,0.05);
}
.hero-subtitle {
    max-width: 700px;
    color: #555;
    font-weight: 500;
}

/* --- Component: Cards --- */
.wireframe-card {
    background: #ffffff;
    border: 1px solid #dee2e6 !important; 
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.wireframe-card:hover {
    border-color: var(--giu-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Component: Buttons --- */
.btn-giu-green {
    background-color: var(--giu-green);
    color: #fff;
    border: none;
}
.btn-giu-green:hover { background-color: var(--giu-dark); color: #fff; }

.btn-sar-small {
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 2px;
    width: 100%; 
    transition: all 0.2s ease;
}
.btn-sar-small:hover {
    border-color: var(--giu-green);
    color: var(--giu-green);
    background-color: #f8fbf9;
}
.sar-repository-container .btn-sar-small {
    width: auto;
    min-width: 100px;
}

/* --- Component: Events & Team --- */
.event-inner-box {
    background-color: #ffffff;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px;
    height: 100%;
    min-height: 110px;
    transition: transform 0.2s ease;
}
.event-inner-box:hover { transform: translateY(-2px); border-color: var(--giu-green) !important; }

.team-img-square {
    width: 60px; height: 60px;
    object-fit: cover; border-radius: 4px;
}
.team-inner:hover { background-color: #f8f9fa; border-radius: 6px; }

/* --- Section Specifics --- */
.contact-accent { border-left: 6px solid var(--giu-green) !important; }
.contact-accent .border-end { max-width: 280px; }
.accreditation-static { max-height: 38px; width: auto; object-fit: contain; margin-bottom: 10px; }

/* --- Navigation --- */
.navbar-nav .nav-item { display: flex; align-items: center; }
.navbar-nav .nav-item:not(:last-child)::after {
    content: "•"; margin: 0 8px; color: #000; font-size: 1rem;
}
.navbar-nav .nav-link:hover { color: var(--giu-green) !important; }

/* --- Footer Core --- */
.bg-heath {
    background-color: #111111;
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--giu-light-green); /* Matches global theme */
}

.footer-menu a,
.footer-contact-address a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease-in-out;
}

.footer-menu a:hover,
.footer-contact-address a:hover {
    color: var(--giu-light-green) !important;
    padding-left: 5px;
}
/* --- Remix Icon Global Styling --- */
.social-profile li a i {
    /* font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease; */
    text-decoration: none !important;
    display: inline-block;
}
/* Optional: Ensure they stay white/gray until hovered */
.social-profile li a {
    color: inherit;
}

.social-profile li a:hover i {
    color: #ffffff; /* Bright white on hover */
}
