:root {
  --background: #f8f5f0;
  --foreground: #3c3228;
  --card: #fffcf8;
  --card-foreground: #3c3228;
  --primary: #6b5b4c;
  --primary-foreground: #f8f5f0;
  --secondary: #e9e1d7;
  --secondary-foreground: #3c3228;
  --muted: #e9e1d7;
  --muted-foreground: #7d6e5f;
  --accent: #d4c8b8;
  --accent-foreground: #3c3228;
  --destructive: #c97f5d;
  --destructive-foreground: #f8f5f0;
  --border: #e9e1d7;
  --input: #e9e1d7;
  --ring: #b8a99a;
  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-pattern {
  background-color: #f8f5f0;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c8b8' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 5rem 0;
  border-bottom: 1px solid var(--accent);
}

.text-center {
  text-align: center;
}

.title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
  color: var(--primary);
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  font-style: italic;
  letter-spacing: 0.5px;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.section {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: 'Georgia', serif;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent);
}

.card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(107, 91, 76, 0.07);
  border: 1px solid var(--accent);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--muted-foreground);
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.4rem 0.65rem;
  color: #7d6e5f;
  background-color: rgba(212, 200, 184, 0.2);
  border: 1px solid var(--accent);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: #6b5b4c;
  background-color: rgba(212, 200, 184, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(107, 91, 76, 0.1);
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  margin-right: 0.5rem;
  padding: 0.4rem 0.65rem;
  color: #8a7b6d;
  background-color: rgba(212, 200, 184, 0.2);
  border: 1px solid var(--accent);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.calendar-link:hover {
  color: #6b5b4c;
  background-color: rgba(212, 200, 184, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(107, 91, 76, 0.1);
}

.icon {
  margin-right: 0.4rem;
  stroke-width: 2;
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
}

.map-link:hover .icon,
.calendar-link:hover .icon {
  transform: scale(1.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 3px solid var(--card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-image:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.prose {
  max-width: 65ch;
  margin: 0 auto;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.5px;
}

.button.primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 2px 10px rgba(107, 91, 76, 0.2);
}

.button.primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 91, 76, 0.3);
}

.button.outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.button.outline:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.button.ghost {
  background-color: transparent;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.button.ghost:hover {
  color: var(--foreground);
}

.footer {
  background-color: var(--accent);
  padding: 2rem 0;
  margin-top: 5rem;
  border-top: 1px solid var(--border);
}

.small {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.hidden {
  display: none;
}

.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  z-index: 100;
  transition: all 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-item {
  background-color: rgba(255, 252, 248, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  min-width: 100px;
  border: 1px solid var(--accent);
}

.countdown-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.countdown-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Styled unordered lists */
ul {
  list-style: none;
  padding-left: 0.5rem;
  margin: 1rem 0;
}

ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
}

ul.fancy-list li::before {
  background-color: transparent;
  border: 1px solid var(--accent);
  width: 0.6rem;
  height: 0.6rem;
  top: 0.45rem;
  transform: rotate(45deg);
  border-radius: 0;
}

ul.fancy-list li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

ul.fancy-list li a:hover {
  color: var(--destructive);
  text-decoration: underline;
}

ul.check-list li::before {
  content: "✓";
  background-color: transparent;
  color: var(--primary);
  font-size: 0.9rem;
  top: 0;
  width: auto;
  height: auto;
}

.card ul:last-child {
  margin-bottom: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add animation delay for sections */
.section:nth-child(1) {
  animation-delay: 0.2s;
}

.section:nth-child(2) {
  animation-delay: 0.3s;
}

.section:nth-child(3) {
  animation-delay: 0.4s;
}

.section:nth-child(4) {
  animation-delay: 0.5s;
}

.section:nth-child(5) {
  animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.25rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .countdown-item {
    min-width: 80px;
  }
  
  .venue-container {
    flex-direction: column;
  }
  
  .venue-image {
    margin-top: 1rem;
    margin-left: 0;
  }
} 

/* Venue styles */
.venue-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.venue-info {
  flex: 1;
}

.venue-image {
  flex-shrink: 0;
}

.venue-photo {
  width: 200px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(60, 50, 40, 0.15);
  border: 1px solid var(--accent);
}

.distance-info {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(212, 200, 184, 0.3);
  border-radius: 4px;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}

.region-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  background-color: rgba(212, 200, 184, 0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
  transition: all 0.2s ease;
}

.region-link:hover {
  color: var(--destructive);
  background-color: rgba(212, 200, 184, 0.4);
}

.external-icon {
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.region-link:hover .external-icon {
  transform: translateX(1px) translateY(-1px);
  opacity: 1;
}

.attraction-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.attraction-link:hover {
  color: var(--destructive);
  border-bottom: 1px dotted var(--destructive);
}

.attraction-icon {
  margin-right: 0.4rem;
  color: var(--primary);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.attraction-link:hover .attraction-icon {
  color: var(--destructive);
  transform: translateY(-1px);
  opacity: 1;
}

.date-time-info {
  display: inline-flex;
  align-items: center;
  margin: 0.3rem 0;
  padding: 0.25rem 0.5rem;
  background-color: rgba(212, 200, 184, 0.2);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.2s ease;
  flex-wrap: wrap;
}

.date-time-info:hover {
  background-color: rgba(212, 200, 184, 0.4);
  transform: translateY(-1px);
}

.info-icon {
  margin-right: 0.5rem;
  color: var(--primary);
}

.time-separator {
  display: inline-block;
  width: 1px;
  height: 1rem;
  background-color: var(--accent);
  margin: 0 0.75rem;
  opacity: 0.6;
}

.time-icon {
  margin-left: 0.25rem;
} 