:root {
  --primary-color: #e63946;
  --primary-dark: #c1121f;
  --accent-color: #d4a373;
  --bg-dark: #0f111a;
  --bg-darker: #08090e;
  --text-main: #fdfdfd;
  --text-muted: #a0a5b5;
  --glass-bg: rgba(15, 17, 26, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(8, 9, 14, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-auth {
  display: flex;
  gap: 15px;
  align-items: center;
}

.login-btn {
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-btn:hover {
  color: var(--primary-color);
}

.btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  background-image: url('./assets/background.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 9, 14, 0.95) 0%, rgba(8, 9, 14, 0.7) 50%, rgba(8, 9, 14, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(230, 57, 70, 0.15);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #d4a373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Glassmorphism Quick Search */
.quick-search {
  position: relative;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 120px;
}

.search-group label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 15px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.search-group select:focus {
  border-color: var(--primary-color);
}

.quick-search .btn {
  padding: 14px 30px;
  height: 46px;
  margin-top: 25px;
}

/* Features Section */
.features {
  padding: 100px 10%;
  background-color: var(--bg-dark);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 57, 70, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
}

.feature-card p {
  color: var(--text-muted);
}

/* About/Culture Section */
.culture-section {
  padding: 100px 10%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.culture-image {
  flex: 1;
  position: relative;
}

.culture-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.culture-content {
  flex: 1;
}

.culture-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.culture-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.check-list {
  list-style: none;
  margin-top: 30px;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.check-icon {
  color: var(--primary-color);
  background: rgba(230, 57, 70, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Call to action */
.cta-section {
  padding: 100px 10%;
  text-align: center;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(8, 9, 14, 1) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  font-size: 18px;
  padding: 15px 40px;
}

/* Footer */
footer {
  background-color: var(--bg-darker);
  padding: 60px 10% 30px;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-col ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 42px; }
  .culture-section { flex-direction: column; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 0 5%; }
  .quick-search { flex-direction: column; width: 100%; }
  .search-group { width: 100%; }
  .quick-search .btn { width: 100%; }
  .footer-content { grid-template-columns: 1fr; }
}
