@font-face {
  font-family: 'Normal';
  src: url('fonts/volter_font.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Title';
  src: url('fonts/BelanidiSerif-Regular.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Normal', sans-serif;
  background: linear-gradient(to bottom, #fdf6e3, #f5f0e1);
}

h1, h2, .key-features ul {
  font-family: 'Title', serif;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, links right */
  align-items: center;
  flex-wrap: wrap;
  background: #3a0154;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-accent-bar {
  height: 2px;
  width: 100%;
  background-color: #f5f0e1;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.navbar-logo h2 {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

/* Links */
.navbar-links {
  list-style: none;
  font-weight: 600;
  display: flex;
}

.navbar-links li {
  margin-left: 20px;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: #f39c12;
}

/* Social icons default */
.navbar-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s;
}

/* Hover effect */
.navbar-social a:hover {
  color: #f39c12;
}


/* Hide navbar links on small screens */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

header img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
}

main {
  padding: 20px;
  text-align: center;
}

h1 {
  color: #290438;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

p.subtitle {
  font-size: 1.3rem;
  font-family: Normal;
  font-weight: 500;
  line-height: 1.4; 
  margin-top: 1rem;
  color: #3a0d4d;
}

.beige-link {
  color: #f5e6c5; /* light beige */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.beige-link:hover {
  color: #fff2d8; /* lighter beige on hover */
  text-shadow: 0 0 8px rgba(245, 230, 197, 0.6);
}

.beige-link:active {
  color: #e8d5b3; /* darker beige when clicked */
  text-shadow: none;
}

.beige-link:visited {
  color: #f0ddba; /* soft beige for visited links */
}

.features-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.features-container {
  display: flex;
  flex-wrap: wrap; 
  max-width: 1200px;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

.game-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
  }

  .key-features {
    text-align: center;
  }
}

.key-features {
  background: linear-gradient(145deg, #f0ead8, #e8dec1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 280px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-features:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.key-features h2 {
  margin-top: 0;
  color: #3a0d4d;
  font-size: 1.4rem;
}

.key-features ul {
  padding-left: 20px;
  color: #3a0d4d;
  font-family: 'Normal', sans-serif;
  font-size: 1.3rem;
}

.key-features li {
  margin-bottom: 10px;
}

.gallery {
  padding: 5vh 5vw;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-item.large {
  width: 500px;
}


.gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-container img.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.lightbox {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  width: auto;      /* preserve natural width */
  height: auto;     /* preserve natural height */
  object-fit: contain; /* ensures the entire image fits without stretching */
  border-radius: 12px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transition: color 0.3s;
}

.lightbox-arrow:hover {
  color: #ffcc00; /* optional highlight on hover */
}

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}

.section-title {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3a0d4d;
  margin: 40px 0 20px;
  padding: 0 20px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 3px;
  width: 100px; 
  transform: translateY(-50%);
  background: linear-gradient(to edge, #4b1a6b, rgba(75,26,107,0));
}

@media (max-width: 768px) {
  .section-title::before,
  .section-title::after {
    display: none;
    content: none;
  }
}

.section-title::before {
  left: -120px;
  background: linear-gradient(to left, #4b1a6b, rgba(75,26,107,0));
}

.section-title::after {
  right: -120px; 
  background: linear-gradient(to right, #4b1a6b, rgba(75,26,107,0));
}

.key-features {
  text-align: left;
}

.key-features-title {
  text-align: center;
}

.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f5f0e1, #e9e3d4); /* soft gradient */
  color: #3a0d4d;
}

.contact-section .section-title {
  margin-bottom: 20px;
}

.contact-section p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #4b1a6b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.contact-button:hover {
  background-color: #c9810e;
  transform: translateY(-2px);
}

.press-kit-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #888888; /* gray for unavailable */
  border-radius: 10px;
  text-decoration: none;
  cursor: not-allowed; /* indicates disabled */
  transition: background 0.3s, transform 0.2s;
}

.press-kit-button:hover {
  background-color: #888888; /* no hover change since unavailable */
  transform: none;
}

.footer {
  text-align: center;
  padding: 15px 20px;
  background-color: #2c2c2c; /* same as navbar or choose another */
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* subtle shadow above footer */
}