/* Reset y variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --white: #FFF;
  --black: #000;
  --foreground: #111;
  --muted-foreground: #666;
  --background: #F2F3F0;
  --card: #FFF;
  --primary: #FF8400;
  --gold: #C5A028;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--black);
  color: var(--foreground);
}

/* Landing Page Container */
.landing-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--black);
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

/* Fade-in Animation */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Logo Container */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  background-color: var(--black);
  border-radius: 25px;
  animation: fade-in 1.2s ease-out forwards;
}

/* Logo Image - Reemplazar con tu logo */
.logo-image {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

/* Logo Text Fallback (si no hay imagen) */
.logo-text {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: 8px;
}

/* Social Container */
.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-bottom: 48px;
}

/* Social Links */
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--gold);
}

/* Social Icons */
.social-icon {
  width: 22px;
  height: 22px;
}

/* Responsive */
@media (width <= 768px) {
  .landing-page {
    padding: 0 20px;
  }

  .logo-container {
    width: 200px;
    height: 200px;
    border-radius: 20px;
  }

  .logo-image {
    max-width: 150px;
    max-height: 150px;
  }

  .logo-text {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .social-container {
    padding-bottom: 32px;
  }
}
