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

/* Body styling */
body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #ffc;
/* display: flex; <- comment out
justify-content: center;
align-items: center;
min-height: 100vh; */
overflow-x: hidden;
margin: 0;
}

/* Main container */
.fade-container {
  max-width: 480px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
  opacity: 0; /* fade in from 0 */
  transition: opacity 3s ease-in-out;
}
.container {
  max-width: 480px;
  margin: 2rem auto;
  padding: 1rem;
}

/* Logo styling */
.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text styling */
.presentation {
  margin-bottom: 4rem;
  line-height: 1.6;
}

h1 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.presentation h2 {
  font-size: 1rem;
  margin-bottom: 0rem;
}

.presentation p {
  text-align: justify; /* Justify the text */
}

h2 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}


.video-embed iframe {
  max-width: 100%;
  border: none; /* Removes default frame border */
}

@media (max-width: 640px) {
  .video-embed iframe {
    height: 200px; /* Adjust height on smaller screens */
  }
}


/* SoundCloud Player */
.soundcloud-player {
  margin-bottom: 6rem;
}

/* Social links */
.social-section {
  margin-top: 6rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 6rem;
  margin-top: 2rem;
}

.social-links a {
  color: #cc3;
  text-decoration: none;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between the icon and text */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: #222;
  color: #ff6;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer styling */
footer {
  margin-top: 6rem;
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

footer a {
  color: #cc3;
}

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

/* ==================== Cookie Banner Styling ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #ffc;
  font-size: 0.9rem;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 9999;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: #cc3;
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: #ff6;
}
.cookie-banner button {
  border: 1px solid #444;
  background: #222;
  color: #ffc;
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.cookie-banner button:hover {
  background-color: #333;
}
.cookie-banner.hide {
  display: none;
}

/* Adjust cookie banner layout for mobile */
@media(max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner button {
    margin-top: 0.5rem;
  }
}

/* ==================== Privacy Page Styling ==================== */
/* Re-use the same stylesheet but add styles for your privacy page container */
.privacy-container {
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  padding: 1rem;
  line-height: 1.6;
  /* The body is set to display: flex; align-items: center; 
     If you want your text starting near the top, override if needed: */
  text-align: left; 
}

/* Add extra spacing for headings and paragraphs within .privacy-container */
.privacy-container h1,
.privacy-container h2,
.privacy-container p,
.privacy-container ul {
  margin-bottom: 1rem;
}

.privacy-container ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}