body {
  margin: 0;
      font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto,Helvetica Neue, Arial;
  background-image: url('backg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white; 
  font-family: sans-serif;
  text-align:center;
}



h1, h2,p{
text-align: center;
color: white;
}

header {
  background: #000;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image-row {
  display: flex;
  justify-content: center; /* or space-between / space-around */
  gap: 10px; /* spacing between images */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  margin: 40px 0;
}

.image-row img {
  max-width: 180px;
  height: auto;
  border-radius: 8px; /* optional: adds rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* optional: adds subtle shadow */
}

.merch-lineup {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
}

.merch-item{
  display: flex;
  justify-content: center; /* or space-between / space-around */
  gap: 20px; /* spacing between images */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  margin: 40px 0;
}

.merch-item img {
  max-width: 190px;
  height: auto;
  border-radius: 8px; /* optional: adds rounded corners */
box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* optional: adds subtle shadow */;}



nav a {
  margin-left: 1em;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

hero {
  text-align: center;
  padding: 5em 2em;
  background: url('https://www.messenger.com/messenger_media') center/cover no-repeat;
}

hero{
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

hero button {
  padding: 0.8em 1.5em;
  background: crimson;
  border: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
}

section {
  padding: 4em 2em;
  max-width: 900px;
  margin: auto;
}

gallery-grid {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

gallery-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

form input, form textarea {
  padding: 0.8em;
  border: none;
  border-radius: 4px;
}



footer {
  text-align: center;
  padding: 2em;
  background: #000;
}

button,
button[type="submit"] {
  background: linear-gradient(90deg, #ff66b3, #a64dff, #4db8ff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s, opacity 0.2s;
}

button:hover,
button[type="submit"]:hover {
  transform: scale(1.05);
  opacity: 0.9;
}




button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #ff00e6, 0 0 60px #00ffe5;
}


CSS .contact {
    padding: 80px 5%;
    background: #fff8f0;
}

.contact .heading {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Flex container for info + form */
.contact .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Contact Info */
.contact-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info .info-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-info .info-box:hover {
    transform: translateY(-5px);
}

.contact-info .info-box i {
    font-size: 2rem;
    color: #f7c948;
    margin-right: 1rem;
}

.contact-info .info-box h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-info .info-box p {
    margin: 0.2rem 0 0 0;
    font-size: 0.95rem;
    color: #555;
}

/* Contact Form */
.contact-form {
    flex: 1 1 400px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form .box {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form .box:focus {
    border-color: #FF1493;
    box-shadow: 0 0 5px rgba(247,201,72,0.5);
    outline: none;
}

.contact-form textarea.box {
    height: 120px;
    resize: none;
}

.contact-form .send {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: #FF1493;
    color: #fff;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form .send:hover {
    background: #00008b;
    transform: translateY(-2px);
}


.button-link {
  display: inline-block;
  background: linear-gradient(45deg, #ff66b2, #ff99cc);
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.button-link:hover {
  background: linear-gradient(45deg, #ff99cc, #ff66b2);
  transform: scale(1.05);
}
