/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url("web bak.jpg");
    color: #333;
    line-height: 1.6;
}
/* Center the logo at the top */
.logo-container {
    display: block;        /* Makes the div take full width */
    width: 100%;
    text-align: center;       /* Centers the inline element (image) */
    padding: 20px 0;
    background-color:transparent;   /* Optional */
}

.logo {
    width: 800px;             /* Adjust logo size */
    height: auto;
}
.tlogo {
    width: 400px;             /* Adjust logo size */
    height: auto;
}


.date{
    font-size: 2rem;
    font-weight: bold;
    color:black;
    justify-content: center;
    display: flex;
}
.year{
    font-size: 2rem;
    font-weight: bold;
    color:yellow;
    justify-content: center;
    display: flex;
   
}
.glowing-button {
  padding: 24px 12px;
  background:rgba(255, 255, 255, 0.25);
  color:black;
  border: 2px solid  #f7c600;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
  transition: all 0.3s ease;
  justify-content: center;
  display: flex;
}

.glowing-button:hover {
  background:#f7c600;
  color: #000;
  box-shadow: 0 0 10px #f7c600, 0 0 20px #f7c600, 0 0 40px #f7c600;
  transition: all 0.5s ease; 
  transform: translateY(-8px) scale(1.02);
}

.event-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */


p, ol {
    color:black;
}
.number{
    color:#083b6e;
    font-weight: bold;
}

strong {
    color: #000000;
}

/* Hero Section */

.presents { 
    font-style: italic;
    color: black; 
    margin: 10px 0;
    display:flex;
    justify-content: center;
 }
.reg-btn:hover { background: #a29bfe; transform: scale(1.05); }

/* Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.about{
    background: #f7c600;
    color: #083b6e;
    font-weight: bold;
    font-size: 22px;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
}
.section-heading {
    color:black;
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2rem;
}

/* Event Grid Layout */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.event-card {
  padding: 24px;
  background-color:rgba(255, 255, 255, 0.25);
  color:white;
  border: 2px solid yellow;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
  transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    background:white;
    backdrop-filter: blur(25px);
    box-shadow: 0 0 10px white, 0 0 20px white, 0 0 40px white;
    border: transparent;
}

.event-card.non-tech {
    border-bottom-color: #f7c600;
}

.event-title {
    background: #f7c600;
    color: #083b6e;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
}
.staff{
    background: #f7c600;
    color: #083b6e;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 6px;
    display:block;
}

.event-description {
    font-size: 1rem;
    color:black;
    margin-bottom: 15px;
}

.event-details {
    font-weight: bold;
    font-size: 0.85rem;
    color:blue;
}

/* Contact Styling */
.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: liquidPulse 8s ease-in-out infinite;
}

@keyframes liquidPulse {
    0%, 100% { 
        box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
        backdrop-filter: blur(20px);
    }
    50% { 
        box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
        backdrop-filter: blur(25px);
    }
}

.contacts-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.coord-box {
  padding: 24px;
  background: transparent;
  color: #f7c600;
  border: 2px solid #f7c600;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #f7c600, 0 0 10px #f7c600;
  transition: all 0.3s ease;
  display: inline;
  text-align: left;
}

.coord-box:hover {
    transform: translateY(-8px) scale(1.02);
    background:white;
    backdrop-filter: blur(25px);
    box-shadow: 0 0 10px white, 0 0 20px white, 0 0 40px white;
    border: transparent;
}

.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
}
.link{
    background: #f7c600;
    color: #083b6e;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 6px;
    display:flex;
}
.contact{
    background: #f7c600;
    color: #083b6e;
    font-weight: bold;
    font-size: 30px;
    padding: 5px 10px;
    border-radius: 6px;
    display:ruby-base;
}
