body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: white;
  color: gold;
}

.college-name {
  background: gold;
  color: white;
  text-align: center;
  padding: 0.5rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 2rem;
}

header .side-logo {
  width: 180px;
}

.typography {
  text-align: center;
}

.hero {
  position: relative;
  height: 80vh;
  color: rgb(0, 0, 0);
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

section {
  padding: 3rem 2rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: white;
  border: 1px solid gold;
  padding: 1rem;
  text-align: center;
}

.event-card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: gold;
  color: white;
  text-decoration: none;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
}

@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

footer {
  background: gold;
  color: white;
  text-align: center;
  padding: 1rem;
}
/* College Name Bar */
.college-name-bar {
    /*background-color: white;*/
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(256,256,256, 0.6);
    z-index: 1000;
    position: relative;

    /* Shimmer effect */
    background-image: linear-gradient(
        to right,
        black 0%,
        gold 50%,
        black 100%
    );
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 3s linear infinite, fadeDown 1.2s ease forwards;
    opacity: 0; /* hidden before fadeDown animation runs */
}

/* Shimmer keyframes */
@keyframes shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Fade down entrance */
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Navigation Bar Styles */
.main-nav {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: gold;
}
/* Top Navigation */
.top-nav {
    background-color: white;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-left img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: gold;
}

/* Top Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000; /* stays above other elements */
    background-color: white;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.nav-container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: gold;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: gold;
}
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    padding: 10px 20px; /* reduced from 40px */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box; /* ensures padding doesn't push it beyond screen */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* keeps everything within a safe width */
    margin: 0 auto; /* centers the content */
    width: 100%;
}

.event-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: gold;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* prevents overflow if space is tight */
}

.main-nav a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap; /* keeps each link in one line */
}

.main-nav a:hover {
    color: gold;
}
.college-name-bar {
    background-color: black;
    color: gold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* space between logo and text */
    padding: 15px 20px; /* taller padding */
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.college-name-bar img {
    height: 50px; /* adjust as needed */
    width: auto;
}
.contact-section {
    background-color: rgba(178, 170, 170, 0.85); /* keeps it clean */
    color: black; /* text color */
    padding: 60px 20px; /* big padding for height */
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-section a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    color: gold;
}
.college-name-bar {
    background-color: black;
    color: gold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}

.college-name-bar img {
    height: 70px; /* bigger to match taller bar */
    width: auto;
}

.college-name-text {
    line-height: 1.4; /* space between lines */
}
.college-name-bar {
    background-color: black;
    color: gold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px; /* more padding for height */
    font-size: 1.5rem;  /* bigger font */
    font-weight: bold;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.college-name-bar img {
    height: 100px; /* bigger logo */
    width: auto; /* keeps logo proportional */
}

.college-name-text {
    line-height: 1.5; /* better spacing for 3 lines */
}
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px; /* same as header height */
}
.coordinator-section {
  background-color: rgba(178, 170, 170, 0.85);
  padding: 60px 20px;
  text-align: center;
}

.coordinator-section h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 40px;
}

/* Horizontal scroll container */
.coordinator-slider {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.coordinator-track {
  display: inline-flex; /* horizontal row */
  gap: 20px;
}

/* Flip card container */
.coordinator-card {
  background: transparent;
  width: 220px;
  height: 300px;
  perspective: 1000px;
  display: inline-block;
}

.coordinator-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.coordinator-card:hover .coordinator-card-inner {
  transform: rotateY(180deg);
}

/* Front and back sides */
.coordinator-card-front,
.coordinator-card-back {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 2px solid gold;
  border-radius: 12px;
  backface-visibility: hidden;
}

.coordinator-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.coordinator-card-back {
  background: #f9f9f9;
  color: black;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.coordinator-card-back h4 {
  margin: 0 0 10px 0;
  color: gold;
}

.coordinator-card-back p {
  margin: 0;
  font-weight: bold;
}

/* Optional: hide scrollbar */
.coordinator-slider::-webkit-scrollbar {
  display: none;
}


.alumni-section {
    background-color: whrgba(178, 170, 170, 0.85);
    padding: 60px 20px;
    text-align: center;
}

.alumni-section h2 {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 40px;
}

.alumni-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.alumni-track {
    display: inline-flex;
    animation: scrollAlumni 20s linear infinite;
}

.alumni-card {
    background: #f9f9f9;
    border: 2px solid gold;
    border-radius: 12px;
    padding: 20px;
    margin: 0 15px;
    min-width: 220px;
    transition: transform 0.3s;
}

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

.alumni-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.alumni-card p {
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.alumni-card span {
    color: gray;
    font-size: 0.9rem;
}

@keyframes scrollAlumni {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Club & Event Logos */
.header-logo {
    height: 100px;  /* Increase size from previous value */
    width: auto;
}

.header-logo.event {
    height: 100px;  /* Event logo */
    width: auto;
}

/* Adjust typography section if needed */
.header-title {
    font-size: 2.2rem;
}
/* Background Video Styling */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2; /* Behind everything */
}

/* Dark Overlay for readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness */
    z-index: -1; /* Between video and content */
}

/* Main Content Layer */
.content {
    position: relative;
    z-index: 1; /* Above overlay */
}

/* Example section background transparency */
section {
    background: rgba(178, 170, 170, 0.85); /* Slightly transparent white */
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}
#countdown div {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    min-width: 90px;
    position: relative;
    overflow: hidden;
}

#countdown span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    transform-origin: bottom;
    animation: none;
}

