* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color:#222;
    color: #eee;
    line-height: 1.6;
    text-transform: uppercase;
}

html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 150px; 
    padding: 100px 0; 
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

header {
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo img {
    width: 120px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: rotate(360deg);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.nav-links a {
    display: inline-block;
    padding: 0.7rem 2rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    background: linear-gradient(135deg, #ff0057, #ffcc00);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid #ffcc00;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: scale(0.8);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover {
    color: #ffcc00;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.7);
}

.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 5rem;
    color: #ffcc00;
    letter-spacing: 5px;
    animation: slideIn 2s ease;
}

.hero p {
    font-size: 1.5rem;
    color: #eee;
    margin-top: 1rem;
    animation: slideUp 2s ease;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff9900, #ff0057);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 87, 0.5);
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 153, 0, 0.7);
}

.gallery {
    text-align: center;
    padding: 50px 0;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.gallery p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 153, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
    font-size: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 1rem;
    border: 2px solid #ffcc00;
    background: #222;
    color: #eee;
    border-radius: 10px;
    transition: border 0.3s;
}

.contact input:focus, .contact textarea:focus {
    border-color: #ff0057;
}

footer {
    background: #111;
    text-align: center;
    padding: 1.5rem 0;
}

.social-links a {
    color: #ffcc00;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #ff0057;
    transform: scale(1.2);
}

.bios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.bio {
    text-align: center;
    background: #333;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bio:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.5);
}

.bio img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ffcc00;
}

.bio h3 {
    margin-bottom: 0.5rem;
    color: #ffcc00;
    font-size: 1.25rem;
}

.bio p {
    color: #eee;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.events {
    text-align: center;
    padding: 50px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.events h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.events p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-item {
    background: #282828;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 153, 0, 0.4);
}

.event-item h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 1rem;
    margin: 5px 0;
    color: #ccc;
}

.details-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.details-btn:hover {
    background-color: #ffaa00;
}

.map-container {
    margin-top: 40px;
    text-align: center;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

iframe {
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.contact {
    background-color: #222;
    padding: 60px 20px;
    color: #fff;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-content {
    display: flex;
    justify-content: space-between; 
    gap: 30px; 
    align-items: flex-start;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px; 
    background-color: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
    transform: translateY(-5px);
}

.contact-form h3,
.contact-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #bbb;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #444;
    color: #fff;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: #c0392b;
}

.contact-info p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 10px;
}

.social-media {
    margin-top: 20px;
}

.social-icon {
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 30px;
    height: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
