/* ========================================
   LAYOUT & CONTAINERS
======================================== */

/* Hero Section */
.hero-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('../new_homepage_header.jpg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}

.hero-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 60vh;
}

.hero-info-box {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #FFF;
  border-radius: 20px;
  padding: 50px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 830px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Get Started Section */
.get-started-section {
  background-color: #535353;
  padding: 80px 0;
  position: relative;
}

.get-started-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.get-started-content {
  padding-right: 40px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid #38383B;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 9px;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #A8A6A1;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #A8A6A1;
  font-size: 16px;
  z-index: 10;
}

.loading-spinner {
  border: 3px solid #38383B;
  border-top: 3px solid #A8A6A1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

/* Features Section */
.features-section {
  background-color: #000000;
  padding: 80px 0;
  position: relative;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

/* Upcoming Events Section */
.upcoming-events-section {
  position: relative;
  overflow: hidden;
}

.events-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.events-link:hover {
  transform: scale(1.02);
  border: 2px solid;
  border-color: #A8A6A1;
}

.events-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('events_background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  transition: filter 0.3s ease;
}

.upcoming-events-section:hover .events-background {
  filter: blur(2px);
}

.events-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  transition: background 0.3s ease;
}

.upcoming-events-section:hover .events-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.events-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

/* Auction Section */
.auction-section {
  background-color: #38383B;
  padding: 80px 0;
}

.auction-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.auction-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: #000000;
  padding: 60px 0 30px;
  border-top: 1px solid #38383B;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-section {
  grid-column: 1 / 2;
}

.newsletter-section {
  grid-column: 2 / 3;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  border-top: 1px solid #38383B;
  padding-top: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
