/* ==========================================================================
   Mare Blu - Pizzeria Italiana
   Custom Vanilla Design System & Theme Engine
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Light Theme */
  --background: 0 0% 100%;
  --foreground: 210 50% 12%;
  --card: 0 0% 100%;
  --card-foreground: 210 50% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 210 50% 12%;
  --primary: 210 100% 29%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 20% 96%;
  --secondary-foreground: 210 50% 20%;
  --muted: 210 20% 96%;
  --muted-foreground: 210 10% 45%;
  --accent: 210 100% 29%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 210 20% 90%;
  --input: 210 20% 90%;
  --ring: 210 100% 29%;

  /* Fonts */
  --font-heading: 'Cormorant Garamond', ui-serif, Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 0.5rem;
}

.dark {
  /* Colors - Dark Theme */
  --background: 207 60% 8%;
  --foreground: 0 0% 100%;
  --card: 207 50% 11%;
  --card-foreground: 0 0% 100%;
  --popover: 207 50% 10%;
  --popover-foreground: 0 0% 100%;
  --primary: 200 90% 50%;
  --primary-foreground: 207 60% 8%;
  --secondary: 207 40% 14%;
  --secondary-foreground: 0 0% 100%;
  --muted: 207 40% 14%;
  --muted-foreground: 210 20% 65%;
  --accent: 200 90% 50%;
  --accent-foreground: 207 60% 8%;
  --destructive: 0 62% 30%;
  --destructive-foreground: 0 0% 98%;
  --border: 207 40% 18%;
  --input: 207 40% 18%;
  --ring: 200 90% 50%;
}

/* ==========================================================================
   Base Reset & Global Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

.oltremare-line {
  background: hsl(var(--primary) / 0.5);
  height: 1px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background-color: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background-color: hsl(var(--background) / 0.8);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 1rem;
  }
}

/* Language switch */
.lang-switcher {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.lang-btn {
  color: hsl(var(--foreground));
  opacity: 0.5;
  transition: opacity 0.2s ease;
  font-weight: 500;
  padding: 0.125rem 0.25rem;
}

.lang-btn.active {
  opacity: 1;
  font-weight: 700;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-divider {
  opacity: 0.4;
  margin: 0 0.25rem;
}

/* Theme toggle button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  color: hsl(var(--foreground));
  transition: background-color 0.2s ease;
}

.theme-toggle-btn:hover {
  background-color: hsl(var(--foreground) / 0.1);
}

.theme-toggle-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Book CTA in header */
.header-book-btn {
  display: none;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transition: opacity 0.2s ease;
}

.header-book-btn:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .header-book-btn {
    display: inline-flex;
  }
}

/* Hamburger toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile dropdown */
.mobile-nav-drawer {
  display: none;
  background-color: hsl(var(--background) / 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
}

.mobile-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.hero-container {
  max-width: 48rem;
  margin: 0 auto;
  width: 100%;
}

.hero-kicker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hero-kicker-line {
  width: 3rem;
  height: 1px;
  background-color: hsl(var(--primary) / 0.5);
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--primary));
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-kicker {
    font-size: 0.875rem;
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: hsl(var(--foreground) / 0.8);
  margin-top: 1.5rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn-primary {
  padding: 0.75rem 2rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  padding: 0.75rem 2rem;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background-color: hsl(var(--primary) / 0.05);
  transform: translateY(-1px);
}

.hero-icon-scroll {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-icon-scroll svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary) / 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================================================
   Section: La Pizzeria
   ========================================================================== */

.section-pizzeria {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section-pizzeria {
    padding: 8rem 1.5rem;
  }
}

.pizzeria-container {
  max-width: 72rem;
  margin: 0 auto;
}

.pizzeria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pizzeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.pizzeria-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pizzeria-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pizzeria-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .pizzeria-content {
    padding-left: 2rem;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 300;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.pizzeria-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}

@media (min-width: 768px) {
  .pizzeria-text {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Section: Menu
   ========================================================================== */

.section-menu {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section-menu {
    padding: 8rem 1.5rem;
  }
}

.menu-container {
  max-width: 64rem;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle-caps {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.75rem;
}

.promo-banners {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.promo-highlight {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.promo-item {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Featured Pizzas Grid */
.featured-pizzas-wrapper {
  margin-bottom: 4rem;
}

.featured-pizzas-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .featured-pizzas-title {
    font-size: 1.875rem;
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.featured-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0);
  transition: background-color 0.3s ease;
}

.featured-card:hover .featured-card-overlay {
  background-color: hsl(var(--primary) / 0.1);
}

/* Menu Filter Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.tab-btn:hover {
  background-color: hsl(var(--secondary) / 0.7);
}

.tab-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Menu Items List */
.menu-category-section {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
  column-gap: 2rem;
}

@media (min-width: 640px) {
  .menu-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-weight: 500;
  color: hsl(var(--foreground));
  display: block;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 500;
  color: hsl(var(--primary));
  white-space: nowrap;
}

/* ==========================================================================
   Section: Gallery
   ========================================================================== */

.section-gallery {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section-gallery {
    padding: 8rem 1.5rem;
  }
}

.gallery-container {
  max-width: 64rem;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid .gallery-item:first-child {
    grid-column-start: 2;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0);
  transition: background-color 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background-color: hsl(var(--primary) / 0.2);
}

/* ==========================================================================
   Section: Contact & Reservation
   ========================================================================== */

.section-contact {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section-contact {
    padding: 8rem 1.5rem;
  }
}

.contact-container {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form Styles */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.3);
}

.form-textarea {
  resize: none;
}

.form-submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}

.form-submit-btn:hover {
  opacity: 0.9;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.form-success-msg {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  text-align: center;
  font-weight: 500;
  animation: waveFade 0.4s ease-out forwards;
}

@keyframes waveFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card-primary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transition: opacity 0.2s ease;
}

.contact-card-primary:hover {
  opacity: 0.9;
}

.contact-card-outline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  transition: background-color 0.2s ease;
}

.contact-card-outline:hover {
  background-color: hsl(var(--primary) / 0.05);
}

.contact-card-title {
  font-weight: 500;
  font-size: 1.125rem;
}

.contact-card-desc {
  font-size: 0.875rem;
  opacity: 0.8;
}

.contact-card-outline .contact-card-desc {
  color: hsl(var(--muted-foreground));
  opacity: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-info-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-logo-row {
    justify-content: flex-start;
  }
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-lang-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-lang-wrapper {
    justify-content: flex-end;
  }
}

.footer-lang-btn {
  color: hsl(var(--primary-foreground));
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-lang-btn.active {
  opacity: 1;
  font-weight: 700;
}

.footer-lang-btn:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.7;
}