.flip {
    animation: flip 0.5s ease forwards;
}

@keyframes flip {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(-90deg); }
    100% { transform: rotateX(0); }
}
#countdown {
    font-size: 3rem;
    font-weight: bold;
    color: gold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* space between numbers and colons */
    font-family: 'Orbitron', sans-serif; /* futuristic font */
}

#countdown span {
    display: inline-block;
    min-width: 50px;
    text-align: center;
    transform-origin: bottom;
}

.flip {
    animation: flip 0.5s ease forwards;
}

@keyframes flip {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(-90deg); }
    100% { transform: rotateX(0); }
}



  /* ============================ */
/* ✅ PAMPHLET DOWNLOAD GRID   */
/* ============================ */
.pamphlet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
  }
  
  .pamphlet-card {
    background-color: #fffefe;
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 1rem;
    width: 220px;
    transition: transform 0.3s ease;
  }
  
  .pamphlet-card:hover {
    transform: scale(1.05);
  }
  
  .pamphlet-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
  }
  
/* ============================ */
/* ✅ EVENT CARDS              */
/* ============================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-card {
  padding: 1.5rem;
  border: 2px solid #ffd700;
  border-radius: 10px;
  background-color: #fcfcfc;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.event-card:hover {
  transform: scale(1.05);
  background-color: #ffffff;
}

.event-desc {
  display: none;
  color: #f0c040;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.event-desc.show-desc {
  display: block;
}

.event-btn {
  display: inline-block;
  margin-top: 0.7rem;
  color: rgb(255, 255, 255);
  background-color: #ffd700;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.event-btn:hover {
  background-color: #e6c200;
  color: rgb(251, 248, 248);
}

/* ============================ */
/* ✅ SECTION STYLING          */
/* ============================ */
section {
  padding: 4rem 2rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
/* BUS SECTION */
.bus-section {
  padding: 4rem 2rem;
  background-color: #fdfcfc;
  color: #ffd700;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 10px #ffd700;
}

/* Grid layout */
.bus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bus Card */
.bus-card {
  background-color: #f6f6f6;
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.bus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.bus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
  color: #ffd700;
}

.bus-card p {
  font-size: 0.95rem;
  color: #0b0b0b;
}

/* Link Button */
.bus-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background-color: #ffd700;
  color: #fdfdfd;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.bus-link:hover {
  box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
}
/* Contact Us Section - Main Page */
.contact-section {
  padding: 50px 20px;
  background-color: rgba(178, 170, 170, 0.85);
  text-align: center;
  font-size: 18px;
  color: white; /* Black font */
}

.contact-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info p {
  margin: 10px 0;
  font-weight: bold;
}

/* new about section */

/* Container for 3 columns */
.about-columns {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
  flex-wrap: wrap; /* responsive for small screens */
  padding: 50px 20px;
  background-color: rgba(256, 256, 256, 0.70);
  padding: 2px;
  border-radius:18px;
}

/* Each column */
.about-column {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  color: #000; /* adjust depending on bg */
}

/* Circle logo */
.logo-circle {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.logo-circle img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.about-column h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
}

.about-column p {
  font-size: 1rem;
  line-height: 1.6;
}

