/* Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    background-color: var(--light-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.navbar-dark .navbar-brand {
    color: #fff;
    font-weight: bold;
}
/* Logo sizing for navbar */
.site-logo {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.event-card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    padding: 8px;
    box-sizing: border-box;
}
.card-title {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
/* Footer Styling */
footer {
    margin-top: auto;
}

footer h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Social Media Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a svg {
    transition: transform 0.3s ease, fill 0.3s ease;
}

/* YouTube - Red */
.social-icons a.youtube svg {
    fill: #FF0000;
}

.social-icons a.youtube:hover {
    background-color: #FF0000;
    transform: scale(1.2);
}

.social-icons a.youtube:hover svg {
    fill: white;
    transform: rotate(10deg);
}

/* Instagram - Pink/Purple Gradient */
.social-icons a.instagram svg {
    fill: #E1306C;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4);
    transform: scale(1.2);
}

.social-icons a.instagram:hover svg {
    fill: white;
    transform: rotate(10deg);
}

/* WhatsApp - Green */
.social-icons a.whatsapp svg {
    fill: #25D366;
}

.social-icons a.whatsapp:hover {
    background-color: #25D366;
    transform: scale(1.2);
}

.social-icons a.whatsapp:hover svg {
    fill: white;
    transform: rotate(10deg);
}

