body {
    font-family: 'Kalam', cursive;
    background-color: #fff5e1; /* Very light peachy-orange */
    color: #8B4513; /* Dark, rich orange-brown for text */
}

.navbar-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #fb923c; /* Vibrant Orange */
}

.nav-link {
    font-size: 1.2rem;
    color: #8B4513;
}

.nav-link.active {
    color: #e85d75; /* Primary Pink */
}

header h1 {
    font-family: 'Pacifico', cursive;
    color: #fb923c; /* Vibrant Orange */
}

h2, h3, h5 {
    font-family: 'Pacifico', cursive;
    color: #e85d75; /* Primary Pink */
}

.card {
    border: 2px solid #FFD700; /* Gold accent border */
    border-radius: 15px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.rounded-circle {
    border: 5px solid #FFD700; /* Gold accent border */
}

footer {
    background-color: #fb923c; /* Vibrant Orange */
    color: #fff5e1; /* Light background color for contrast */
    margin-top: 3rem;
}

/* --- GALLERY STYLES --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-item {
    background-color: #f472b6; /* A lighter, playful pink */
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item.small {
    grid-row: span 1;
    grid-column: span 1;
    min-height: 100px;
}

.gallery-item.medium {
    grid-row: span 2;
    grid-column: span 1;
    min-height: 200px;
}

.gallery-item.large {
    grid-row: span 2;
    grid-column: span 2;
    min-height: 200px;
}

@media (min-width: 600px) {
    .gallery-item.medium {
        grid-column: span 2;
    }
    .gallery-item.large {
        grid-column: span 3;
        grid-row: span 2;
    }
}


/* --- CALENDAR STYLES --- */
#calendar {
    font-family: 'Kalam', cursive;
}

/* Base style for all calendar events */
.fc-event {
    cursor: pointer;
    border: none !important;
    padding: 4px 6px;
    font-size: 0.9em;
}

/* Desktop grid-view events */
.fc-daygrid-event {
    background-color: #fb923c !important; /* Vibrant Orange */
}

.fc-event-main {
    color: white;
}

.event-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 5px;
}

.event-detail-item {
    display: flex;
    align-items: center;
}

.event-detail-item svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    fill: white;
}

/* Mobile list-view events */
.fc-list-event {
    background-color: #e85d75 !important; /* Primary Pink */
    border: 2px solid #FFD700; /* Gold accent border */
    margin-bottom: 10px !important;
}

.fc-list-event-dot {
    border-color: #FFD700 !important; /* Gold accent */
}

.fc-list-event-title a {
    color: white;
}