/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #7b0f15;
  --primary-dark: #5a0a0f;
  --primary-light: #a31d24;
  --secondary: #d4af37;
  --secondary-dark: #b8860b;
  --secondary-light: #e5c363;
  --accent: #b8860b;
  --bg-light: #faf9f6;
  --bg-cream: #fffdd0;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --white: #fff;
  --glass: #ffffff1a;
  --glass-border: #fff3;
  --shadow: 0 10px 30px #0000001a;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

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

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Playfair Display, serif;
  font-weight: 700;
}

a {
  color: inherit;
  transition: var(--transition);
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: .5rem 0;
  font-size: .85rem;
}

.top-bar-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.top-bar-left {
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  display: flex;
}

.top-bar-left span {
  opacity: .9;
}

.social-links {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.social-links a {
  transition: var(--transition);
  opacity: .9;
  align-items: center;
  display: flex;
}

.social-links a:hover {
  opacity: 1;
  transform: scale(1.1);
}

header {
  background: var(--white);
  z-index: 1000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px #0000000d;
}

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

.logo-container {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.logo-container img {
  height: 60px;
}

.logo-text {
  color: var(--primary);
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  gap: 2rem;
  display: flex;
}

.nav-links li a {
  color: var(--text-dark);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
}

.nav-links li a:hover, .nav-links li a.active {
  color: var(--primary);
}

.nav-links li a:after {
  content: "";
  background: var(--secondary);
  width: 0;
  height: 2px;
  transition: var(--transition);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links li a:hover:after, .nav-links li a.active:after {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  border-radius: 5px;
  padding: .8rem 1.5rem;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #7b0f154d;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  border-radius: 5px;
  padding: .8rem 1.5rem;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #d4af374d;
}

.hero {
  background: var(--bg-light);
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  z-index: 2;
  pointer-events: none;
  background: #0006;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 4px 25px #0009;
  margin-bottom: 1.5rem;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  color: #fff;
  text-shadow: 0 2px 10px #00000080;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.hero-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h1, .section-title h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-title .divider {
  background: var(--secondary);
  width: 80px;
  height: 4px;
  margin: 0 auto;
}

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

.event-card {
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: 15px;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-card-img {
  height: 250px;
  overflow: hidden;
}

.event-card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

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

.event-card-content {
  padding: 2rem;
}

.event-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.event-meta {
  color: var(--text-muted);
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  display: flex;
}

.event-meta span {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.sponsors-rail {
  align-items: center;
  gap: 4rem;
  padding: 2rem 0;
  display: flex;
  overflow: hidden;
}

.sponsor-logo {
  filter: grayscale();
  opacity: .6;
  transition: var(--transition);
  max-width: 150px;
}

.sponsor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
  display: grid;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo span {
  font-family: Playfair Display, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: .8rem;
}

.footer-links ul li a {
  color: #ffffffb3;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  color: #ffffff80;
  border-top: 1px solid #ffffff1a;
  padding-top: 2rem;
  font-size: .9rem;
}

.form-container {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.grid-form {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  display: grid;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: .5rem;
  font-weight: 500;
  display: block;
}

.form-control {
  width: 100%;
  transition: var(--transition);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .8rem 1rem;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px #7b0f151a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: .6s ease-out forwards fadeInUp;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: 1s linear infinite spin;
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-content {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hero {
    text-align: center;
    flex-direction: column;
    min-height: auto;
    padding: 4rem 1rem;
  }

  .hero:after {
    background: #0006;
  }

  .hero h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
  }

  .hero p {
    margin: 0 auto 2rem;
    font-size: 1.2rem;
  }

  .hero-image {
    order: -1;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
    position: relative;
    top: 0;
    right: 0;
  }

  .hero-image img {
    border-radius: 20px;
  }

  .grid-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/