* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Gotham Screen Smart';
  src: local('Gotham Screen Smart Book'), local('Gotham-Screen-Smart-Book'),
       url('./fonts/GothamSSm-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #121212;
  min-height: 100vh;
  width: 100%;
  font-family: 'Gotham Screen Smart', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

.main {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.menu {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

h1.heading {
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2rem;
}

label {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.5rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  margin-bottom: 1rem;
  outline: none;
  font-size: 1rem;
  color: white;
  padding: 12px;
  font-family: 'Gotham Screen Smart', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}
input:focus, select:focus, textarea:focus {
    border-color: #2BB1FF;
    box-shadow: 0 0 0 3px rgba(43, 177, 255, 0.2);
}

input[type="file"] {
  background: #333;
  padding: 10px;
  font-size: 0.9rem;
  color: #ccc;
}
input[type="file"]::file-selector-button {
  font-family: 'Gotham Screen Smart', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #555;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s;
}
input[type="file"]::file-selector-button:hover {
  background-color: #2BB1FF;
}

textarea {
  height: 120px;
  resize: vertical;
}

.input-group > input, .input-group > textarea {
    margin-bottom: 10px;
}

.inline-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 1rem;
}


.country-code-input {
    width: 80px;
    flex: 0 0 80px;
    margin-bottom: 0; 
}

.phone-number-input {
    flex-grow: 1;
    width: auto;
    margin-bottom: 0;
}

.divider {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 1.5rem 0;
}

.customization-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.form-group {
    flex: 1;
}

button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  transition: background 400ms, transform 200ms;
  color: #fff;
  background-color: #2BB1FF;
  padding: 1rem;
  font-family: 'Gotham Screen Smart', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  outline: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5rem;
}
button:hover {
  transform: translateY(-2px);
  background-color: rgba(43, 177, 255, 0.9);
}

span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.image-container {
    width: 100%;
    max-width: 500px;
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, opacity 0.7s ease, padding 0.7s ease;
}
.image-container.visible {
    opacity: 1;
    max-height: 1000px;
}

#img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}
.action-buttons button {
    margin-top: 0;
    font-size: 0.9rem;
    background-color: #333;
    color: #eee;
}
.action-buttons button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    .menu, .image-container {
        padding: 1.5rem;
    }
    h1.heading {
        font-size: 1.5rem;
    }
}