@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2a2416 0%, #1a1410 50%, #0f0d0a 100%);
    color: #000000;
}

/* Header & Navigation */
header {
    background: transparent;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

nav {
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(15px);
   
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.logo-icon {
    width: 28px;
    height: 28px;
   
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    
    font-size: 0.65rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand {
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
}

.logo-text .tagline {
    font-size: 0.6rem;
    color: #a0a0a0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #F2F0F7;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #756BB1;
}

.cta-button {
    background: linear-gradient(135deg, #CBC9E2 0%, #756BB1 100%);
    color: #1a1410;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('bg.gif') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.badge {
    display: inline-block;
    background: rgba(15, 15, 15, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #9E9AC8;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.badge::before {
    content: '✦ ';
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Orbitron', sans-serif;
    color: transparent;
    background: linear-gradient(120deg, #F2F0F7, #CBC9E2, #9E9AC8, #CBC9E2, #CBC9E2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 10s ease infinite;
}

.hero h1 .highlight {
    color: inherit;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1rem;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero p strong {
    color: #F2F0F7;
    font-weight: 600;
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    color: #CBC9E2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* About/Stats Section */
.about-section {
    background: #000000;
    padding: 4rem 2rem;
    position: relative;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(158, 154, 200, 0.281);
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;

}

.about-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.college-logos {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    min-width: 80px;
}

.college-logos img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color:#ffffff
}

.about-text h2 .highlight {
    color: #54278F;
}

.about-text p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(158, 154, 200, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #756BB1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    border-color: #756BB1;
    background: rgba(158, 154, 200, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #CBC9E2;
    margin-bottom: 0.3rem;
}

.stat-description {
    font-size: 0.85rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content {
        gap: 1rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-container {
        border-radius: 20px;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        gap: 0.7rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-description {
        font-size: 0.75rem;
    }

    .college-logos {
        min-width: 60px;
    }

    .college-logos img {
        width: 50px;
        height: 50px;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.2rem;
    }
}

/* Events Section */
.events-section {
    background: #000000;
    padding: 4rem 2rem;
    position: relative;
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F2F0F7;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color:#ffffff
}

.section-header h2 .highlight {
    color: #756BB1;
}

.section-header p {
    color: #a0a0a0;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    background: rgba(20, 20, 20, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(158, 154, 200, 0.281);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.event-card:hover {
    background: rgba(20, 20, 20, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.event-cover {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.event-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-cover img {
    transform: scale(1.05);
}

.event-calendar {
    display: none;
}

.event-calendar-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.event-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem;
}

.event-badge {
    display: inline-block;
    background: rgba(84, 39, 143, 0.372);
    border: 1px solid #756BB1;
    color: #F2F0F7;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.event-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.event-timer {
    font-size: 0.8rem;
    color: #9E9AC8;
    margin-top: 0.5rem;
    font-weight: 600;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    min-width: auto;
    padding: 0 2rem 2rem 2rem;
}

.btn-event {
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-register {
    background: linear-gradient(135deg, #54278F 0%, #756BB1 100%);
    color: #1a1410;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(84, 39, 143, 0.3);
}

.btn-rules {
    background: transparent;
    color: #756BB1;
    border: 2px solid rgba(158, 154, 200, 0.5);
}

.btn-rules:hover {
    border-color: #756BB1;
    background: rgba(158, 154, 200, 0.1);
}

/* Responsive Events */
@media (max-width: 1024px) {
    .events-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .event-cover {
        height: 220px;
    }

    .event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .events-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-cover {
        height: 200px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-actions {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .event-title {
        font-size: 1.3rem;
    }

    .event-description {
        font-size: 0.9rem;
    }

    .btn-event {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .events-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-cover {
        height: 180px;
    }

    .event-content {
        padding: 1.2rem;
    }

    .event-actions {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .event-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.8rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-description {
        font-size: 0.85rem;
    }

    .event-timer {
        font-size: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        gap: 1.5rem;
        padding: 0.7rem 1rem;
        border-radius: 30px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }

    .logo-text .brand {
        font-size: 0.65rem;
    }

    .logo-text .tagline {
        font-size: 0.5rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    nav {
        gap: 0.8rem;
        padding: 0.6rem 0.8rem;
        border-radius: 25px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 0.6rem;
        gap: 0.4rem;
    }

    .nav-menu {
        display: none;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    color: #d1d5db;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 4rem 2rem 1.5rem;
    border-top: 1px solid #1f2937;
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.triangle-logo {
    color: #756BB1;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #756BB1;
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.highlight-gold {
    color: #756BB1;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #4b5563;
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #756BB1;
    border-color: #756BB1;
    background: rgba(158, 154, 200, 0.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-icon {
    color: #756BB1;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #756BB1;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
