html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 40px;
  scroll-margin-top: 120px;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    margin: 0;
  padding-top: 80px; /* same height as header */
  background-color: black; /* Light blue, you can change this */
  margin: 0;
  color: white;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  align-items: center;  
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #111;
}
nav a {
  text-decoration: none;
  color:#7fffd4;
  margin: 0 15px;
  font-weight: bold;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: #7fffd4;
}
nav a:hover {
  text-decoration:none;
  color: whitesmoke;
}

.hero h1 {
  color: white; /* dark color so it is visible */
  font-size: 3rem;
  text-align: center;
}

.hero {
  height: 400px;
  background-image: url("C:\Users\USER\Downloads\music.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 36px;
}

.image-row {
  display: flex;
  flex-wrap: wrap; /* images go to next line if screen is small */
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.image-row img {
  width: 200px; /* fixed width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.image-row img:hover {
  transform: scale(1.05);
}

/* Form*/
/* Section Title */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  text-decoration: underline;
}

/* Forms Container */
.forms-content {
  max-width: 600px;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Form Headings */
.forms-content h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

/* Fieldset */
fieldset {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

/* Legend */
legend {
  font-weight: bold;
  padding: 0 10px;
  color: #555;
}

/* Labels and Inputs */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

/* Checkbox Group */
.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}

.checkbox-group label {
  display: block;
  margin-bottom: 10px;
}

/* Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

input[type="submit"],
input[type="reset"] {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

input[type="submit"] {
  background-color: #333;
  color: white;
}

input[type="submit"]:hover {
  background-color: #555;
}

input[type="reset"] {
  background-color: #ccc;
}

input[type="reset"]:hover {
  background-color: #999;
}

/* Responsive */
@media (max-width: 500px) {
  .form-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #aaa;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #7fffd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px 10px;
  }
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #7fffd4;
  color: #111;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
}

.btn:hover {
  background: #5fd2b2;
}
#about-page img {
  display: block;
  margin: 20px auto; /* center the image */
  cursor: pointer;    /* shows hand icon when hovering */
  transition: transform 0.2s;
}

#about-page img:hover {
  transform: scale(1.1); /* grows slightly when hovering */
}
 



