/* ==========================
   GLOBAL RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at top left, #1a0026, #000 65%);
    color: white;
}

/* ==========================
   HEADER & NAV
========================== */
header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 70px;
    z-index: 1000;
    border-bottom: 1px solid rgba(199, 125, 255, 0.25);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    max-height: 42px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #c77dff;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    padding: 5px 10px;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c77dff;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

nav a:hover {
    color: #c77dff;
}

nav a:hover::after {
    width: 100%;
}

/* ==========================
   DROPDOWN NAV
========================== */
.dropdown {
    position: relative;
}

.dropbtn {
    color: white;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 5px 10px;
    display: inline-block;
    transition: 0.3s;
}

.dropbtn:hover {
    color: #c77dff;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(199,125,255,0.2);
    border-radius: 8px;
    flex-direction: column;
    z-index: 999;
}

.dropdown-content a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: rgba(199,125,255,0.15);
    color: #c77dff;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* ==========================
   SECTIONS
========================== */
section {
    padding: 110px 12%;
}

h1 {
    font-size: 44px;
    color: #c77dff;
    margin-bottom: 20px;
}

h2 {
    color: #c77dff;
    margin-bottom: 20px;
}

p {
    line-height: 1.7;
    color: #ddd;
}

/* ==========================
   BUTTONS
========================== */
.btn {
    display: inline-block;
    padding: 11px 24px;
    background: linear-gradient(90deg, #c77dff, #7b2cbf);
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(199,125,255,0.5);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(199,125,255,0.8);
}

/* ==========================
   CARD GRID
========================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(199,125,255,0.2);
    border-radius: 14px;
    padding: 22px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(199,125,255,0.35);
}

/* ==========================
   STAFF CARDS
========================== */
.staff-card {
    text-align: center;
}

.staff-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 12px;
    background: #222;
}

.role {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* ==========================
   NEWS CARDS
========================== */
.news-title {
    text-align: center;
    font-size: 42px;
    color: #c77dff;
    margin-bottom: 10px;
}

.news-sub {
    text-align: center;
    color: #bbb;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.news-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-radius: 16px;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(199,125,255,0.2);
    transition: 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(199,125,255,0.35);
}

.news-date {
    color: #888;
    margin-bottom: 10px;
}

.news-heading {
    color: #c77dff;
    font-size: 24px;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 18px;
    color: #c77dff;
    font-weight: bold;
    text-decoration: none;
}

/* ==========================
   SOCIAL CARDS
========================== */
.social-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(199,125,255,0.2);
    border-radius: 14px;
    padding: 22px;
    transition: 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(199,125,255,0.35);
}

.social-card i {
    font-size: 28px;
    color: #c77dff;
}

.social-icon {
    width: 60px;
    /* adjust size as needed */
    height: 60px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* ==========================
   HERO SECTION
========================== */
section.hero {
    text-align: center;
    padding: 180px 12%;
}

section.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

section.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

section.hero .btn {
    font-size: 18px;
}

/* ==========================
   MERCH IMAGES
========================== */
.merch-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: url('https://via.placeholder.com/300x200') center/cover no-repeat;
    margin-bottom: 12px;
    transition: 0.3s;
}

.card:hover .merch-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(199,125,255,0.5);
}

/* ==========================
   FOOTER
========================== */
footer {
    text-align: center;
    padding: 40px 12%;
    background: rgba(0,0,0,0.7);
    margin-top: 60px;
    border-top: 1px solid rgba(199,125,255,0.2);
    color: #aaa;
}

/* ==========================
   SPONSOR CARDS
========================== */
.sponsor-card {
    text-align: center;
}

.sponsor-img {
    width: 120px;      /* smaller width */
    height: 120px;     /* smaller height */
    object-fit: contain; /* keeps logo proportions */
    margin: 0 auto 15px auto; /* center the image with spacing below */
    border-radius: 12px;
    background: #111;  /* subtle background for contrast */
    padding: 10px;     /* optional padding around logos */
    transition: transform 0.3s, box-shadow 0.3s;
}

.sponsor-card:hover .sponsor-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(199,125,255,0.4);
}

.sponsor-card h3 {
    margin-bottom: 10px;
    color: #c77dff;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
    header {
        padding: 15px 30px;
        flex-direction: column;
        gap: 12px;
    }

    section {
        padding: 80px 8%;
    }

    h1 {
        font-size: 36px;
    }

    .news-grid,
    .card-grid {
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .dropdown-content {
        position: static;
        border: none;
        border-radius: 0;
        background: transparent;
        min-width: auto;
    }

    .dropdown-content a {
        padding: 8px 0;
    }
}

/* ==========================
   MOBILE OPTIMIZATION
========================== */
@media (max-width: 768px) {
    
    /* Header */
    header {
        flex-direction: column;
        padding: 12px 18px;
        gap: 10px;
        text-align: center;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    
    nav a {
        margin: 0;
        font-size: 14px;
    }
    
    /* Sections spacing */
    section {
        padding: 70px 6%;
    }
    
    h1 {
        font-size: 30px;
        text-align: center;
    }
    
    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
        /* STACK CARDS */
        gap: 18px;
    }
    
    .card {
        padding: 18px;
    }
    
    /* Staff images */
    .staff-img {
        height: 160px;
    }
    
    /* Social icons */
    .icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    /* Hero section */
    section.hero {
        padding: 120px 6%;
    }
    
    section.hero h1 {
        font-size: 36px;
    }
    
    section.hero p {
        font-size: 16px;
    }
    
    /* News cards */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        font-size: 14px;
        padding: 30px 6%;
    }
}