/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Video Background */
.video-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Main Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: min(800px, 90vw);
  padding: 0 clamp(15px, 4vw, 20px);
  z-index: 10;
  width: 100%;
}

.hero-title {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Text Styles */
.homepage-text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: clamp(3px, 1vw, 8px);
  text-transform: uppercase;
  color: #f2efe7;
  font-family: "Futura", "Arial Black", Arial, sans-serif;
  margin-bottom: 0.5rem;
}

.name-text {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: #bbd82b;
  letter-spacing: clamp(1.5px, 0.4vw, 2.5px);
  font-family: "Bodoni", "Times New Roman", serif;
}

/* Buttons */
.buttons-container {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.btn {
  padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 40px);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #003337;
  color: #f2efe7;
  border: 2px solid #f2efe7;
  font-family: "Futura", "Arial Black", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(200px, 30vw, 250px);
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: #004a4f;
  outline: none;
}

.btn:active {
  transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(280px, 85vw);
    min-width: auto;
  }
}
