/* Import Google Font (Outfit) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

/* CSS Variables */
:root {
  --color-gold-primary: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #AA7C11;
  --color-bg-overlay: radial-gradient(circle, rgba(10, 10, 10, 0.55) 0%, rgba(5, 5, 5, 0.95) 100%);
  --color-card-bg: rgba(18, 18, 18, 0.65);
  --color-card-border: rgba(212, 175, 55, 0.2);
  --font-primary: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  color: #ffffff;
  overflow: hidden;
  background-color: #050505;
}

/* Background Wrapper */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay to darken background and guide focus */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-overlay);
  z-index: 2;
}

/* Main Container */
.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  z-index: 3;
}

/* Glassmorphism Card */
.card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  width: 100%;
  max-width: 640px;
  text-align: center;
  box-shadow: none;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Logo Styling */
.logo-container {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 330px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.1));
  transition: var(--transition-smooth);
  animation: float 6s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

/* Divider line */
.divider {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: 0 auto 10px auto;
}

/* Typography */
.title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold-light) 75%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin: 0 auto 20px auto;
  letter-spacing: 0.2px;
}

/* Social Media and Communication Section */
.social-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-light);
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold-primary);
  color: var(--color-gold-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

/* Footer / Copyright */
.footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
  .card {
    padding: 0 10px;
  }
  
  .title {
    font-size: 1.7rem;
  }
  
  .subtitle {
    font-size: 0.95rem;
  }
  
  .logo {
    max-width: 240px;
  }
}
