/*
Theme Name:   Twenty Twenty-One Child
Theme URI:    https://wordpress.org/themes/twentytwentyone/
Description:  Child theme for Twenty Twenty-One
Author:       Nama Kamu
Author URI:   https://example.com
Template:     twentytwentyone
Version:      1.0.0
*/

/* Tambahan style */

.alignwide{
max-width: 100% !important;
}

#preloader {
  position: fixed;
  z-index: 9999;
  background: linear-gradient(135deg, #f0f4ff, #d6e4ff);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

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

.logo {
  width: 100%;
  height: 300px;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 20px;
}

.loading-text {
  font-size: 1.5rem;
  color: #3a3a3a;
  animation: blink 1.5s linear infinite;
}

/* Animasi Logo */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Animasi Teks */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
