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

body, html {
  min-height: 100vh;
  font-family: 'Verdana', sans-serif;
  background-color: black;
  background-image: url('images/marie-rose-bg.jpg');
  background-repeat: repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Header Navigation */
header {
  width: 100%;
  text-align: center;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.image-row img {
  width: 200px;
  height: 300px;
  object-fit: contain;
}

nav {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

nav a {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 15px;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  width: calc(20% - 8px);
  box-shadow: 0 0 15px red;
  margin: 0 4px;
}

/* Current page indicator */
nav a.current {
  background-color: red;
  color: white;
}

/* Hover Effect */
nav a:hover {
  background-color: red;
  color: white;
}

/* Content Section - Single Unified Box */
.content-box {
  background-color: white;
  padding: 30px;
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px red;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}

/* Ensure all text inside content box is black */
.content-box h1, .content-box h2, .content-box p {
  color: black;
}

/* Responsive Design */
@media (max-width: 600px) {
  body, html {
    padding: 10px 0;
    min-height: 100vh;
    justify-content: flex-start;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .image-row img {
    width: 80%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }

  nav {
    flex-direction: column;
    padding: 0 10%;
    margin-bottom: 20px;
  }

  nav a {
    margin: 10px 0;
    width: 100%;
  }

  .content-box {
    margin-top: 20px;
    margin-bottom: 20px;
  }
} 