/* Modern Balance - Clean & Natural Design System */

:root {
  --primary-green: #7a9b76;
  --soft-sage: #a8b5a1;
  --warm-cream: #f8f6f2;
  --soft-white: #ffffff;
  --text-dark: #2c3e35;
  --text-medium: #5a6d60;
  --accent-gold: #c9b896;
  --border-light: #e5e3dd;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--warm-cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}

/* Navigation */
nav {
  background-color: var(--soft-white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-green);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-white) 100%);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-green);
  color: var(--soft-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-green);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

/* Section Styling */
section {
  padding: 5rem 2rem;
}

.section-light {
  background-color: var(--soft-white);
}

.section-cream {
  background-color: var(--warm-cream);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.card {
  background: var(--soft-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.credentials {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-top: 0.5rem;
  font-weight: 400;
}

.profile-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--soft-sage) 0%, var(--primary-green) 100%);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  font-size: 4rem;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  background: var(--soft-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-info h3 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.email-link {
  font-size: 1.3rem;
  color: var(--primary-green);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--primary-green);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--soft-white);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer p {
  color: var(--soft-sage);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
