:root {
  --font-heading: "RedRose", "Georgia", serif;
  --font-body: "OpenSans", "Helvetica Neue", sans-serif;
  --color-bg-start: #fdfdfc;
  --color-bg-end: #f4f1ed;
  --color-maroon: #6c2e2d;
  --color-maroon-light: #a34845;
  --color-maroon-pale: #f2e7e7;
  --text-primary: #3d2626;
  --text-secondary: #6e5c5c;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "RedRose";
  src: url("assets/fonts/RedRose-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url("assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url("assets/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url("assets/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg-end);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background: radial-gradient(
    circle at 50% 45%,
    var(--color-bg-start) 0%,
    var(--color-bg-end) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header {
  margin-bottom: 2rem;
}

.logo-wrapper {
  position: relative;
  display: inline-flex;
  padding: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(108, 46, 45, 0.1);
  box-shadow: 0 10px 30px rgba(108, 46, 45, 0.05);
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  animation: float 6s ease-in-out infinite;
}

.logo-wrapper:hover {
  background: #ffffff;
  border-color: rgba(108, 46, 45, 0.2);
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 15px 35px rgba(108, 46, 45, 0.08);
}

.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--color-maroon-pale);
  border: 1px solid rgba(108, 46, 45, 0.15);
  margin-bottom: 1.5rem;
}

.badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--color-maroon);
  border-radius: 50%;
  display: inline-block;
}

.badge-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--color-maroon);
  animation: ripple 2s infinite ease-out;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-maroon);
}

.title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.highlight {
  color: var(--color-maroon);
  font-weight: 400;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .logo {
    width: 75px;
    height: 75px;
  }
}
