* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'inter', sans-serif;
  background: url('../media/images/bg.png') no-repeat center center scroll;
  background-size: cover;
  color: #fda4c6;
}

html, body {
  overflow-x: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  background: rgba(255, 197, 219, 0.364);
  gap: 20px;
  white-space: nowrap;
}

.logo {
  height: 55px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-shrink: 1;
}

.nav-links a {
  text-decoration: none;
  color: #DF7EA8;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.container {
  text-align: center;
  padding: 60px 20px;
}

.form-wrapper {
  width: 1014px;
  max-width: 90%;
  margin: 0 auto;
  background: rgba(255, 229, 244, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

input[type="text"],
input[type="url"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

textarea {
  resize: none;
  height: 200px;
}

.tag-dropdown {
  height: 130px;
}

.tag-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.tag-checkboxes label {
  font-size: 16px;
  color: #DF7EA8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-checkboxes input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #DF7EA8;
}

button {
  width: 280px;
  height: 70px;
  background: #DF7EA8;
  color: white;
  font-size: 32px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  border: 1px solid #FFB9D4;
  margin: 20px auto 0;
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

button:hover {
  transform: scale(1.03);
}

.file-label {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 6px;
  color: #DF7EA8;
  font-weight: 600;
  text-align: left;
}

.custom-file {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px;
  font-size: 16px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  width: 100%;
  color: #555;
  appearance: none;
}

.custom-file::before {
  content: "upload logo";
  position: absolute;
  top: 50%;
  left: 225px;
  transform: translateY(-50%);
  color: #858585;
  pointer-events: none;
  font-size: 16px;
}

.custom-file:valid::before {
  content: "";
}

.site-footer {
  background-color: rgba(255, 197, 219, 0.364);
  color: #DF7EA8;
  font-family: 'Inter', sans-serif;
  padding: 30px 20px 10px;
  position: relative;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.footer-logo {
  width: 138px;
  height: 138px;
  object-fit: contain;
  margin-top: -18px
}

.footer-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

.footer-subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 15px;
  margin-top: 6px;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 3px;
  margin-left: 2px;
}

.footer-icons img {
  width: 38px;
  height: 38px;
  transition: transform 0.2s;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 3px;
}

.footer-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

.footer-right a {
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  color: #DF7EA8;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-right a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #DF7EA8;
}



@media (max-width: 1024px) {
  html, body {
  overflow-x: hidden;
}
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
  
  .site-header {
    padding: 10px 20px;
    height: auto;
    gap: 15px;
  }

  .logo {
    height: 50px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 16px;
    white-space: nowrap;
  }

  .form-wrapper {
    width: 100%;
    max-width: 95%;
    padding: 25px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-left, .footer-right {
    align-items: flex-start;
    text-align: left;
  }
  
}

@media (max-width: 767px) {

  html, body {
  overflow-x: hidden;
  }
  
  .site-header {
    height: auto;
    padding: 15px;
    gap: 15px;
  }

  .logo {
    height: 42px;
  }

  .nav-links {
    flex-direction: row;
    gap: 7px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .title {
    font-size: 1.8rem;
    
  }

  .subtitle {
    font-size: 1rem;
  }

  .form-wrapper {
    padding: 20px 15px;
    font-size: 15px;
  }

  .container {
  padding-top: 30px;
  }

  .tag-checkboxes {
  grid-template-columns: 1fr;
  padding: 12px;
  }

  .tag-checkboxes label {
  font-size: 12px;
  }

  input::placeholder,
  textarea::placeholder {
  font-size: 10px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}

  input[type="file"] {
  font-size: 10px;
  padding: 10px;
}
  input[type="text"]{
  padding-top: 12px;
  padding-bottom: 20px
}

.custom-file {
  padding: 12px;
  font-size: 12px;
}

.custom-file::before {
  left: 160px; 
  font-size: 10px;
}

  button {
  width: 220px;
  height: 55px;
  font-size: 24px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-text {
    align-items: flex-start;
  }

  .footer-icons {
    margin-top: 2px;
    margin-left: 0;
    gap: 8px;
  }
  
  .footer-right {
    align-items: flex-start;
    text-align: left;
    margin-top: 2px;
    gap: 1px;
  }

  .footer-heading {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .footer-right a {
    font-size: 18px;
  }

  .footer-logo {
    width: 100px;
    height: 100px;
    margin-top: -20px;
  }

  .footer-title {
    font-size: 24px;
    margin-bottom: 2px;
  }

  .footer-subtitle {
    font-size: 18px;
    margin-top: 4px; 
    margin-bottom: 4px;
  }

  .footer-bottom {
    font-size: 16px;
    text-align: left;
  }

}

@media (max-width: 600px) {

  html, body {
  overflow-x: hidden;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .logo {
    height: 35px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 6px;
  }

  .container {
  padding-top: 30px;
  }

  .footer-container {
    padding: 0;
    gap: 16px;
  }

  .footer-left {
    gap: 10px;
  }

  .footer-icons img {
    width: 30px;
    height: 30px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-subtitle {
    font-size: 16px;
    margin-top: 2px; 
    margin-bottom: 2px;
  }

  .footer-right {
    margin-top: 2px;
    gap: 0px;
  }

  .footer-right a {
    font-size: 16px;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .footer-bottom {
    font-size: 14px;
    margin-top: 10px;
  }
}

.form-wrapper,
form,
input,
textarea,
select,
button {
  max-width: 100%;
  box-sizing: border-box;
}

