:root {
  --bg-color: #121212;
  --text-color: #eaeaea;
  --header-bg: #1f1f1f;
  --accent: #555;
  --button-bg: #eee;
  --button-text: #111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

/* HEADER */
header {
  position: relative;
  background: url("images/59a84d6f-30fa-4e57-9684-8653205a90ab.jpg") no-repeat center center/cover;
  color: white;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

header h1, header img, header nav {
  position: relative;
  z-index: 1;
}

header .logo {
  max-height: 80px;
  width: auto;
}

header h1 {
  font-size: 2.5rem;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: var(--accent);
}

/* SECTION BOX */
.section-box {
  background: #181818;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.section-box h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: max-content;
  gap: 15px;
}

.slides img {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid white;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Make Couple Shoots images bigger on desktop */
@media (min-width: 601px) {
  #couple .slides img {
    width: 280px;
    max-height: 420px;
  }
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
  transition: background 0.3s ease;
}

button.prev:hover, button.next:hover {
  background: #555;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: var(--header-bg);
  color: white;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .section-box {
    max-width: 90%;
    padding: 30px 20px;
  }

  .slides img {
    width: 220px;
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .slides img {
    width: 180px;
    max-height: 200px;
  }

  /* HIDE SLIDER BUTTONS ON MOBILE */
  .slider button.prev,
  .slider button.next {
    display: none !important;
  }
}
