/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navbar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

.nav-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0) 100%);
    z-index: 999;
    transition: all 0.4s ease;
}

nav.active .nav-shade {
    height: 100vh;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0) 100%);
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}


.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.hamburger-container {
    position: relative;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: transparent;
    width: 200px;
    border-radius: 5px;
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    z-index: 1002;
}

nav.active .mobile-menu {
    display: flex;
    background-color: transparent;
}

.mobile-menu a {
    padding: 0.8rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 1px;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.mobile-menu a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0px;
    padding-top: 0px;
}

.slideshow-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.slide-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.upload-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.6s ease;
}

.upload-btn:hover {
    transform: scale(1.05);
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

/* Spectrum Border Animation */
@keyframes spectrum {
    0% { border-color: #ff6b6b; }
    25% { border-color: #ff8e53; }
    50% { border-color: #ffcc5c; }
    75% { border-color: #ff8e53; }
    100% { border-color: #ff6b6b; }
}

.spectrum-border {
    border: 1px solid #ff6b6b;
    animation: spectrum 5s infinite linear;
    padding: 0.5rem;
    border-radius: 5px;
}

/* Intro Section */
.intro {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-box img {
    max-width: 300px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Activities Section */
.activities {
    padding: 5rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title.centered-title {
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
}

.activities-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-cards {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.activity-cards::-webkit-scrollbar {
    display: none;
}

.card {
    min-width: 250px;
    height: 350px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.card:hover .card-bg {
    transform: scale(1.1);
}

.card h3 {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    display: none;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    overflow: hidden;
    text-align: center;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
    animation: scroll 30s linear infinite;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Clubs Section */
.clubs {
    padding: 5rem 2rem;
    text-align: center;
}

.clubs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.club-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 120px;
}

.club-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.club-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.club-logo img {
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.club-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.club-name {
    font-size: 0.9rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.club-item:hover .club-name {
    color: #ff6b6b;
}

/* Members Section - Updated Tab Styles */
/* Members Section */
.members-section {
    padding: 6rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tabs-container {
    margin-bottom: 3rem;
}

/* Members Section - Updated Tab Styles */
.tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    border-bottom: none;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: #ccc;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    min-width: 220px;
    text-align: center;
}

.tab-btn span {
    position: relative;
    z-index: 2;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.tab-btn.active {
    color: white;
    transform: translateY(0);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.tab-btn.active::before {
    opacity: 1;
}



.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.member-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.member-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.member-card:hover .member-bg {
    transform: scale(1.05);
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.member-info p {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}


/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}
/* Events Section */
.events-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-main {
    width: 75%;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.7);
}

.event-header h2 {
    font-size: 2rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.know-more-btn {
    background: transparent;
    border: 1px solid #ff6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.know-more-btn:hover {
    background: rgba(255, 107, 107, 0.2);
}

.event-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.event-main:hover .event-image {
    transform: scale(1.02);
}

.event-details {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.event-details.expanded {
    max-height: 500px;
    padding: 2rem;
}

.event-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-details ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.event-details li {
    margin-bottom: 0.5rem;
}

.event-link-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.event-link-btn:hover {
    transform: translateY(-3px);
}

.previous-events {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.previous-event {
    width: 35%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.previous-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.prev-event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.previous-event h3 {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}
/* Upload Page Styles */
.upload-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.upload-slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.upload-slideshow .slide.active {
    opacity: 1;
}

.upload-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 2rem;
    position: relative;
}

#upload-form {
    background: rgba(0, 0, 0, 0.85);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

#upload-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.photo-upload-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.photo-upload-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ff8e53;
}

.file-info {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #ccc;
}

.add-photo-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-photo-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.submission-info {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #aaa;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    background: rgba(0, 0, 0, 0.85);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
}

#contact-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ff8e53;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item address {
    font-style: normal;
    line-height: 1.6;
}





/* Responsive Styles */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1.2rem;
    }
    
    .intro-container {
        flex-direction: column;
    }
    
    .logo-box {
        margin-bottom: 2rem;
    }
    
    .carousel-btn {
        display: block;
    }
    
    .gallery-item {
        width: 250px;
        height: 150px;
    }
    
    .club-item {
        width: 100px;
    }
    
    .club-logo {
        width: 80px;
        height: 80px;
    }

  
/* Responsive Styles for Members Page */
    .members-section {
        padding: 5rem 1rem 3rem;
    }
    
    .tabs {
        justify-content: center;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .member-card {
        height: 300px;
    }
    .event-main {
        width: 90%;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .previous-events {
        flex-direction: column;
        align-items: center;
    }
    
    .previous-event {
        width: 90%;
    }
 .upload-container {
        margin: 4rem 1rem;
        padding: 1rem;
    }
    
    #upload-form {
        padding: 1.5rem;
    }
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-container {
        padding: 2rem;
    }

}