@import url('https://fonts.googleapis.com/css2?family=Playwrite+VN:wght@100..400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ruslan+Display&family=Open+Sans:wght@400;600&display=swap');
*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}
body{
  font-family: 'Righteous', sans-serif;
  line-height: 1.4;
  color:#fff;
}

a{
  text-decoration: none;
}

p{
  margin:0.75rem 0;
}
/*ultities classes*/

.container{
  max-width: 1100px;
  margin:auto;
  padding: 0 2rem;
  overflow: hidden;
  
  
}
.text-center{
  text-align: center;
}
.l-heading {
  font-size: 2rem;
  margin-bottom: 0.80rem;
  line-height: 1.1;
  font-family: 'Bungee Shade', cursive;
   white-space: nowrap;   /* prevents line breaks */
  overflow: hidden;      /* optional: hides anything that overflows */
  text-overflow: ellipsis
}
.m-heading{
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.lead{
  font-size: 1.6rem;
  margin-bottom: 2rem;
 font-family: 'Righteous', sans-serif;
}
/* Apply styles to both <button> and <a> with .btn */
.btn,
a.btn {
  display: inline-block; /* important for <a> */
  padding: 0.9rem 1rem;
  border: 2px solid #00bfff;
  color: #00bfff;
  border-radius: 10px;
  background: transparent;
  font-size: .8rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none; /* removes underline on <a> */
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.4);
}

.btn:hover,
a.btn:hover {
  background: #00bfff;
  color: #031327;
  box-shadow: 0 0 25px #00bfff;
}


/* Showcase */
.showcase-conent{
font-family: 'Press Start 2P', cursive;
}
.showcase-conent .l-heading {
  font-size: 2.5rem;
 font-family: 'Press Start 2P', cursive;
  color: #103B73;
   white-space: nowrap;   /* prevents line breaks */
  overflow: hidden;      /* optional: hides anything that overflows */
  text-overflow: ellipsis
}

/*NavBar*/

/* NAV WRAPPER */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  background-color: #0E2440;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border: none;
  z-index: 1000;
  backdrop-filter: blur(6px); /* adds a subtle glassy effect */
}

/* LOGO */
/* LOGO CONTAINER */
#navbar .logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
#navbar .logo-img {
  height: 90px;             /* adjust size */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6)); /* subtle shadow for contrast */
  transition: transform 0.3s ease;
}

/* Hover effect (optional) */
#navbar .logo-img:hover {
  transform: scale(1.05);   /* small zoom */
}


/* LINKS */
#navbar .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

#navbar .nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover color */
#navbar .nav-links a:hover {
  color:#00bfff;
; /* Kickstart Blue */
}

/* underline hover effect */
#navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background:#00bfff;
;
  transition: width 0.3s ease;
}

#navbar .nav-links a:hover::after {
  width: 100%;
}

/*Video Section*/
.video-background-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  background-color: #1c4985;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.29); /* optional dark overlay */

}

.content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
}
.nav-socials {
  display: flex;
  justify-content: center;  /* centers icons horizontally */
  gap: 15px;
  margin-left: 0;           /* remove the auto push */
}


.nav-socials a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nav-socials a:hover {
  color: #60731A; 
  transform: scale(1.1);
}
.logo img {
  width: 125px;       /* Adjust size as needed */
  height: 130px;      /* Keep it equal to width for a perfect circle */
  border-radius: 23%; /* Makes the image a circle */
  object-fit: cover;  /* Ensures the image fills the circle nicely */
  border: 2px solid #103B73; /* Optional: add a border to match your theme */
  margin-right: 5px; /* Space between the image and text */
  vertical-align: middle;
}

.logo a {
  display: inline-block;
}

.logo-img {
  max-height: 60px; /* adjust based on nav size */
  width: auto;
}


/*Showcase*/


.video-background-section .showcase-conent{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  /*overlay*/
  position: absolute;
  top:0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Black with 30% opacity */
  }
.petal {
  position: absolute;
  top: -10vh;
  width: 25px;
  height: 25px;
  background: rgba(0, 191, 255, 0.25);
  border-radius: 50%;
  filter: blur(2px);
  animation: fall linear infinite;
}

@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}
#petals-canvas,
.overlay {
  pointer-events: none; /* lets clicks go through */
}
  
 
  
 .signup-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem; /* 40px */
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.3); /* 8px 20px */
    width: 100%;
    max-width: 30rem; /* ~480px, bigger than 400px */
}


  h2 {
    text-align: center;
    margin-bottom: 24px;
  }

  input::placeholder {
    color: #ccc;
  }

  input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ff6bcb;
    box-shadow: 0 0 5px #ff6bcb;
  }

  

  .small-text {
    text-align: center;
    font-size: 14px;
    margin-top: 16px;
    color: #ccc;
  }
  /* Merch */
  .merch-section {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff; /* Default text color */
}

.merch-container {
  max-width: 600px;
  margin: 0 auto;
}

.merch-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff; /* White headline */
}

