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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: #0d1b2a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
a:hover {
  color: #5ce1e6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: #e0e0e0;
}

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

.section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.header {
  background: #ffffff;
  position: relative;
  z-index: 200;
}
.header__container {
  padding: 15px;
}
@media (min-width: 768px) {
  .header__container {
    padding: 15px 75px;
  }
}
.header__logo-link {
  display: block;
  line-height: 0;
}
.header__logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .header__logo {
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    height: 60px;
  }
}

.hero {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.decorative-circle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.3s ease-out;
}
.decorative-circle.floating {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.decorative-circle--left.floating {
  animation-name: floatLeft;
}
.decorative-circle--top-right.floating {
  animation-name: floatTopRight;
}
.decorative-circle--bottom-right.floating {
  animation-name: floatBottom;
}
.decorative-circle--left {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 350px;
  left: -220px;
}
@media (min-width: 640px) {
  .decorative-circle--left {
    width: 400px;
    left: -350px;
  }
}
@media (min-width: 768px) {
  .decorative-circle--left {
    width: 550px;
    left: -380px;
  }
}
@media (min-width: 1024px) {
  .decorative-circle--left {
    width: 650px;
    left: -420px;
  }
}
@media (min-width: 1434px) {
  .decorative-circle--left {
    width: 750px;
    left: -375px;
  }
}
@media (min-width: 1920px) {
  .decorative-circle--left {
    width: 800px;
    left: -350px;
  }
}
@media (min-width: 2200px) {
  .decorative-circle--left {
    left: -300px;
  }
}
.decorative-circle--top-right {
  height: auto;
  top: -80px;
  width: 200px;
  right: -50px;
}
@media (min-width: 640px) {
  .decorative-circle--top-right {
    top: -60px;
    width: 250px;
    right: -120px;
  }
}
@media (min-width: 768px) {
  .decorative-circle--top-right {
    top: -40px;
    width: 300px;
    right: -100px;
  }
}
@media (min-width: 1024px) {
  .decorative-circle--top-right {
    top: -50px;
    width: 350px;
    right: -120px;
  }
}
@media (min-width: 1280px) {
  .decorative-circle--top-right {
    top: -60px;
    width: 400px;
    right: -130px;
  }
}
.decorative-circle--bottom-right {
  bottom: 0;
  right: calc(50% - 150px);
  transform: translateX(50%);
  height: auto;
  width: 200px;
  margin-bottom: -100px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .decorative-circle--bottom-right {
    width: 250px;
    margin-bottom: -125px;
  }
}
@media (min-width: 1024px) {
  .decorative-circle--bottom-right {
    width: 300px;
    margin-bottom: -150px;
  }
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .countdown {
    gap: 4rem;
  }
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
}
@media (min-width: 768px) {
  .countdown__item {
    min-width: 100px;
  }
}
@media (min-width: 1024px) {
  .countdown__item {
    min-width: 120px;
  }
}
.countdown__number {
  font-family: "Roboto", "Arial Black", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
  order: 2;
}
@media (min-width: 768px) {
  .countdown__number {
    font-size: 4rem;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .countdown__number {
    font-size: 5.5rem;
  }
}
.countdown__label {
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0.5rem;
  order: 1;
}
@media (min-width: 768px) {
  .countdown__label {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    order: 2;
  }
}

.event-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: #5ce1e6;
  color: #0d1b2a;
  padding: 0.5rem 2rem;
  border-radius: 12px;
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .event-badge {
    flex-direction: row;
    gap: 0.75rem;
    font-size: 1.25rem;
    padding: 0.75rem 3rem;
    border-radius: 9999px;
  }
}
.event-badge__divider {
  display: none;
  width: 2px;
  height: 20px;
  background: #0d1b2a;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .event-badge__divider {
    display: block;
  }
}
.event-badge__location, .event-badge__date {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.btn:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.btn--primary:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}
.btn--primary {
  background: #00d4ff;
  color: #0d1b2a;
}
.btn--primary:hover {
  background: #5ce1e6;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.btn--outline:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}
.btn--outline {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}
.btn--outline:hover {
  background: #00d4ff;
  color: #0d1b2a;
}

.footer {
  padding: 15px 0;
  background: #ffffff;
  position: relative;
  z-index: 10;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 15px;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    align-items: center;
    padding: 0 75px;
  }
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo {
  height: 100px;
  width: auto;
}
.footer__social {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__social {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333333;
  text-decoration: none;
  transition: opacity 150ms ease-in-out;
}
.footer__social-link:hover {
  opacity: 0.7;
  color: #333333;
}
.footer__social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .footer__social-link img {
    width: 26px;
    height: 26px;
  }
}
.footer__social-text {
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}
@media (min-width: 768px) {
  .footer__social-text {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-accent {
  color: #00d4ff;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #a0a0a0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatLeft {
  0%, 100% {
    transform: translateY(-50%) translate(0, 0);
  }
  25% {
    transform: translateY(-50%) translate(5px, -8px);
  }
  50% {
    transform: translateY(-50%) translate(-3px, -15px);
  }
  75% {
    transform: translateY(-50%) translate(8px, -5px);
  }
}
@keyframes floatTopRight {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-8px, 5px);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  75% {
    transform: translate(-12px, 3px);
  }
}
@keyframes floatBottom {
  0%, 100% {
    transform: translateX(50%) translate(0, 0);
  }
  25% {
    transform: translateX(50%) translate(5px, -5px);
  }
  50% {
    transform: translateX(50%) translate(-5px, -10px);
  }
  75% {
    transform: translateX(50%) translate(3px, -3px);
  }
}
.animate-fade-in {
  animation: fadeIn 300ms ease-in-out ease-in-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .page-floating1 .hero__content {
    font-size: 0;
  }
  .page-floating1 .event-badge--location,
  .page-floating1 .event-badge--date {
    display: inline-flex;
    align-items: center;
    background: #5ce1e6;
    color: #0d1b2a;
    padding: 0.75rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    vertical-align: middle;
  }
  .page-floating1 .event-badge--location {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 0.75rem;
  }
  .page-floating1 .event-badge--date {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 0.75rem;
    margin-left: 0;
  }
  .page-floating1 .event-badge--location::after {
    content: "";
    width: 2px;
    height: 20px;
    background: #0d1b2a;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
@media (max-width: 770px) {
  .page-floating1 .countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .page-floating1 .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-floating1 .event-badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 2rem;
    margin: 0.5rem auto;
    width: auto;
  }
  .page-floating1 .event-badge--location {
    background: #5ce1e6;
    color: #0d1b2a;
    border-radius: 24px;
  }
  .page-floating1 .event-badge--date {
    background: #ffffff;
    color: #0d1b2a;
    border-radius: 24px;
  }
}

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