@import url(https://fonts.googleapis.com/css?family=Signika+Negative:400,700);

:root {
  --mbc-ink: #030815;
  --mbc-navy: #071a33;
  --mbc-blue: #1987f4;
  --mbc-green: chartreuse;
  --mbc-red: #ff3b5c;
  --mbc-text: #eaf2ff;
  --mbc-muted: #aebdd0;
  --mbc-panel: #f2f6fb;
}

/* Global Styles */
body{
    cursor: url('Logos/Old_English_D_Cursor_Tigers.png'), auto;
  }

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Signika Negative', sans-serif;
  font-size: 18px;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--mbc-ink);
}

/* Header */
#header {
  background: rgba(3, 8, 21, 0.92);
  padding: 10px;
  display: flex;
  align-items: center;
}

#header img {
  margin-right: 20px;
}

#header ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

#header ul li {
  font-size: 18px;
}

#header ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

#header ul li a:hover {
  color: var(--mbc-green);
}

/* Hero Section */
.hero {
  background: url('Logos/BG_Image_ANIMATED_STARS.gif') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: relative;
  border-bottom: chartreuse 10px solid; 
  border-top: chartreuse 10px solid;
}


.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

}

.slideLogo {
  animation: slideWelcome 1.5s ease-in-out forwards; /* Animation for the logo */
  z-index: 1;
  position: relative;
  top: -30px;
  width: 300px;
  max-width: 60vw;
  height: auto;
  object-fit: contain;
}

@media (max-width: 576px) {
  .slideLogo {
    width: 190px;
    max-width: 50vw;
    height: auto;
  }
}

@keyframes slideWelcome {
  0% { transform: translate(-1500px); }
  50% { transform: translate(100px); }
  100% { transform: translate(0px); }
}

.hero h1 {
  font-size: 3rem;
  z-index: 1;
}

.hero p {
  font-size: 1.5rem;
  z-index: 1;
  animation: slowAppear 5s; 

}

@keyframes slowAppear {
  0% { 
    opacity: 0; 
  }
  50% { 
    opacity: 0.5; 
  }
  100% { 
    opacity: 1; 
  }
}


#more {
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  z-index: 1;
}

/* Collection Section */
.collection-section {
  padding: 20px 10%;
  background: var(--mbc-ink);
}

.collection-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
}



.card-container h2 {
  display: inline-block; /* Ensures the text behaves like an inline block for transformation */
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.card-container h2:hover {
  animation: wiggleButton 1s infinite; /* Applies the spinning animation on hover */
}

@keyframes wiggleButton {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

.card {
  background: var(--mbc-panel);
  border: 1px solid rgba(127, 255, 0, 0.35);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 48, 105, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 22%; /* Ensures 4 cards fit in one row */
  max-width: 300px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 22px rgba(127, 255, 0, 0.55);
}

.card a {
  color: #092a52;
  text-decoration-color: var(--mbc-blue);
}

.card p {
  color: #35475c;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.card h2 {
  font-size: 1.8rem;
  margin: 20px 0 10px;
}

.card p {
  font-size: 1rem;
}

/* Media Query for screens smaller than 768px (tablet) */
@media (max-width: 768px) {
  .card-container {
    flex-wrap: wrap;
  }

  .card {
    width: 48%; /* Two cards per row on tablets */
  }
}

/* Media Query for screens smaller than 480px (mobile) */
@media (max-width: 480px) {
  .card-container {
    flex-wrap: wrap;
  }

  .card {
    width: 100%; /* Stack cards vertically on mobile */
    font-size: 18px;
  }
}


/* About Section */
.about-section {
  padding: 40px 5%;
  background: linear-gradient(180deg, var(--mbc-navy), var(--mbc-ink));
  text-align: center;
  border: chartreuse 5px solid;
  border-width: 10px 10px 10px 10px; 
}

.about-section img {
  width: 50%; /* Ensures the image fills the container width */
  height: auto; /* Maintains aspect ratio */
  max-width: 100%; /* Prevents the image from exceeding its container */
  border-radius: 5px; /* Optional: Adds rounded corners for styling */
}

.about-section h1 {
  font-size: 65px;
  margin-bottom: 20px;
  animation: flash 1.3s infinite;
}

.about-section p {
  color: chartreuse;
}

@keyframes flash {
  0% {
    color: var(--mbc-green);
    opacity: 1;
  }
  50% {
    color: var(--mbc-blue);
    opacity: .75;
  }
  
  100% {
    color: var(--mbc-green);
    opacity: 1;
  }
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.5;
}

@keyframes popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Enlarges the image slightly */
  }
  100% {
    transform: scale(1);
  }
}

.arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.arrows {
  text-align: center;
  margin-top: 20px;
  animation: pulseArrows 1.5s infinite;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  font-family: 'Signika Negative', sans-serif;
}

#more {
  animation: blinkColors 1s infinite;
}

@keyframes blinkColors {
  0%   { color: chartreuse; text-shadow: 0 0 10px chartreuse; }
  50%  { color: red; text-shadow: 0 0 10px red; }
  100% { color: chartreuse; text-shadow: 0 0 10px chartreuse; }
}

@keyframes pulseArrows {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

.popOutHover {
  transition: transform 0.6s ease-in-out; /* Smooth transition for the scaling */
  box-shadow: 0px 4px 10px chartreuse; /* Initial shadow */
}

.popOutHover:hover {
  animation: popOut 0.6s ease-in-out; /* Pop out effect on hover */
  box-shadow: 0px 6px 15px red; /* Slightly larger shadow on hover */
}

/* Container styling for centering */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: var(--mbc-navy);
  font-family: Arial, sans-serif;
  background-image: url('HomepageAssets/Holofoil_ANIMATED.gif');
}

/* Form styling */
.contact-form {
  width: 100%;
  max-width: 500px;
  background: rgba(7, 26, 51, 0.94);
  padding: 25px;
  padding-right: 50px; /* Padding for the right side */
  border-radius: 8px;
  border: 2px solid rgba(127, 255, 0, 0.75);
  box-shadow: 0 10px 30px rgba(3, 8, 21, 0.6), 0 0 20px rgba(127, 255, 0, 0.2);
}

.contact-form h2 {
  color: var(--mbc-green);
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  animation: glowBlink .5s infinite; /* Apply the glowBlink animation */
}

/* Keyframe animation for glowing text effect */
@keyframes glowBlink {
  0% {
    text-shadow: 0 0 6px var(--mbc-green), 0 0 16px var(--mbc-blue);
  }
  50% {
    text-shadow: 0 0 12px var(--mbc-green), 0 0 26px var(--mbc-blue);
  }
  100% {
    text-shadow: 0 0 6px var(--mbc-green), 0 0 16px var(--mbc-blue);
  }
}

/* Input field styling */
.contact-form label {
  color: var(--mbc-text);
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  color: #10233c;
  background: #f4f8fd;
  border: 2px solid #91a8c3;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

/* Focus effects on input fields */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mbc-green);
  box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.18);
}

/* Button styling */
.contact-form button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: var(--mbc-ink);
  background-color: var(--mbc-green);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--mbc-blue);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

textarea {
  resize: none;
}

/* Snowflake style */
.snowflake {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  animation-name: fall;
  animation-timing-function: linear;
}

@keyframes fall {
  to {
      transform: translateY(100vh);
  }
}

/* Ensure the contact-container is relatively positioned to contain snowflakes */
.contact-container {
  position: relative;
  overflow: hidden;
}

/* Footer */
.footer {
  background: #010105;
  color: #eeeeec;
  text-align: center;
  padding: 20px 0;
  border-bottom: chartreuse 10px solid; 
  border-top: chartreuse 10px solid;
}

.footer p {
  margin: 0;
}

#siteseal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 18px auto 0;
}
