/* Color Palette from Logo */
:root {
    --navy: #1a2a5e;    /* Deep Navy from hand/text */
    --pink: #e94e91;    /* Vibrant Pink from "Generations" */
    --blue: #5b9bd5;    /* Sky Blue from heart */
    --orange: #f39237;  /* Orange from figure */
    --cream: #fdfaf6;   /* Background of logo */
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif; /* Modern, clean font */
    background-color: var(--cream);
    color: var(--navy);
    line-height: 1.6;
}

/* Header / Navigation - Consistent on all pages */
header {
    background-color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--pink);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px; /* Larger logo for better visibility */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

/* Layout Containers */
section {
    padding: 60px 10%;
}

h1, h2 {
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-pink { color: var(--pink); }

/* Buttons */
.btn {
    background: var(--pink);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

/* Contact Form - Vertical Stacking */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

form {
    display: flex;
    flex-direction: column; /* This stacks Name, then Email, then Message */
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--navy);
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: var(--blue);
    outline: none;
}

/* Team & Event Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-top: 8px solid var(--pink);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--navy);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}