/* Berkana.cc Substack Banner Styles */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --burgundy: #73303C;
  --cream: #f2e5d6;
  --burgundy-light: #8a4452;
  --burgundy-dark: #5c2630;
}

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

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--burgundy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner Container - Substack banner dimensions */
.banner {
  width: 1200px;
  height: 600px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
  border: 3px solid var(--burgundy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative corner elements */
.banner::before,
.banner::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--burgundy);
  opacity: 0.3;
}

.banner::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.banner::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

.logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--burgundy);
  box-shadow: 0 8px 24px rgba(115, 48, 60, 0.2);
}

/* Content Section */
.content {
  flex: 1;
  text-align: left;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy-light);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--burgundy);
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--burgundy);
  transition: all 0.2s ease;
}

.cta:hover {
  background: var(--cream);
  color: var(--burgundy);
}

/* Responsive for preview */
@media (max-width: 1280px) {
  .banner {
    width: 100%;
    max-width: 1200px;
    height: auto;
    aspect-ratio: 2/1;
    padding: 40px;
    gap: 40px;
  }

  .logo {
    width: 150px;
    height: 150px;
  }

  .title {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 24px;
  }

  .content {
    text-align: center;
  }

  .logo {
    width: 120px;
    height: 120px;
  }

  .title {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
