/* Base */
body {
    background-color: #E7BE41;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: #FFE9A7;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 15px #FFE9A7;
    transition: 0.3s;
}
header:hover {
    box-shadow: 0 0 25px #FFBF00;
}

h1, h2, h3 {
    font-family: 'Baloo 2', cursive;
    color: #BA9420;
    text-shadow: 1px 1px 8px #FFE9A7;
}

/* Section */
section {
    background-color: #FEDF81;
    margin: 20px auto;
    width: 80%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px #FFE9A7;
    text-align: center;
    transition: all 0.3s;
}

/* Inputs */
input, select, textarea {
    width: 70%;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    border: 2px solid #BA9420;
    transition: 0.3s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 10px #FFE9A7;
    transform: scale(1.02);
}

/* Submit button */
input[type="submit"], button {
    background: #BA9420;
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}
input[type="submit"]:hover, button:hover {
    background: #FFBF00;
    box-shadow: 0 0 10px #FFE9A7;
}

/* Preview images */
#preview img {
    width: 100px;
    margin: 5px;
    border-radius: 10px;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {opacity:0; transform:scale(0.8);}
    to {opacity:1; transform:scale(1);}
}

/* Hidden */
.hidden { display: none; }

/* Dark mode */
.dark { background-color: #1e1e1e; color: #FFD700; }
.dark section { background-color: #2a2a2a; }
.dark h1, .dark h2, .dark h3 { color: #FFD700; }

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    color: #BA9420;
}