body {
    font-family: 'Yusei Magic', sans-serif;
    background-color: #fffafc;
    margin: 0;
    padding: 2rem;
    color: #444;
    background-image: radial-gradient(circle at top left, #ffe6f0 0%, #fffafc 100%);
}

#contact {
    max-width: 650px;
    margin: auto;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(255, 153, 204, 0.2);
    border: 2px dashed #ffcce0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "🌸";
    position: absolute;
    font-size: 3rem;
    top: -1rem;
    left: -1rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

h2.major {
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 2rem;
    color: #ff66a3;
    position: relative;
}

.fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.field {
    flex: 1 1 100%;
}

.field.half {
    flex: 1 1 48%;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #cc3399;
}

input[type="text"],
textarea,
select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ffcce0;
    border-radius: 10px;
    background-color: #fff0f5;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ff99cc;
    background-color: #fff8fb;
    box-shadow: 0 0 5px rgba(255, 153, 204, 0.5);
}

textarea {
    min-height: 120px;
}

.actions {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.actions input {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.primary {
    background-color: #ff66a3;
    color: #fff;
}

.primary:hover {
    background-color: #ff3385;
}

input[type="reset"] {
    background-color: #ffe6f0;
    color: #cc3399;
}

input[type="reset"]:hover {
    background-color: #ffd6eb;
}

#custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 204, 229, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#custom-alert.show {
    display: flex;
}

.alert-content {
    background: #fff0f8;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #ffcce0;
    box-shadow: 0 5px 15px rgba(255, 153, 204, 0.3);
}

.alert-content button {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #ff99cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.alert-content button:hover {
    background: #ff66a3;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.icons a {
    font-size: 1.6rem;
    color: #cc66aa;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icons a:hover {
    color: #ff66a3;
    transform: scale(1.1);
}

.cute-button {
    background-color: #ffb6c1;
    color: white;
    font-weight: bold;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Yusei Magic', sans-serif;
}

.cute-button:hover {
    background-color: #ff8fab;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #fffafc;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    font-family: 'Yusei Magic', sans-serif;
    line-height: 1.6;
}

.popup-box h2 {
    color: #ff69b4;
    margin-top: 0;
}

ul.icons {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0;
}

ul.icons li a i {
  font-size: 2rem;
  color: #ff69b4;
  transition: transform 0.2s ease, color 0.2s ease;
}

ul.icons li a i:hover {
  transform: scale(1.2);
  color: #ff1493;
}


