/* =====================================================
   Alukomax - default page style
===================================================== */

/* Base Body */
body.default-page {
  background: --main-bg-color;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
}

/* -----------------------------------------------------
   Hero Section
------------------------------------------------------ */
body.default-page .hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url('/assets/images/powder_main.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

body.default-page .hero .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeSlideUp 1.5s ease forwards;
}

body.default-page .hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffb400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: normal;
  margin-bottom: 1rem;
}

body.default-page .hero p {
  font-size: 2rem;
  color: #eaeaea;
  line-height: 1.6;
}

/* -----------------------------------------------------
   Section Styling
------------------------------------------------------ */
body.default-page section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
  border-radius: 14px;
  font-size: 20px;
}

/* Alternate darker/light backgrounds */
body.default-page section:nth-of-type(even) {
  background: var(--article-lighter-color);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.1);
}

body.default-page section:not(.hero):nth-of-type(odd) {
  background: var(--article-darker-color);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.05);
}

/* Section Headings */
body.default-page section h2 {
  color: #ffb400;
  text-align: center;
  font-size: 2rem;
  position: relative;
  margin-bottom: 1em;
}

body.default-page section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5em;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Paragraphs */
body.default-page section p {
  max-width: 850px;
  margin: 0 auto;
  color: #ccc;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* Lists */
body.default-page ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: center;
  color: #bbb;
}

body.default-page ul li {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

body.default-page ul li strong {
  color: #ffb400;
}

/* -----------------------------------------------------
   Dimensions Highlight
------------------------------------------------------ */
body.default-page .dimensions {
  text-align: center;
  padding: 50px 20px;
  margin-top: -60px;
  background: #1b1b1b;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 180, 0, 0.15);
}

body.default-page .maximal-dimensions {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.8rem;
  color: #ffb400;
  font-weight: 700;
}

/* -----------------------------------------------------
   Showcase Cards
------------------------------------------------------ */
body.default-page .showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

body.default-page .card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body.default-page .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255, 180, 0, 0.25);
}

body.default-page .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s;
}

body.default-page .card:hover img {
  filter: brightness(1);
}

body.default-page .card header {
  padding: 20px;
  text-align: center;
}

body.default-page .card header h3 {
  color: #ffb400;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

body.default-page .card p {
  padding: 0 20px 20px;
  color: #ccc;
  text-align: center;
  font-size: 0.95rem;
}

/* -----------------------------------------------------
   Fade-In Animation
------------------------------------------------------ */
body.default-page .fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.default-page .fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  body.default-page .hero h1 {
    font-size: 2.2rem;
  }

  body.default-page section {
    padding: 60px 15px;
  }
}