:root {
  --bg: #fdfaff;
  --text: #2a1f3d;
  --accent: #a68ad8;
  --accent-light: #e8defc;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* Header */
header.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* Hero / Homepage */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background: var(--accent-light);
  text-align: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
    height: 1.5vh;
  color: #4a4060;
}

/* Gallery Page */
.gallery-container {
  padding: 3rem 5%;
  text-align: center;
}

.gallery-container h1 {
  margin-bottom: 2rem;
  color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.media-item {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.media-item:hover {
  transform: scale(1.03);
}

.media-item img,
.media-item video {
  width: 100%;
  height: auto;
  display: block;
}

.article-link {
  display: block;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.article-link:hover {
  background: var(--accent-light);
}

/* About Page */
.about-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.about-container img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.about-container p {
  line-height: 1.6;
  color: #4a4060;
}

/* Contact Page */
.contact-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #422b7e;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: white;
  color: #666;
  font-size: 0.9rem;
  margin-top: 3rem;
}

.youtube-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
