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

body {
  /* Papyrus - the ultimate "duрацкий" font */
  font-family: 'Papyrus', 'Chiller', 'Jokerman', cursive, sans-serif;
  /* Gypsy Vintage Ethnic Pattern Background - tiles seamlessly */
  background: #ff6600 url('https://img.freepik.com/premium-vector/abstract-gypsy-vintage-ethnic-seamless-pattern-ornamental-tiled-floral-doodle-design_308835-1693.jpg') repeat 0 0;
  background-size: 400px 400px;
  /* White text with strong shadow for readability on busy pattern */
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 3px 3px 6px #000000, -1px -1px 2px #000000;
}

/* Roma Theme Colors */
:root {
  --bg-primary: #ff6600;
  --bg-secondary: #ffcc00;
  --bg-card: #00ff00;
  --accent-gold: #ffcc00;
  --accent-red: #ff0000;
  --accent-green: #00ff00;
  --accent-purple: #ff00ff;
  --accent-cyan: #00ffff;
  --text-primary: #ffffff;
  --text-muted: #e0e0e0;
  --border-color: #00ffff;
}

/* Sparkle Animation */
@keyframes sparkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes rainbow {
  0% { color: #ff0000; }
  20% { color: #ffcc00; }
  40% { color: #00ff00; }
  60% { color: #00ffff; }
  80% { color: #ff00ff; }
  100% { color: #ff0000; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #ff0000 0%, #ff00ff 50%, #0000ff 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 5px ridge #ffcc00;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><polygon points="30,0 60,60 0,60" fill="%23ffcc00" opacity="0.2"/></svg>'),
    linear-gradient(180deg, #ff0000 0%, #ff00ff 50%, #0000ff 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: 'Impact', 'Arial Black', sans-serif;
  color: #ffcc00;
  text-shadow: 4px 4px 8px #000000, 0 0 20px #ff0000;
  letter-spacing: 3px;
  transform: rotate(-2deg);
}

.hero-subtitle {
  color: #00ffff;
  font-size: 24px;
  font-style: italic;
  text-shadow: 2px 2px 4px #000000;
  animation: rainbow 3s infinite;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #ff0000, #ffcc00, #00ff00, #00ffff, #ff00ff, #ff0000);
  background-size: 300% 100%;
  animation: rainbow 5s linear infinite;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  z-index: 100;
  border-bottom: 3px ridge #ffff00;
  flex-wrap: wrap;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px outset #ffffff;
  background: rgba(0,0,0,0.5);
  text-shadow: 1px 1px 2px #000000;
  transition: all 0.2s;
  font-family: 'Verdana', sans-serif;
}

.nav a:hover {
  background: #ffcc00;
  color: #ff0000;
  border-style: inset;
  transform: scale(1.1);
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Sections */
.section {
  margin-bottom: 60px;
}

.section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px double #ffcc00;
  color: #ffcc00;
  text-shadow: 3px 3px 6px #000000;
  font-family: 'Georgia', 'Times New Roman', serif;
  text-align: center;
  font-style: italic;
}

.section-desc {
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  font-size: 18px;
  font-family: 'Courier New', monospace;
}

/* Content Block */
.content-block {
  background: linear-gradient(135deg, #00ff00 0%, #00ffff 100%);
  border-radius: 20px;
  padding: 24px;
  border: 5px ridge #ffcc00;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

.content-block p {
  margin-bottom: 16px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
}

.intro-text {
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  font-style: italic;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px #000000;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.info-card {
  background: linear-gradient(180deg, #ff00ff 0%, #ff0000 100%);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 3px ridge #ffcc00;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

.info-icon {
  font-size: 40px;
  animation: bounce 1s infinite;
}

.info-card strong {
  display: block;
  font-size: 14px;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Impact', sans-serif;
}

.info-card p {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
}

/* Timing Note */
.timing-note {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #ffcc00 0%, #ff0000 100%);
  border-radius: 15px;
  border: 4px ridge #00ff00;
  text-align: center;
}

.timing-note h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Papyrus', cursive;
}

.timing-note p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px #000000;
}

.timing-note strong {
  color: #00ffff;
}

/* Dress Code Section */
.dresscode-tips {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(180deg, #ff00ff 0%, #0000ff 100%);
  border-radius: 15px;
  border: 4px ridge #ffcc00;
}

.dresscode-tips h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #00ffff;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px #000000;
}

.tips-list li strong {
  color: #00ffff;
}

.dresscode-note {
  background: rgba(0, 255, 255, 0.3);
  padding: 16px;
  border-radius: 10px;
  border: 3px dashed #ff00ff;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

.dresscode-note strong {
  color: #00ffff;
}

/* Dress Code Notice Boxes */
.dresscode-notice {
  margin: 24px 0;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 4px ridge;
}

.dresscode-notice .notice-icon {
  font-size: 50px;
  flex-shrink: 0;
  animation: bounce 1.5s infinite;
}

.dresscode-notice .notice-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00ffff;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
}

.dresscode-notice .notice-content p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px #000000;
}

.dresscode-notice .notice-content strong {
  color: #00ffff;
}

.dresscode-notice.previous-guests {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.8) 0%, rgba(255, 0, 0, 0.8) 100%);
  border-color: #ffcc00;
}

.dresscode-notice.creatures {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.8) 0%, rgba(0, 0, 255, 0.8) 100%);
  border-color: #00ffff;
}

.creatures-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.creatures-list li {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px #000000;
}

.creatures-list li strong {
  color: #00ffff;
}

.creatures-note {
  font-size: 14px;
  font-style: italic;
  color: #ffffff;
  margin-top: 12px;
}

/* Dress Code Gallery */
.gallery-title {
  font-size: 28px;
  color: #00ffff;
  margin: 32px 0 8px;
  text-align: center;
  text-shadow: 3px 3px 6px #000000;
  font-family: 'Impact', sans-serif;
  font-style: italic;
}

.gallery-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: 'Courier New', monospace;
}

.dresscode-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ffcc00;
  border: 4px ridge #ff00ff;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(2deg);
  border-color: #ffff00;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #ff0000 0%, transparent 100%);
  color: #ffffff;
  padding: 40px 12px 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Verdana', sans-serif;
}

.gallery-note {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  font-style: italic;
  margin-top: 16px;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.resource-card {
  background: linear-gradient(180deg, #00ffff 0%, #00ff00 100%);
  border-radius: 15px;
  padding: 20px;
  border: 3px ridge #ff00ff;
  transition: transform 0.2s;
}

.resource-card:hover {
  transform: scale(1.05);
  border-color: #ffcc00;
}

.resource-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
}

.resource-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px #000000;
}

.resource-link {
  color: #00ffff;
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
}

.resource-link:hover {
  color: #ffcc00;
  text-decoration: none;
}

/* Moodboard 6 Images Grid */
.moodboard-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.moodboard-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 3px ridge #00ff00;
}

.moodboard-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moodboard-item:hover img {
  transform: scale(1.1);
}

/* Fun Invitation Text */
.viking-invitation {
  margin-top: 32px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.3) 100%);
  border-radius: 20px;
  border: 4px ridge #ff0000;
  text-align: center;
}

