/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  color: #B68F65;
  font-weight: 600;
}

.logo i {
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #B68F65;
}

.oauth-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 2px solid #B68F65;
  color: #B68F65;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #B68F65;
  color: white;
}

.btn-primary {
  padding: 0.5rem 1rem;
  background: #B68F65;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #a0795a;
  transform: translateY(-1px);
}

/* Main content */
main {
  margin-top: 80px;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding: 4rem 0;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.highlight {
  color: #B68F65;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #666;
  text-decoration: none;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #B68F65;
  color: #B68F65;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.blob {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #B68F65, #d4a882);
  border-radius: 50% 40% 60% 30%;
  position: relative;
  animation: blob 8s infinite;
}

.hero-icon {
  position: absolute;
  font-size: 4rem;
  color: white;
  z-index: 2;
}

@keyframes blob {
  0%, 100% {
    border-radius: 50% 40% 60% 30%;
    transform: rotate(0deg);
  }
  25% {
    border-radius: 30% 60% 40% 50%;
    transform: rotate(90deg);
  }
  50% {
    border-radius: 60% 30% 50% 40%;
    transform: rotate(180deg);
  }
  75% {
    border-radius: 40% 50% 30% 60%;
    transform: rotate(270deg);
  }
}

/* Features section */
.features-section {
  background: white;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.feature {
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #B68F65;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.feature p {
  color: #666;
  line-height: 1.7;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #B68F65, #d4a882);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: #B68F65;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .oauth-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .blob {
    width: 200px;
    height: 200px;
  }
  
  .hero-icon {
    font-size: 3rem;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
}