.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff0f6 0%, #f9f6ff 100%);
  font-family: Arial, Helvetica, sans-serif;
  color: #4b2e2b;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-family: "Tangerine", cursive;
  font-size: 4em;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b48a78;
  margin-bottom: 0.2em;
  text-shadow: 0 2px 8px #fff6, 0 1px 0 #fff, 0 0 8px #ffd70044;
}

.gold {
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 8px #fff7, 0 0 4px #d4af3744;
}


h2 {
  font-family: "Tangerine", cursive;
  font-size: 2.2em;
  color: #d4af37;
  margin: 1.5em 0 0.5em 0;
  text-align: center;
  text-shadow: 0 1px 8px #fff7, 0 0 4px #d4af3744;
}


.upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px;
  background: #fff8fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px #b48a7822;
  padding: 2.5em 2em 2em 2em;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid #f3e2e7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  width: 100%;
}

input[type="text"] {
  padding: 0.7em 1em;
  border-radius: 8px;
  border: 1.5px solid #e7cfcf;
  font-size: 1.1em;
  background: #fff;
  color: #4b2e2b;
  transition: border 0.2s;
}
input[type="text"]:focus {
  border: 1.5px solid #b48a78;
  outline: none;
}


input[type="file"] {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  background: linear-gradient(90deg, #eec6d0 0%, #f9e6e6 100%);
  color: #d4af37;
  font-family: "Tangerine", cursive;
  font-size: 2em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.3em 1.2em;
  cursor: pointer;
  box-shadow: 0 2px 8px #b48a7822;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.2em;
  text-shadow: 0 1px 8px #fff7, 0 0 4px #d4af3744;
}
.file-label:hover {
  background: linear-gradient(90deg, #f9e6e6 0%, #eec6d0 100%);
  color: #b48a78;
}

.file-info {
  font-size: 1em;
  color: #b48a78;
  margin-bottom: 0.5em;
  font-family: Arial, Helvetica, sans-serif;
}


button[type="submit"] {
  background: linear-gradient(90deg, #eec6d0 0%, #f9e6e6 100%);
  color: #d4af37;
  font-family: "Tangerine", cursive;
  font-size: 2em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.3em 1.2em;
  cursor: pointer;
  box-shadow: 0 2px 8px #b48a7822;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  text-shadow: 0 1px 8px #fff7, 0 0 4px #d4af3744;
}
button[type="submit"]:hover {
  background: linear-gradient(90deg, #f9e6e6 0%, #eec6d0 100%);
  color: #b48a78;
}

button[disabled] {
  background: #ddd !important;
  color: #aaa !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 0 auto 2em auto;
  max-width: 1200px;
}

#gallery img {
  max-width: 220px;
  max-height: 220px;
  object-fit: cover;
  background: #fff8fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px #b48a7822;
  border: 1.5px solid #f3e2e7;
  transition: transform 0.2s, box-shadow 0.2s;
}
#gallery img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 24px #b48a7844;
  border-color: #eec6d0;
}