/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f6f0;
  color: #333;
  line-height: 1.6;
}

h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  text-align: center;
  color: #f4c430;
}

h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #592b88;
  margin-bottom: 10px;
  text-align: center;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f4c430;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #caa10a;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(89, 43, 136, 0.85), rgba(89, 43, 136, 0.85));
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 70px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.countdown {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Event Details */
.details ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.details li {
  font-size: 18px;
  margin: 10px 0;
}

/* Speakers */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.speaker img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Register Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form button[type="submit"] {
  padding: 12px;
  background-color: #f4c430;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
}

form button[type="submit"]:hover {
  background-color: #caa10a;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkboxes label {
  display: inline-block;
  margin-right: 15px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* Contact Section */
.contact {
  text-align: center;
}

/* Footer */
footer {
  background-color: #592b88;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* === Social Icon Styles === */
.contact-links,
.dev-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dev-links a:hover {
  background-color: #f9f6f0;
}

.social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-icon:hover {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1.2);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero p,
  .countdown {
    font-size: 18px;
  }
}
