/* Standalone Pure Laravel CSS - Tailwind v4 CDN + Custom Phase 2 Design */

/* Custom CSS Variables (from @theme) */
:root {
  --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
--font-serif: 'DM Serif Display', serif;
--font-allura: 'Allura', cursive;
  --color-bg-main: #0B1E3F;
  --color-bg-secondary: #102A54;
  --color-overlay: rgba(0,0,0,0.6);
  --color-gold: #D4AF37;
  --color-gold-light: #F5D67B;
  --color-gold-glow: #FFD700;
  --color-text-main: #FFFFFF;
  --color-text-secondary: #E5E7EB;
  --color-text-muted: #9CA3AF;
  --color-gold-custom: var(--color-gold);
  --color-gold-light-custom: var(--color-gold-light);
}

/* Custom Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

.animate-fadeUp {
  animation: fadeUp 1s ease-out forwards;
}

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

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.gold-glow-hover:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.font-playfair {
  font-family: var(--font-serif);
}

/* Ensure Poppins font */
.font-['Poppins'] {
  font-family: var(--font-sans);
}

/* Gold color utilities (since CDN doesn't have custom colors) */
.bg-gold { background-color: var(--color-gold); }
.text-gold { color: var(--color-gold); }
.border-gold { border-color: var(--color-gold); }
.gold-glow { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
.bg-gold-light { background-color: var(--color-gold-light); }
.text-gold-light { color: var(--color-gold-light); }

/* Phase 3 Layout Styles */
.phase3-container {
  background: rgba(0,0,0,0.6);
  padding: 50px;
  border-radius: 24px;
  max-width: 1050px;
  width: 95%;
  margin: 0 auto;
}

.phase3-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.phase3-left {
  flex: 0 0 40%;
  text-align: center;
}

.phase3-right {
  flex: 1 1 60%;
}

.phase3-left h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--color-gold-glow);
  margin: 0 0 0.5rem 0;
}

.phase3-left .selamat {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  display: block;
}

.phase3-left .hari-raya {
  font-family: 'Allura', cursive;
  font-size: 3.2rem;
  display: block;
  font-weight: 400;
  word-wrap: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.phase3-left .tahun {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  display: block;
  letter-spacing: 2px;
}

.phase3-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.phase3-recipient {
  margin-top: 20px;
  color: var(--color-gold-light);
  font-size: 18px;
  font-family: var(--font-sans);
}

.phase3-recipient .kepada {
  font-weight: bold;
}

@media (max-width: 768px) {
  .phase3-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .phase3-left h1 {
    font-size: 32px;
  }
  
  .phase3-container {
    padding: 40px 24px;
  }
}