.rune-divider {
  font-size: 30px;
  color: #00ffff;
  letter-spacing: 15px;
  margin: 16px 0;
  animation: sparkle 2s infinite;
}

.viking-invitation h3 {
  font-size: 28px;
  color: #00ffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Impact', sans-serif;
  font-style: italic;
  transform: rotate(-1deg);
}

.invitation-text {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px #000000;
}

.invitation-text strong {
  color: #00ffff;
  font-family: 'Impact', sans-serif;
}

/* Dictionary Section */
.dictionary-category {
  font-size: 22px;
  color: #00ffff;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 3px double #00ffff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.dictionary-category:first-child {
  margin-top: 0;
}

.dictionary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dictionary-card {
  background: linear-gradient(180deg, #ff00ff 0%, #ff0000 100%);
  border-radius: 15px;
  padding: 20px;
  border: 3px ridge #ffcc00;
  transition: transform 0.2s;
}

.dictionary-card:hover {
  transform: scale(1.05) rotate(-1deg);
  border-color: #00ffff;
}

.word-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.word {
  font-size: 24px;
  font-weight: bold;
  color: #00ffff;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Impact', sans-serif;
}

.pronunciation {
  font-size: 16px;
  color: #ffffff;
  font-style: italic;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
}

.word-meaning {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px #000000;
}

.word-origin {
  font-size: 13px;
  color: #00ffff;
  margin-bottom: 8px;
  font-style: italic;
}

.word-example {
  font-size: 14px;
  color: #00ffff;
  margin: 0;
}

/* Insult Cards - Special Style */
.insult-card {
  border-color: #ff0000;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.8) 0%, rgba(128, 0, 128, 0.8) 100%);
}

.insult-card:hover {
  border-color: #00ffff;
}

/* Number Cards */
.number-card {
  text-align: center;
}

.number-card .word-header {
  justify-content: center;
}

.number-card .word {
  font-size: 28px;
}

.highlight-card {
  border-color: #00ffff;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.5) 0%, rgba(255, 0, 0, 0.8) 100%);
}

/* Gifts Notice Box */
.gifts-notice {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.8) 0%, rgba(0, 255, 255, 0.8) 100%);
  border: 4px ridge #00ff00;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.notice-icon {
  font-size: 60px;
  flex-shrink: 0;
  animation: bounce 1s infinite;
}

.notice-content h3 {
  font-size: 22px;
  color: #00ffff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
}

