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

body {
  font-family: 'Instrument Serif', Georgia, serif;
  background-color: #F7F2E6;
  color: #2B2826;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Checkered pattern overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='%23D4E4F7' opacity='0.15'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23D4E4F7' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, #F7F2E6 0%, #F7F2E6 80%, transparent 100%);
}

.site-name {
  font-size: 28px;
  font-weight: 400;
  color: #7B9ED8;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  padding: 12px 28px;
  border: 1.5px solid #7B9ED8;
  border-radius: 50px;
  text-decoration: none;
  color: #7B9ED8;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(247, 242, 230, 0.8);
}

.nav-links a:hover {
  background: #7B9ED8;
  color: #F7F2E6;
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
}

.hero-text {
  font-size: 72px;
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  color: #7B9ED8;
  text-align: center;
  max-width: 1100px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.word {
  display: inline-block;
  margin: 0 8px;
}

/* Image placeholders - polaroid style */
.image-placeholder {
  display: inline-block;
  background: #FFFFFF;
  padding: 12px 12px 40px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 16px;
  vertical-align: middle;
}

.image-placeholder::after {
  content: '[photo]';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  color: #999;
}

.photo-1 {
  width: 140px;
  height: 100px;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B8 100%);
}

.photo-2 {
  width: 130px;
  height: 110px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, #B8D4C8 0%, #A8C4B8 100%);
}

.photo-3 {
  width: 145px;
  height: 95px;
  transform: rotate(-2deg);
  background: linear-gradient(135deg, #F4E4C8 0%, #E4D4B8 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-text {
    font-size: 56px;
  }
  
  .photo-1, .photo-2, .photo-3 {
    width: 110px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-text {
    font-size: 40px;
    gap: 12px;
  }
  
  .photo-1, .photo-2, .photo-3 {
    width: 80px;
    height: 60px;
    margin: 8px;
  }
  
  .image-placeholder::after {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-text {
    font-size: 32px;
  }
  
  .site-name {
    font-size: 22px;
  }
}
