/* assets/css/about.css */
body {
  margin:0;
}

.template-about {
  font-family: 'Libre Baskerville', serif;
  background: #d9e6f6;
}

main .about {
  min-height: calc(100% - 16rem);
}

.template-about .footer {
    background:#d9e6f6;
}

.template-about .site-header {
    background:#d9e6f6;
}

.about {
    display: flex;
    justify-content: center;
  min-height: calc(100vh - 20rem);
}

.about a {
  text-decoration: none;
  color: black;
}

.about-flow {
  font-style: italic;
  line-height: 1.6;
  font-size: 1.4rem;
  max-width: 36rem;
}

.about-text {
  display: inline-block;
  width: auto;
}

.about-text p {
  margin: 0;
}

.about-image {
  display: inline-block;

  /* vertical-align: middle; */
  margin: 0 0.3em;
}

.about-image img {
  display: block;
  height: auto;
}

/* Sizes */
.size-small img { height: 1.2em; }
.size-medium img { height: 2.5em; }
.size-large img { height: 4em; }

/* Optional positioning tweaks */
.align-left { float: left; margin-right: 1em; }
.align-right { float: right; margin-left: 1em; }
.align-center { display: block; margin: 1em auto; }

.about-page {
    min-height: 100vh;
    background: #d9e6f6;
    padding: 2rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.about-title {
    font-family: 'Averia Serif Libre', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

/* Layout Content (from Kirby Layout field) */
.about-content {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 4rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-family: 'Averia Serif Libre', serif;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-item {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item.address {
    color: #666;
}

.contact-item.email a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item.email a:hover {
    color: #667eea;
}

/* Instagram Embed */
.instagram-embed {
    margin: 3rem 0;
    text-align: center;
}

.instagram-embed iframe {
    max-width: 100%;
    border-radius: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.social-link:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        padding: 2.4rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 5rem 1rem 2rem;
    }

    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.about-credits {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.site-by {
    font-size: 0.8rem;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-by a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-by a:hover {
    color: #333;
}