:root {
  --primary: #E35D51;
  --text: #454545;
  --white: #fff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--white) 0%, #ffeceb 100%);
  min-height: 100vh;
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  width: 100vw;
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 0 0 2rem 2rem;
  box-sizing: border-box;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.header-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
}

.glass {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.3s, background 0.3s;
}

.info-cards {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.info-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
  color: var(--text);
}

.info-card:hover {
  background: rgba(227, 93, 81, 0.10);
  box-shadow: 0 8px 32px 0 rgba(227, 93, 81, 0.18);
  transform: translateY(-6px) scale(1.03);
}

.info-card h2 {
  margin-top: 0.7rem;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  color: var(--text);
}

.external-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #f7b1ab;
  transition: color 0.2s, border-bottom 0.2s;
}

.external-link:hover {
  color: #b13c2f;
  border-bottom: 2px solid var(--primary);
}

.gifs-section {
  margin: 3rem auto 2rem auto;
  max-width: 900px;
  text-align: center;
}

.gifs-section h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.gifs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.gif {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
  transition: box-shadow 0.3s, transform 0.2s;
}

.gif:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transform: scale(1.05);
}

footer {
  width: 100vw;
  left: 0;
  border-radius: 2rem 2rem 0 0;
  box-sizing: border-box;
  margin: 0;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-section {
  flex: 1 1 0;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.features-section h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
  border-radius: 1.5rem;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  transform: translateY(-6px) scale(1.03);
}

.feature-gif-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: box-shadow 0.3s, transform 0.2s;
  background: #fff;
  display: block;
}

.feature-card h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.menu-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1.5rem 0;
  width: 100%;
}

.menu-btn {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px 0 rgba(227, 93, 81, 0.10);
  cursor: pointer;
  transition: background 0.3s, color 0.2s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1px;
  display: block;
  margin: 0 auto;
}

.menu-btn:hover {
  background: #b13c2f;
  color: var(--white);
  box-shadow: 0 8px 32px 0 rgba(227, 93, 81, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.menu-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 41, 59, 0.25);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.menu-modal-content {
  position: relative;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  flex-direction: row;
  gap: 1.5rem;
  max-width: 90vw;
  max-height: 90vh;
}

.menu-modal img {
  max-width: 500px;
  max-height: 85vh;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  cursor: zoom-in;
}
.menu-modal img:hover {
  transform: scale(1.25);
  z-index: 20;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
  z-index: 10;
}
.menu-close:hover {
  color: #b13c2f;
}

.menu-arrow {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.menu-arrow:hover {
  background: rgba(227,93,81,0.08);
  color: #b13c2f;
}
.menu-arrow.left {
  margin-right: 0.5rem;
}
.menu-arrow.right {
  margin-left: 0.5rem;
}

.map-btn-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0.5rem 0;
}

.map-btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 2rem;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px 0 rgba(227, 93, 81, 0.10);
  cursor: pointer;
  transition: background 0.3s, color 0.2s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1px;
  display: block;
  margin: 0 auto;
}

.map-btn:hover {
  background: #b13c2f;
  color: var(--white);
  box-shadow: 0 8px 32px 0 rgba(227, 93, 81, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.map-container {
  max-width: 600px;
  margin: 1.5rem auto 2rem auto;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
  background: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.map-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  cursor: pointer;
  border-radius: 1.2rem;
  padding: 0.4rem 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(227, 93, 81, 0.10);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.map-close-btn:hover {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px 0 rgba(227, 93, 81, 0.18);
}

.site-logo {
  display: block;
  margin: 0 auto 0.5rem auto;
  max-width: 64px;
  width: 64px;
  height: auto;
}

.hero-banner {
  width: 100vw;
  height: 320px;
  background: url('images/Font-Shop-Real.jpg') center center/cover no-repeat;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.18) 100%), linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.25) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  margin-bottom: 0.5rem;
}
.hero-content .site-logo {
  margin: 0.5rem auto 0.5rem auto;
}
.hero-content .subtitle {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.attribution {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.attribution a {
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
}
.attribution a:hover {
  color: var(--primary);
}

@media (max-width: 800px) {
  .header-content {
    max-width: 98vw;
    padding: 0 1rem;
  }
  .info-cards, .features-section, .menu-btn-container {
    max-width: 98vw;
  }
  .info-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .gifs-container {
    flex-direction: column;
    gap: 1rem;
  }
  .gif {
    width: 90vw;
    max-width: 320px;
    height: 160px;
  }
  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .feature-gif-wrapper {
    width: 60vw;
    max-width: 180px;
    height: 90px;
  }
  .menu-modal img {
    max-width: 90vw;
    max-height: 60vh;
  }
}

@media (max-width: 600px) {
  .site-logo {
    max-width: 48px;
    width: 48px;
    margin-bottom: 0.3rem;
  }
  .menu-modal-content {
    flex-direction: column;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
    gap: 0.5rem;
    max-width: 98vw;
  }
  .menu-modal img {
    max-width: 98vw;
    max-height: 50vh;
  }
  .menu-close {
    top: 0.5rem;
    right: 1rem;
    font-size: 1.7rem;
  }
}

@media (max-width: 700px) {
  .map-container {
    max-width: 98vw;
    padding: 1rem 0.2rem 0.5rem 0.2rem;
  }
  .map-close-btn {
    right: 0.5rem;
    top: 0.5rem;
  }
  .hero-banner {
    height: 180px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
} 