/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Metamorphous');

/* Variables */
:root {
    --primary-color: #ff3333;
    --secondary-color: #ff6b6b;
    --dark-bg: #121212;
    --light-text: #f0f0f0;
    --accent: #ff9500;
}

/* Global Styles */
body {
    font-family: 'Metamorphous', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 2rem;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Metamorphous', cursive;
    font-size: 2rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
    color: white;
}

a.nav-link {
    
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/img/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Metamorphous', cursive;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 0px rgba(255, 51, 51, 0.5);
}

.logo-hero {
    padding: 20px 0;
}

.btn-danger {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-danger:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

/* Event Cards */
.event-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.2);
}

img.card-img-top {
    height: auto;
    padding-bottom: 20px;
}

/* Gallery */
.gallery-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    border-top: 1px solid #333;
}

.social-icons a {
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}


@media only screen and (max-width: 1200px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }

    section#home {
        margin-top: 70px;
    }
}
