/* Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --pistachio: #93C572;
  --mint-green: #A8E6CF;
  --dark-pistachio: #7BA85C;
  --light-mint: #C8F5E0;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --bg-light: #F8FAF9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  overflow: hidden;
}

.landing-container {
  display: flex;
  height: 100vh;
}

.landing-left {
  position: relative;
  flex: 1;
  background-image: url('images/landing-background.jpg');
  background-size: cover;
  background-position: center;
}

.landing-right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
}

.logo-container {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 150px;
  width: auto;
}

.logo-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-left: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.content {
  max-width: 85%;
}

h1 {
  font-size: 72px;
  margin-bottom: 32px;
  margin-top: 0;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--pistachio) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 150px;
  margin-bottom: 40px;
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: -3px;
  font-weight: 800;
  line-height: 0.9;
  background: linear-gradient(135deg, 
    #667eea 0%,      /* Deep Blue */
    #764ba2 12%,     /* Purple */
    #f093fb 25%,     /* Pink */
    #4facfe 37%,     /* Sky Blue */
    #00f2fe 50%,     /* Cyan */
    #4FD1C5 62%,     /* Turquoise */
    #7EC850 75%,     /* Lime Green */
    #a8edea 87%,     /* Mint */
    #fed6e3 100%     /* Soft Pink */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 6px rgba(102, 126, 234, 0.4));
  animation: gradient-shift 20s ease infinite;
  background-size: 300% 300%;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 400;
}

.tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.description {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 400;
  white-space: pre-line;
  max-width: 95%;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateX(3px);
}

.feature-item i {
  font-size: 20px;
  color: var(--pistachio);
  min-width: 20px;
  transition: transform 0.3s;
}

.feature-item:hover i {
  transform: scale(1.15);
}

.feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  background: #4FD1C5;
  color: white;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(79, 209, 197, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #38B2AC;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(79, 209, 197, 0.6);
}

.btn span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
  }
  
  .landing-left {
    height: 30vh;
  }
  
  .landing-right {
    padding: 30px 20px;
    overflow-y: auto;
  }
  
  .content {
    max-width: 100%;
  }
  
  h1 {
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 1;
  }
  
  .hero-title {
    font-size: 64px;
    letter-spacing: -1.5px;
    line-height: 0.95;
    margin-bottom: 30px;
  }
  
  .tagline {
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .description {
    font-size: 16px;
  }
  
  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 0;
  }
  
  .feature-item i {
    font-size: 18px;
  }
  
  .feature-item span {
    font-size: 14px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}
