/* Main Styles for Hippie Website */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

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

body {
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Quilt Background */
.quilt-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.quilt-piece {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.quilt-piece:nth-child(1) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_0.png');
}

.quilt-piece:nth-child(2) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_01.png');
}

.quilt-piece:nth-child(3) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_02.png');
}

.quilt-piece:nth-child(4) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_03.png');
}

.quilt-piece:nth-child(5) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_04.png');
}

.quilt-piece:nth-child(6) {
  background-image: url('images/fc822069-c7b2-431c-9ab6-1138e658b76a_05.png');
}

/* Content Container */
.content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Hippie Style Heading */
h1 {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #ff6b6b;
  text-shadow: 
    2px 2px 0 #ffd166,
    4px 4px 0 #06d6a0,
    6px 6px 0 #118ab2;
  letter-spacing: 2px;
  transform: rotate(-2deg);
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-top: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Peace Symbol Animation */
.peace-symbol {
  position: absolute;
  font-size: 40px;
  opacity: 0.7;
  animation: float 5s infinite ease-in-out;
}

.peace-symbol:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.peace-symbol:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.peace-symbol:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}

.peace-symbol:nth-child(4) {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  .content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .content {
    padding: 15px;
  }
}