/* Base Colors */
:root {
  --gold-color: #a2823b;
  --accent-color: #dddddd;
  --background-color: #0d0902;
  --section-background: #000000;
}

/* Scrollbar style for Webkit browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-color);
  border-radius: 4px;
  border: 2px solid var(--background-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c49a50; /* Slightly lighter gold on hover */
}

/* Firefox scrollbar (limited customization) */
* {
  scrollbar-color: var(--gold-color) var(--background-color);
  scrollbar-width: thin;
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--gold-color);
}

a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Header */
header {
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-link {
  font-weight: 600;
}

.header-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero {
  min-height: calc(100dvh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 900px) {
  .hero {
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 30px;
  }
}

.hero-logo {
  max-width: 150px;
  margin-bottom: 30px;
}

.hero-logo {
  width: 200px;
  max-width: 80%;
  opacity: 0;
  animation:
    heroFadeInScale 2s ease-out forwards,
    heroPulse 6s ease-in-out infinite 2s;
}

@keyframes heroFadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px var(--gold-color));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px var(--gold-color));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px var(--gold-color));
  }
}

.hero-title {
  font-size: 2.4rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.4;
  font-weight: 400;
}

/* Discover Button */
.discover-button {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--gold-color);
  border-radius: 30px;
  font-weight: 600;
  color: var(--gold-color);
  transition: background 0.3s, color 0.3s;
}

.discover-button:hover {
  background-color: var(--gold-color);
  color: var(--background-color);
}

/* Principles Section */
.principles {
  background-color: var(--section-background);
  padding: 60px 20px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.principle h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-color);
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

.principle p {
  font-size: 1rem;
  color: var(--gold-color);
  line-height: 1.4;
  word-break: break-word;
}

/* Videos Section */
.videos {
  padding: 60px 20px;
  text-align: center;
}

.videos-title {
  margin-bottom: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-color);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.video-card {
  background-color: var(--section-background);
  padding: 10px;
  border: 1px solid var(--gold-color);
  border-radius: 8px;
  color: var(--gold-color);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.video-card:hover {
  box-shadow: 0 0 12px rgba(162, 130, 59, 0.5);
  transform: translateY(-4px) scale(1.02);
  cursor: pointer;
}

.video-card p {
  font-size: 0.85rem; /* smaller caption */
  color: var(--gold-color);
  transition: color 0.3s;
  text-align: left;
  margin-top: 8px;
}

.video-thumbnail {
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  border-radius: 6px;
  transition: filter 0.3s;
}

.video-card:hover .video-thumbnail img {
  filter: brightness(1.1);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem; /* bigger icon */
  color: var(--gold-color);
  opacity: 0.95;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  transition: color 0.3s;
}

@media (max-width: 600px) {
  .play-icon {
    font-size: 2.2rem;
  }
}

.play-icon:hover {
  color: var(--accent-color);
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--section-background);
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gold-color);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 60px;
}

.footer-left .footer-brand {
  font-size: 0.85rem;
}

.footer-left .footer-rights {
  font-size: 0.7rem;
  opacity: 0.8;
}

.footer-links a {
  margin-left: 20px;
}
