/* Home.css */

/* Global Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background-color: linear-gradient(to bottom, #1e2040, #252d59);
  color: #f2e1ae;
}

/* Container */
.home-container {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(116, 107, 115, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 24px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(218, 201, 223, 0.1);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #f2a007;
  color: #0d090b;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #f8f082;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Section Text */
.section-text {
  font-size: 1.1rem;
  color: #52504f;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.8;
  padding: 0 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  text-align: center;
}

/* Values Section */
.values-section {
  background-color: #232842;
  padding: 5rem 1rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.value-card {
  background-color: #f1f1f5;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d9bbb0, #d9bbb0);
  color:#0d090b;
  text-align: center;
  padding: 5rem 1rem;
}

.cta-button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #e9b657;
  color: #0d090b;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e0e0e0;
}
