@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=the-seasons@400,500,700&display=swap');

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    color: #e8e8f2;
    background: #00183d;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(5, 12, 28, 0.473);
    backdrop-filter: blur(4px); 
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    width: 100%;
    padding:12px 24px;
    gap:400px;
}

.logo {
    font-family: "TheSeasons", "The Seasons", Georgia, "Times New Roman", serif;
    font-variant: small-caps;
    letter-spacing: 2px;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.logo {
    margin-left: 0;
}

.main-nav ul {
    display: flex;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: "TheSeasons", "The Seasons", Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.main-nav a.active,
.main-nav a:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.site-footer {
    background: #ffffff;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #000;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
    font-size: 0.95rem;
}

.footer-item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.footer-item:hover {
    color: #00183d;
}

.footer-item:hover .icon {
    border-color: #00183d;
    background: #00183d;
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-item {
        font-size: 0.9rem;
    }
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 999px;
}

.btn-primary {
    background: #ffffff;
    color: #00183d;
}

h1, h2, h3, h4, h5, h6,
.eyebrow, .headline {
    font-family: "TheSeasons", "The Seasons", Georgia, "The Seasons", serif;
}

.footer {
  background: white;
  color: #333;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-stickers {
  margin-bottom: 20px;
}

.stickers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.stickers li {
  display: inline-block;
}

.stickers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00183d;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.stickers a:hover {
  background: #001a40;
  transform: translateY(-2px);
}

.footer p {
  margin: 0;
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  font-size: 0.9rem;
  color: #666;
}

.footer p a {
  color: #00183d;
  text-decoration: none;
  font-weight: 600;
}

.footer p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .stickers {
    gap: 15px;
  }
  
  .stickers a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}