/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

:root {
  --logo-color: #688078;
  --text-color: #443;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, #fcfcfc 0%, #dedfe0 100%);
  background-attachment: fixed;
  padding-bottom: 50px;
}

.logo {
  font-family: 'Lora', serif;
  color: var(--logo-color);
}

.logo-text {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  background: linear-gradient(180deg, #8ca79e 0%, #688078 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* fallback for browsers that don't support background-clip: text */
}

.logo-subtext {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtext::before,
.logo-subtext::after {
  content: '';
  width: 75px;
  height: 3px;
  background-color: var(--logo-color);
  flex-shrink: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main content */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero {
  text-align: center;
  margin: 5rem 0;
}

a {
  color: var(--text-color);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Mobile styles for logo, info and contact sections */
@media (max-width: 768px) {
  .logo {
    margin: 1rem 0 !important;
  }

  .logo-text {
    font-size: 3rem !important;
    /* Reduce from 4rem */
  }

  .logo-subtext {
    font-size: 1.1rem !important;
    /* Reduce from 1.5rem */
  }

  .logo-subtext::before,
  .logo-subtext::after {
    width: 50px !important;
    /* Reduce from 75px */
  }

  .info {
    font-size: 1rem !important;
    padding: 0 1rem !important;
    width: 100% !important;
    /* Override Bootstrap fs-4 */
  }

  .contact {
    font-size: 0.9rem !important;
    padding: 0 1rem !important;
    width: 100% !important;
    /* Override Bootstrap fs-5 */
  }
}
