:root {
  --primary: #2e2e2e;
    --accent: #ff6f61;
    --bg: linear-gradient(to bottom right, #fff3f0, #ffe7e0);  /* warm background */
    --card: #fffaf8;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #ffb09e, #ff6f61);
  color: white;
  text-align: center;
  padding: 60px 20px 30px;
}

header h1 {
  font-size: 3rem;
  font-weight: 800;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.photos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.photos img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100%;
  border: 4px solid white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photos img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

main {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

section {
  background: var(--card);
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-2px);
}

.video-section-wrapper {
  padding: 0; /* Remove padding/margin that makes it look like another box */
  background: none; /* Ensure no background adds a visual layer */
  box-shadow: none;
}

.video-box {
  background: var(--card);
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
}

.video-title h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.video-title a {
  font-size: 1rem;
  text-decoration: none;
  color: #ff6f61;
  font-weight: 600;
  transition: color 0.2s;
}

.video-title a:hover {
  color: #ff3b2f;
}

.video-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.video-container {
  flex: 1;
  position: relative;
  height: 100%;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border: none;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.4s ease-in-out;
}


/* On section hover, grow the underline */
section:hover h2::after {
  width: 80px;
}


ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #ff3b3f;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .photos img {
    width: 130px;
    height: 130px;
  }
}
