
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #FCFAF1;
  background-color: black;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  inset: 0;
  background: url('ASSETS/background.jpg') no-repeat center center/cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.title {
  font-size: 3rem;
  font-weight: bold;
  color: #E6B31E;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.contact-button {
  margin-top: 0;
  background-color: #E6B31E;
  color: black;
  padding: 0.40rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-button:hover {
  background-color: black;
  color: #E6B31E;
}

.gradient-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.95));
  z-index: 1;
}

.contact-section {
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.9);
  color: #FCFAF1;
}

.contact-title {
  text-align: center;
  font-size: 1.8rem;
  color: #E6B31E;
  margin-bottom: 1.5rem;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.satir {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.label {
  font-weight: bold;
  color: #E6B31E;
  margin-bottom: 0.3rem;
}

.deger {
  color: #FCFAF1;
}

.footer {
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 1.5rem;
}

.footer-text {
  margin-bottom: 0.5rem;
}

.instagram-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.instagram-link a {
  color: #E6B31E;
  text-decoration: none;
}

.instagram-link a:hover {
  text-decoration: underline;
}

.icon {
  width: 20px;
  height: 20px;
  color: #E6B31E;
}

@media only screen and (min-width: 768px) {

.title {
  font-size: 6rem;
  font-weight: bold;
  color: #E6B31E;
}

.subtitle {
  margin-top: 1rem;
  font-size: 2.8rem;
}

}