:root {
  --tlanimi-dark: #0f172a;
  --tlanimi-light: #f8fafc;
  --tlanimi-accent: #3b82f6;
  --tlanimi-muted: #64748b;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--tlanimi-dark);
  background-color: var(--tlanimi-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
.brand-font {
  font-family: 'Playfair Display', serif;
}

/* Navbar Customization */
.navbar {
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 48px;
  width: auto;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.navbar-logo-text {
  height: 24px;
  width: auto;
  margin-right: 12px;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at top right, #e2e8f0 0%, transparent 40%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--tlanimi-muted);
  font-weight: 300;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Product Card */
.product-card {
  background: white;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  overflow: hidden;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-logo {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.btn-custom {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary-custom {
  background-color: var(--tlanimi-dark);
  color: white;
  border: 1px solid var(--tlanimi-dark);
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--tlanimi-dark);
}

/* Ambient background elements */
.ambient-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(180deg, rgba(200, 220, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

.shape-1 {
  top: -100px;
  right: -100px;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  background: linear-gradient(180deg, rgba(230, 240, 250, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
}