/* Global body styles */
body {
  font-family: 'House of Cards';
  margin: 0;
  padding: 0;
  min-height: 100vh;   /* allow full height page */
  background: url("bg.png") no-repeat center center fixed;
  background-size: cover;
  color: #eee;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow-x: hidden;  /* allow vertical scroll */
  overflow-y: auto;    /* enable scrolling */
}

/* SVG Logo */
svg {
  max-width: 100%;
  height: auto;
}
svg textPath {
  font-size: 150px; /* default for desktop */
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* fills screen height */
  padding-top: 20px;
  padding-bottom: 40px;
}

h1 {
  font-family: 'House of Cards';
  font-size: 5rem;
  font-weight: 900;
  color: #d4af37; /* gold color */
  text-transform: none;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  transform: skewX(-5deg); /* slight tilt/warp effect */
  display: inline-block;
}

/* Subtitle */
p.tagline {
  font-family: 'House of Cards';
  font-size: 1.2rem;
  font-weight: 300;
  margin: 10px 0 20px 0; /* normal spacing */
  color: #f0e6c8;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  letter-spacing: 1px;
}

/* Video Section */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  max-height: 70vh;

  /* Overlay styling */
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
  padding: 15px;
}

.video-container video {
  width: 100%;
  height: auto;
  max-width: 850px;
  max-height: 60vh;
  border-radius: 10px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* Buttons */
.links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: -10px;
  margin-bottom: 20px;
}

.links a {
  background: #222;
  border: 2px solid #d4af37;
  color: #f0e6c8;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'House of Cards';
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: 0.2s;
}
.links a:hover {
  background: #d4af37;
  color: #111;
}

/* Features Section */
.features {
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}
.features h2 {
  font-family: 'House of Cards';
  color: #d4af37;
  text-align: center;
}
.features ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}
.features li::before {
  content: "• ";
  color: #d4af37;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px auto;
  width: 90%;
  max-width: 900px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* About */
.about {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  font-family: 'House of Cards';
}
.about h2 {
  font-family: 'House of Cards';
  color: #d4af37;
}

/* Signup */
.signup {
  margin: 40px auto;
  text-align: center;
  font-family: 'House of Cards';
}
.signup input {
  padding: 10px;
  border: 2px solid #d4af37;
  border-radius: 6px;
  font-size: 1rem;
  margin-right: 10px;
}
.signup button {
  background: #d4af37;
  font-family: 'House of Cards';
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.signup button:hover {
  background: #b8962f;
}

/* Footer */
footer {
  margin-top: 50px;
  padding: 20px;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}
footer a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  svg textPath {
    font-size: 50px; /* shrink arc logo on tablets */
  }
  .video-container video {
    max-width: 95%;
    height: auto;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  svg textPath {
    font-size: 120px;  /* shrink arc logo on phones */
    letter-spacing: -3px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .signup input {
    display: block;
    margin: 10px auto;
    font-family: 'House of Cards';
  }
  .signup button {
    margin-top: 10px;
    display: block;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'House of Cards';
  }
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Optional: limit size so it doesn’t get too huge on large screens */
@media (min-width: 1024px) {
  .logo {
    max-width: 600px;
  }
}
@media (max-width: 480px) {
  .logo {
    max-width: 90%;
  }
}