/* --- Root & Base Styles --- */
:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

/* --- Navbar Styles --- */
.navbar {
  display: flex;
  flex-wrap: nowrap;
  background-color: white;
  padding: 0;
  margin: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: #1a1a1a 1px solid;
  position: relative; /* <-- Add this line */
}
.navbar ul {
  display: flex;
  flex-wrap: nowrap;
}

.navbar li {
  list-style-type: none;
  display: inline;
}

.navbar li a {
  color: black;
  text-decoration: none;
  padding: 14px 16px;
  transition: color 0.2s, background 0.2s;
}

.navbar li a:hover {
  color: white;
  background: #C92128;
  border-radius: 4px;
}

#logo {
  padding-top: 10px;
  height: 60px;
  margin: 0 20px;
}

.navbar .social-links {
  display: flex;
  align-items: center;
}

.navbar .social-links ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navbar .social-links li {
  display: flex;
  margin: 0 10px;
}

.navbar .social-links img {
  height: 30px;
  width: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.navbar .social-links img:hover {
  opacity: 0.7;
  transform: scale(1.15);
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  margin: 5px auto;
  background: #C92128;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive navbar */
@media (max-width: 1300px) {
  .navbar {
    position: relative;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
    z-index: 1000;
  }
  .navbar ul li {
    text-align: center;
    padding: .25rem;
  }
  .navbar ul li a {
    padding: 5px;
    margin: 5px;
  }
  .navbar ul li a:hover {
    background-color: #C92128;
    font-weight: bold;
  }
  .navbar ul.active {
    display: flex;
  }
  .hamburger {
    display: flex;
    padding-right: 10px;
  }
  .navbar .social-links {
    display: none;
  }
  #logo {
    max-width: 80%;
    height: auto;
  }
}

/* --- Home Page Main Content Styles --- */
/* --- Slideshow styles --- */
.slideshow-container {
  position: relative;
  max-width: 100%;
}

.mySlides {
  display: block;
  width: 100%;
}

.fade {
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.hp-button  {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hp-button button {
  background: #C92128;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8em 2.2em;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(201,33,40,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  outline: none;
}

.hp-button button:hover,
.hp-button button:focus {
  background: linear-gradient(90deg, #ff5858 0%, #C92128 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(201,33,40,0.25);
}

/* --- About Page Styles --- */
.about_page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  max-width: 80%;
  margin: 0 auto;
}

.about_page-container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.about_page-container h1 {
  font-size: 2.5em;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.about_page-container p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 20px 0;
  text-align: center;
  max-width: 80%;
}

.about_page-container iframe {
  width: 80%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  margin: 20px auto 0 auto;
}

.youtube-button {
  background: #C92128;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8em 2.2em;
  margin-top: 20px;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(201,33,40,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  outline: none;
}

.youtube-button a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.youtube-button:hover {
  background: linear-gradient(90deg, #ff5858 0%, #C92128 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(201,33,40,0.25);  
}

.about_social-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about_social-container img {
  width: 100%;
  border-radius: 25px;
}

@media (max-width: 412px) {
  .about_social-container {
    grid-template-columns: repeat(3, 100px);
    gap: 1rem;
  }
  .about_page-container h2 {
    font-size: 1rem;
    text-align: center;
  }
}

/* --- Shop Page Styles --- */

.shop_page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  max-width: 80%;
  margin: 0 auto;
}

/* --- Footer Styles --- */
footer {
  text-align: center;
  padding: 10px;
  color: #C92128;
  font-weight: bold;
  background: #f8f8f8;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}



main {
  flex: 1 0 auto;
}