/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;    /* white background */
  color: #000;         /* black text */
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  padding: 10px 20px;
  background: #fff;
  box-shadow: none;
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  max-width: 50%;
  height: auto;
  margin-bottom: 0px;
}
header h1 {
  font-size: 2rem;
  font-weight: 600;
}

/* Main Sections */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
}
section {
  margin: 10px 0;
}
section h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: #ffcc00;
}
audio {
  width: 90%;
  max-width: 400px;
  outline: none;
}
.contact p {
  margin: 8px 0;
}
.contact a {
  color: #ffcc00;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 15px;
  background: #1a1a1a;
  font-size: 1.5rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Play Button */
.play-button {
  background: #ff9900;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 25vw;        /* 25% of screen width */
  height: 25vw;
  max-width: 150px;   /* bigger max circle to match icon */
  max-height: 150px;
  font-size: 7vw;    /* scale icon with screen size */
  max-font-size: 60px; /* optional cap */
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}


.play-button:hover {
  background: #ffdb4d;
}
.play-button:active {
  transform: scale(0.95);
}

.listen {
  display: flex;
  flex-direction: column;
  align-items: center;  /* centers children horizontally */
  gap: 10px;            /* optional spacing between heading & button */
}

#current-track {
  margin-top: 10px;
  font-size: 2rem;
  color: #333;        /* adjust to match your background */
  font-weight: 500;
}