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

body {
  font-family: 'Georgia', serif;
  background-color: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: #f5f5f5;
  text-decoration: none;
}

header.main-header {
  background: url('images/floral-bg.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  color: white;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.header-content {
  margin-top: auto;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-section {
  padding: 60px 30px;
  background-color: #000;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-image img {
  max-width: 100%;
  border: 2px solid #fff;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about-text {
    flex: 1;
    padding-right: 20px;
  }

  .about-image {
    flex: 1;
  }
}
