/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 15px 30px;
}
.navbar .logo {
    font-size: 22px;
    font-weight: bold;
}
.navbar ul {
    list-style: none;
    display: flex;
}
.navbar ul li {
    margin-left: 20px;
}
.navbar ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.navbar ul li a:hover {
    color: #ff9800;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    min-width: 150px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 1000;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.dropdown-menu li a:hover {
    background: #ff9800;
    color: #fff;
}
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Hero Section */
.hero {
    height: 70vh;
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.btn {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
.btn:hover {
    background: #e68900;
}

/* About Preview */
.about-preview {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}
.about-preview h2 {
    margin-bottom: 20px;
}

/* Events Preview */
.events-preview {
    padding: 50px 20px;
    text-align: center;
}
.event-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.event-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    width: 250px;
    text-align: left;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* Responsive */
@media(max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }
    .navbar ul.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 30px;
    }
}
 /* home section end 
 ABOUT US START  */

 /* About Page */
.about-page {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
}
.about-page h1 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about-page p {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

/* About Grid */
.about-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.about-card {
    background: #f8f8f8;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    text-align: left;
}
.about-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #222;
}
/* ABOUT US END 

CONTACT SECTION START */

/* Contact Page */
.contact-page {
    padding: 50px 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
}
.contact-page h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-page p {
    color: #555;
    margin-bottom: 30px;
}

/* Contact Form (Center) */
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.contact-form-wrapper form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.contact-form-wrapper button {
    background: #ff9800;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.contact-form-wrapper button:hover {
    background: #e68900;
}

/* Contact Info (Below Form) */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.info-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
}
.info-card h2 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #222;
}
.info-card p {
    color: #555;
    font-size: 15px;
}
/* Error and Success Messages */
.error {
    color: red;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}
.success {
    color: green;
    font-size: 15px;
    margin-top: 10px;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
/* CONTACT SECTION END 

GALLERY START */

/* Gallery Page */
.gallery-page {
    padding: 50px 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
}
.gallery-page h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.gallery-page p {
    color: #555;
    margin-bottom: 30px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay Effect */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

/* GALLERY SECTION END 

EVENTS SECTION START */

/* Events Page */
.events-page {
    padding: 50px 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
}
.events-page h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.events-page p {
    color: #555;
    margin-bottom: 30px;
}

/* Event List */
.event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.event-card {
    background: #f9f9f9;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}
.event-card:hover {
    transform: translateY(-5px);
}
.event-card h2 {
    margin-bottom: 10px;
    color: #222;
}
.event-card p {
    margin: 5px 0;
    font-size: 15px;
    color: #444;
}
.event-card .desc {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}
.event-card .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 15px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
.event-card .btn:hover {
    background: #e68900;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    padding: 25px;
    width: 500px;
    max-width: 90%;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}
.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
.close:hover {
    color: red;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/* EVENTS SECTION END 

REGISTER START */
  /* Auth Pages (Login/Register) */
.auth-page {
    padding: 50px 20px;
    background: #fff;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
}
.auth-form-wrapper {
    display: flex;
    justify-content: center;
}
.auth-form-wrapper form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.auth-form-wrapper input {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.auth-form-wrapper button {
    background: #ff9800;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.auth-form-wrapper button:hover {
    background: #e68900;
}
.redirect {
    margin-top: 15px;
    font-size: 14px;
}
.redirect a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}
.redirect a:hover {
    text-decoration: underline;
}
/* REGISTER END 

LOGIN START */
  