.merch-container p {
  font-size: 1rem;
  color: #d1d5db; /* Softer gray text for contrast */
  margin-bottom: 30px;
}

/*Sign Up Section*/
.signup-section {
  background-color:#0E2440;
  padding: 60px 20px;
  color: #fff;
}

.signup-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.signup-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.signup-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.signup-content p {
  font-size: 1rem;
  color: #e4e4e4;
  margin-bottom: 30px;
}
.signup-content p {
    text-align: center;
  }
.signup-form input[type="email"] {
  width: 100%;          /* optional if you want full width on small screens */
  max-width: 300px;     /* caps the width so it’s not huge */
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}


.signup-form input {
  flex: 1 1 250px;
  padding: 14px 16px;
  border-radius: 40px;
  border: none;
  font-size: 1rem;
  outline: none;
  max-width: 350px;
}

.signup-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  background-color: #fff;
  align-self: center;
  color: #60731A;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.signup-form button:hover {
  background-color: #f1f1f1;
  color: #4d5c14;
  transform: translateY(-2px);
}
/* Contact*/
.contact-section {
  background-color: #0E2440;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 500px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 40px;
  background-color: #fff;
  color: #8C441B;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f1f1f1;
  color: #6e3415;
}
/* About*/
.about-section {
  background-color:#0E2440;
  padding: 60px 20px;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}


.event-section {
  padding: 60px 20px;
  background: #0E2440; /* or darker if you want */
}

.event-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0E2440;
}

.event-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.event-item {
  background-color: #111;
  padding: 20px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Force Songkick widget to fit the card */
.event-item .songkick-widget {
  display: block;
  width: 100%;
  max-width: 100%;
}

/*Footer*/
footer {
  background: #0E2440; /* dark footer */
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #aaa; /* default gray icons */
  margin: 0 15px;
  font-size: 28px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #60731A;
  transform: scale(1.2); /* little bounce */
}

footer p {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}



.upcoming-events {
  padding: 60px 20px;
  background: #0E2440;
  color: #fff;
  text-align: center;
}

.upcoming-events h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.upcoming-events h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  margin: 10px auto 0;
  background: #0E2440;
  border-radius: 2px;
}

/* Grid layout */
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Event card */
.event-card {
  background: #0E2440;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Date styling */
.event-date {
  text-align: center;
  background: #0E2440;
  border-radius: 12px;
  padding: 10px 15px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.event-date .month {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Info section */
.event-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.event-info p {
  margin: 4px 0;
  color: #bbb;
}

.event-info .time {
  font-weight: bold;
  color: #0E2440;
}

/* Button */
.event-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 25px;
  background: #0E2440;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.event-btn:hover {
  background: #103B73;
  transform: scale(1.05);
}

.contact-section {
  background: #0E2440;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  color: #fff;
}

.contact-container {
  max-width: 700px;
  width: 100%;
  background: #;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

form .input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.input-group label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #ddd;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease all;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #fff;
  background: #111;
  padding: 0 5px;
  border-radius: 5px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #0d2b3b, #103B73);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}


.merch-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.merch-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* Carousel Container */
.merch-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding-bottom: 10px;
}

.merch-carousel::-webkit-scrollbar {
  height: 8px;
}

.merch-carousel::-webkit-scrollbar-thumb {
  background-color: #007BFF;
  border-radius: 4px;
}

.merch-carousel::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}

/* Ensure products don’t wrap */
.merch-carousel > div {
  flex: 0 0 auto; /* prevent wrapping */
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseText {
  from { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
  to { text-shadow: 0 0 20px rgba(255,255,255,0.9); }
}
/* Fancy heading animation */
.l-heading {
  font-family: 'Lobster', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem); /* min 1.8rem, max 3rem, scales with viewport width */
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #f7faff); /* shades of blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(237, 243, 251, 0.342), 0 0 15px rgba(206, 212, 222, 0.4);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.l-heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.l-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/*Error message form*/
.input-group .error {
  color: red;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

.input-group input.invalid,
.input-group textarea.invalid {
  border: 1px solid red;
}
.shop-section {
  background:  #0d204b;
  padding: 60px 20px;
  text-align: center;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.shop-subtitle {
  color: #dce1f0;
  margin-bottom: 40px;
}

/* Ensure Shopify products grid works nicely */
.shopify-buy__collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Make images fill their boxes properly */
.shopify-buy__product-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .shopify-buy__collection {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}


/*Footer*/
.footer1 {
  font-size: 0.75rem;      /* smaller text (12px if base is 16px) */
  text-align: center;     
  padding: 0.625rem 0;     /* ~10px top/bottom */
  background: #0E2440;        
  color: #aaa;            
}

.footer1 a {
  margin: 0 0.375rem;      /* ~6px spacing */
  color: #aaa;
  text-decoration: none;
  font-size: 0.75rem;      /* keep links same size */
}

.footer1 a:hover {
  color: #fff;            
}

.footer1 i {
  font-size: 0.875rem;     /* ~14px for icons */
}


