/* Body & background */
body {
  font-family: Arial, sans-serif;
  background-image: url('bg_img.jpg');
  background-size: cover;
  background-position: top;
  color: #fff;
  padding: 0;
  margin: 0;
  min-height: 100vh;
}

/* Navigation bar */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 700px;
  font-family: 'Dancing Script', cursive;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #0077cc;
  color: white;
}

/* Main container */
main {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* Section styling */
section {
  margin-bottom: 40px;
}

h2 {
  color: #fff;
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  text-align: center;
  font-weight: normal; /* Handwritten fonts usually look better without bold */
  color: #fff;
  margin: 20px 0;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 12px 0;
}

a {
  color: #00aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
.buttons {
  margin: 20px 0;
}

button {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0077cc;
}

/* Embedded video */
iframe {
  border-radius: 10px;
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}

/* Social Links */
.social-links a {
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

.social-links a:hover {
  color: #e1306c; /* Instagram pink */
}

/* yt video */

iframe {
  max-width: 100%;
  width: 360px;
  height: 720px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
@media (max-width: 400px) {
  iframe {
    width: 90vw; /* 90% of viewport width on small screens */
    height: calc(90vw * 2); /* maintain 1:2 aspect ratio */
  }
}

/* Responsive */
@media (max-width: 600px) {
  main {
    margin: 20px;
    padding: 15px;
  }
  iframe {
    height: 200px;
  }
  nav {
    gap: 20px;
  }
  nav a {
    font-size: 1rem;
  }
}