:root {
  --color-primary: #ffffff;
  --color-secondary: #ff709b;
  --color-accent: #f6f000;
  --color-mor: #c345e5;
  --text-light: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-primary);
  color: var(--text-light);
}
.navbar {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  z-index: 10;
}
.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.hero-header {
  margin-top: 70px;
  z-index: 2;
}
.hero-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
}
.hero-header p {
  font-size: 1.2rem;
  margin-top: 0.3rem;
  color: var(--text-light);
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  max-width: 800px;
  margin-top: 40px;
}
.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.1rem;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slider-btn:hover {
  background-color: var(--color-accent);
  color: black;
}
.slider-btn.left {
  left: 20px;
}
.slider-btn.right {
  right: 20px;
}
.button-floating {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  z-index: 2;
}
.button-floating:hover {
  background-color: var(--color-accent);
  color: black;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 10;
}
.contact {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact a {
  font-size: 1.4rem;
  color: var(--color-accent);
  text-decoration: none;
}
#randevu {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 3rem 1rem;
}
#randevu h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .hero-header h1 { font-size: 2rem; }
  .hero-header p { font-size: 1rem; }
  .hero-content h2 { font-size: 1.5rem; }
  .hero-content p { font-size: 1rem; }
  .slider-btn {
    font-size: 1.4rem;
    padding: 0.4rem 0.7rem;
    top: 52%;
  }
}
