:root {
  --gold: #d4af37;
  --gold-light: #e6c567;
  --gold-dark: #b8860b;
  --black: #0f0f0f;
  --gray-dark: #1a1a1a;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--black);
  color: #f5f5f5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.text-gold {
  color: var(--gold);
}

.border-gold {
  border-color: var(--gold);
}

.bg-gold {
  background-color: var(--gold);
}

.bg-black {
  background-color: var(--black);
}

.bg-gray-dark {
  background-color: var(--gray-dark);
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(15, 15, 15, 0.7) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 300px;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.pillar-card {
  background: var(--gray-dark);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-card {
  background: var(--gray-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
}

.press-card {
  background: var(--gray-dark);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.press-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.press-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.9) 0%,
    transparent 100%
  );
}

.source-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-thumb {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
}

.video-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumb:hover .play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--gold);
}

.video-container-modal {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 5px;
}

.video-container-modal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.view-more {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-more:hover {
  background: var(--gold);
  color: var(--black);
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 23px;
  width: 1px;
  height: calc(100% + 25px);
  background: rgba(212, 175, 55, 0.3);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  position: relative;
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 1rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 10px;
}

.footer {
  background: linear-gradient(to top, var(--black) 0%, var(--gray-dark) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-btn {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

.menu-btn span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: all 0.3s ease;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

.menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-menu {
  transition: all 0.4s ease;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 90;
  padding-top: 80px;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 100;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.quote-mark {
  position: absolute;
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.1);
  z-index: -1;
  top: -50px;
  left: -30px;
  font-family: "Cormorant Garamond", serif;
}

.media-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.media-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 5px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Contact Page Specific Styles */
.contact-hero {
  height: 60vh;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
}

.side-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.side-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}

.side-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-gallery-item:hover img {
  transform: scale(1.05);
}

.side-gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.side-gallery-item:hover .caption {
  transform: translateY(0);
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--gray-dark);
  border-radius: 10px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 5px;
  color: white;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.form-textarea {
  min-height: 120px;
  resize: none;
}
textarea {
  min-height: 120px;
}

.submit-btn {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.info-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

@media (max-width: 768px) {
  .side-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
    .hero {
        background-position: 75% 100% !important; 
    }
}