:root {
    --primary-color: #26615E;
    --secondary-color: #89A27D;
    --accent-color: #BC9754;
    --bg-color: #F9F4E8;
    --text-color: #2d3436;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header & Navigation */
header {
    background-color: rgba(38, 97, 94, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo img {
    height: 55px;
    transition: var(--transition);
}

header:hover .logo img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

.donate-btn {
    background-color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(188, 151, 84, 0.4);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.donate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(188, 151, 84, 0.5);
    background-color: #a68449;
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/images/hero-bg-new.jpg') center/cover;
    color: var(--white);
    padding: 0 10%;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 7rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 10px;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
    border-bottom-color: var(--accent-color);
}

.card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    background: rgba(188, 151, 84, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: var(--transition);
}

.card:hover i {
    transform: rotate(10deg) scale(1.1);
    background: var(--accent-color);
    color: var(--white);
}

/* CEO Section */
.ceo-section {
    background: linear-gradient(135deg, var(--primary-color), #1a4d4a);
    color: var(--white);
    display: flex;
    gap: 5rem;
    align-items: center;
    border-radius: 40px;
    margin: 4rem 5%;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.ceo-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 25px 25px 0 var(--accent-color);
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.ceo-section:hover .ceo-image img {
    transform: translate(-5px, -5px);
    box-shadow: 30px 30px 0 var(--accent-color);
}

.ceo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ceo-content .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 5rem 10% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about p {
    margin: 1.5rem 0;
    opacity: 0.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .ceo-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Business Card Style */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 4rem;
    padding: 3rem 0;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.5s ease;
}

.team-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 70px rgba(38, 97, 94, 0.15);
}

.team-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.team-card-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.team-card-header p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-sep {
    height: 6px;
    background-color: var(--accent-color);
    margin: 0;
}

.team-card-body {
    padding: 4.5rem 2.5rem 2.5rem;
}

.team-contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.team-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.team-contact-item i {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(38, 97, 94, 0.2);
}

.team-card-tagline {
    margin-top: 2rem;
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

.team-image-circle {
    width: 130px;
    height: 130px;
    border-radius: 40px;
    border: 6px solid var(--white);
    margin: -65px auto -30px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.team-card:hover .team-image-circle {
    transform: rotate(0deg) scale(1.05);
    border-radius: 50%;
}

.team-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}