.notice-content p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px #000000;
}

.notice-content strong {
  color: #00ffff;
}

.notice-video {
  background: rgba(0,0,0,0.5);
  padding: 16px;
  border-radius: 10px;
  margin: 16px 0;
  text-align: center;
}

.video-link {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #ff0000, #ff6600);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  border: 2px outset #00ffff;
  text-shadow: 1px 1px 2px #000000;
}

.video-link:hover {
  background: linear-gradient(180deg, #ff6600, #ff0000);
  border-style: inset;
}

.notice-small {
  font-size: 14px;
  font-style: italic;
  color: #00ffff;
}

/* Gifts Grid */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.gift {
  background: linear-gradient(180deg, #00ff00 0%, #00ffff 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  border: 3px ridge #ffcc00;
}

.gift:hover {
  transform: scale(1.05) rotate(1deg);
  border-color: #ff00ff;
}

.gift-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffff00;
  padding: 16px;
}

.gift-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gift-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
}

.gift-description {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px #000000;
}

.gift-link {
  color: #00ffff;
  text-decoration: underline;
  font-size: 14px;
  margin-bottom: 12px;
  display: inline-block;
}

.gift-link:hover {
  color: #ffcc00;
}

.gift-no-link {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 12px;
  display: inline-block;
  font-style: italic;
}

.gift-status {
  font-size: 15px;
  margin-bottom: 12px;
  color: #00ffff;
  font-weight: bold;
}

.gift-status.booked {
  color: #ffcc00;
}

.book-btn, .unbook-btn {
  width: 100%;
  padding: 12px;
  border: 2px outset #ffcc00;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Papyrus', cursive;
}

.book-btn {
  background: linear-gradient(180deg, #ffcc00, #ff9900);
  color: #ff0000;
}

.book-btn:hover {
  border-style: inset;
  transform: scale(1.05);
}

.unbook-btn {
  background: linear-gradient(180deg, #ff0000, #cc0000);
  color: #ffffff;
}

.unbook-btn:hover {
  border-style: inset;
  transform: scale(1.05);
}

/* Map */
.map-container {
  margin: 24px 0;
  border-radius: 15px;
  overflow: hidden;
  border: 4px ridge #00ff00;
}

.map-container iframe {
  display: block;
}

.map-coords {
  background: linear-gradient(180deg, #ff00ff, #ff0000);
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

.map-coords code {
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #00ffff;
}

/* Transport Info */
.transport-info h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: #00ffff;
  text-shadow: 2px 2px 4px #000000;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.transport-info p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px #000000;
}

.transport-info .important {
  background: rgba(0, 255, 255, 0.3);
  border-left: 4px solid #00ffff;
  padding: 12px 16px;
  margin: 16px 0;
  color: #00ffff;
  font-weight: bold;
}

.train-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #00ffff, #0000ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  border: 2px outset #ffffff;
}

.train-link:hover {
  background: linear-gradient(180deg, #0000ff, #00ffff);
  border-style: inset;
}

/* FAQ */
.faq-list {
  background: linear-gradient(180deg, #ffcc00 0%, #ff0000 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 4px ridge #00ff00;
}

.faq-item {
  border-bottom: 2px solid #ff9900;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  position: relative;
  color: #ffffff;
  font-size: 17px;
  text-shadow: 1px 1px 2px #000000;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: '💫';
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-item[open] summary:after {
  content: '✨';
}

.faq-item p {
  padding: 0 20px 20px;
  color: #ffffff;
  line-height: 1.6;
  font-size: 15px;
}

/* Contact */
.contact a {
  color: #00ffff;
  text-decoration: underline;
}

.contact a:hover {
  color: #ffcc00;
}

.skol {
  font-size: 24px;
  color: #00ffff;
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
  animation: rainbow 3s infinite;
  font-family: 'Impact', sans-serif;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: #ffffff;
  border-top: 3px ridge #ffcc00;
  background: linear-gradient(180deg, #0000ff, #ff00ff);
  font-size: 18px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* Loading */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #00ffff;
  font-size: 20px;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .gifts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .moodboard-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dresscode-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dictionary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gifts-notice,
  .dresscode-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .notice-icon,
  .dresscode-notice .notice-icon {
    font-size: 50px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .nav {
    gap: 12px;
  }
  
  .nav a {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .container {
    padding: 24px 16px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .gifts-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .moodboard-grid-6 {
    grid-template-columns: 1fr;
  }
  
  .dresscode-gallery {
    grid-template-columns: 1fr;
  }
  
  .viking-invitation {
    padding: 24px 16px;
  }
  
  .rune-divider {
    letter-spacing: 10px;
    font-size: 24px;
  }
  
  .dictionary-grid {
    grid-template-columns: 1fr;
  }
  
  .word-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tips-list li {
    font-size: 14px;
  }
}
