
/* style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #432559;
  margin: 0;
  padding: 0;
}

header {
  height: 150px;
  overflow: hidden;
  background-color: white;
}

.header-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

header h1 {
  margin: 0;
  color: #333;
}

nav {
  background-color: #eee;
  text-align: center;
  padding: 10px 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

.container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 50px;
}

/* New styles for portrait + hero layout */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 80px auto;
  gap: 40px;
  padding: 0 30px;
  flex-wrap: wrap;
}

.portrait {
  flex: 1 1 40%;
  max-width: 400px;
}

.portrait img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.hero-text {
  flex: 1 1 55%;
  color: white;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background: #6a3dad;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.button:hover {
  background: #512d85;
}
