:root {
  --pink: #f14e95;
  --bg: #0a0a0a;
  --shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--bg);
  color: white;
  /* min-height dihapus karena sudah diatur per section */
}

h1, h2, h3, .font-aesthetic {
  font-family: 'Sacramento', cursive;
  color: var(--pink);
}

/* --- HERO SECTION --- */
.hero-section {
    width: 100%;
    height: 100vh;
    /* Background Image dari Unsplash */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.btn-pink {
    background-color: var(--pink);
    color: white;
    border: none;
    transition: transform 0.3s;
}

.btn-pink:hover {
    background-color: #d63d80;
    transform: scale(1.05);
    color: white;
}
/* --- MEMPELAI SECTION --- */
/* Utilitas Warna Teks */
.text-pink {
    color: var(--pink);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Kotak Pemotong Foto (Cropping) */
.img-crop {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Membuat lingkaran */
    border: 5px solid var(--pink); /* Bingkai warna pink */
    overflow: hidden;
    position: relative;
}

/* Mengatur agar gambar pas di tengah lingkaran */
.img-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto tidak akan gepeng */
    object-position: center;
}

/* --- ACARA SECTION --- */

/* Kartu dengan efek transparan (Glassmorphism) */
.custom-card {
    background-color: rgba(255, 255, 255, 0.05) !important; /* Transparan 5% */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Border tipis */
    backdrop-filter: blur(5px); /* Efek blur di belakang kartu */
    border-radius: 15px !important;
    color: white;
    transition: transform 0.3s;
}

.custom-card:hover {
    transform: translateY(-10px); /* Efek naik dikit pas di-hover */
    border-color: var(--pink) !important;
}

/* Garis pemisah pink */
.border-pink {
    border-color: var(--pink) !important;
    opacity: 1;
}

/* Tombol Outline Pink */
.btn-outline-pink {
    color: var(--pink);
    border: 2px solid var(--pink);
    transition: all 0.3s;
}

.btn-outline-pink:hover {
    background-color: var(--pink);
    color: white;
}

/* --- FORM & GIFT SECTION --- */

/* Input Form Gelap */
.form-dark {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.form-dark:focus {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--pink) !important;
    box-shadow: none !important;
}

/* Mengubah warna placeholder jadi abu muda */
.form-dark::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mengubah icon dropdown select */
select.form-dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}