/* ---------------- General ---------------- */
body {
    margin:0;
    padding:0;
    font-family:'Roboto', sans-serif;
    background:#fdf8f5;
    color:#333;
}
/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Logo Image */
.logo-container .logo {
    width: 60px; /* adjust size */
    height: auto;
}

/* Animated Cursive Text */
.logo-container .logo-text {
    font-family: monospace;
    font-size: 28px;
    color: #ffd700;
    position: relative;
    animation: float 2.5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* ---------------- Header ---------------- */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#4cafab;
    color:#fff;
    position: sticky;
    top:0;
    z-index: 100;
}
header .logo {
    font-size:28px;
    font-weight:bold;
    letter-spacing:1px;
}
header nav a {
    margin:0 15px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}
header nav a:hover {
    color:#ffd700;
}

/* ---------------- About Hero ---------------- */
.about-hero {
    text-align:center;
    padding:120px 20px;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/about-hero.jpg') center/cover no-repeat;
    color:#fff;
}
.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size:48px;
    margin-bottom:20px;
    animation: slideDown 1s ease forwards;
}
.about-hero p {
    font-size:20px;
    animation: fadeIn 2s ease forwards;
}

/* ---------------- Mission & Vision ---------------- */
.mission-vision {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    padding:80px 20px;
    text-align:center;
}
.mission-vision .card {
    background:#fff;
    border-radius:12px;
    padding:30px;
    width:300px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}
.mission-vision .card:hover {
    transform: translateY(-10px);
}
.mission-vision h2 {
    font-family:'Playfair Display', serif;
    color:#4cafab;
    margin-bottom:15px;
}
.mission-vision p { font-size:16px; line-height:1.5; }

/* ---------------- Team Section ---------------- */
.team {
    text-align:center;
    padding:80px 20px;
}
.team h2 {
    font-family:'Playfair Display', serif;
    color:#4cafab;
    font-size:36px;
    margin-bottom:50px;
}
.team-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}
.team-card {
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    width:250px;
    transition: transform 0.4s, box-shadow 0.4s;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
.team-card img {
    width:100%;
    height:220px;
    object-fit:cover;
}
.team-card h3 {
    padding:10px;
    font-size:20px;
}
.team-card p {
    padding:0 10px 15px;
    font-weight:500;
    color:#4cafab;
}

/* ---------------- Animations ---------------- */
@keyframes slideDown {
    0% { opacity:0; transform: translateY(-50px);}
    100% { opacity:1; transform: translateY(0);}
}
@keyframes fadeIn {
    0% { opacity:0;}
    100% { opacity:1;}
}

/* ---------------- Responsive ---------------- */
@media(max-width:992px){
    .mission-vision { flex-direction:column; }
    .team-cards { flex-direction:column; align-items:center; }
}
