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

body {
  font-family: 'EB Garamond', serif;
  background-color: #fdf8f0;
  /* Light cream background */
  color: #1b4c3f;
  /* Default foreground color */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

/* Logo styling */
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  display: block;
}

/* Brand name */
.brand-name {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  color: #1b4c3f;
}

/* Tagline */
.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #1b4c3f;
  opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
  .logo {
    max-width: 200px;
    margin-bottom: 30px;
  }

  .brand-name {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .brand-name {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .tagline {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
  }
}