:root {
  --bg-color: #daccae;
  --text-color: #4a4138;
  --hover-color: #2b251e;
  --transition-speed: 0.3s;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ==========================================================================
   Mobile (base styles, from 320px)
   ========================================================================== */

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem;
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  gap: 2.5rem;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
  transition:
    color var(--transition-speed) ease,
    transform var(--transition-speed) ease,
    letter-spacing var(--transition-speed) ease;
  cursor: default;
}

.brand-name:hover {
  color: var(--hover-color);
  transform: translateY(-5px);
  letter-spacing: 0.05em;
}

.location-script {
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  transition:
    color var(--transition-speed) ease,
    transform var(--transition-speed) ease;
  cursor: default;
}

.location-script:hover {
  color: var(--hover-color);
  transform: translateY(-3px) scale(1.05);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.footer p,
.footer button {
  transition:
    color var(--transition-speed) ease,
    transform var(--transition-speed) ease;
  cursor: default;
}

.footer p:hover {
  color: var(--hover-color);
  transform: translateY(-3px);
}

.footer-left {
  font-size: 1.1rem;
}

.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-center {
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
}

.footer-right-container {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.footer-right {
  appearance: none;
  font-family: inherit;
  text-decoration: none;
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--text-color);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 400;
  white-space: nowrap;
  cursor: default;
  transition: all 0.4s ease;
}

.footer-right:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
  border-color: var(--text-color);
  cursor: pointer;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(74, 65, 56, 0.2);
}

/* ==========================================================================
   Tablet (from 768px)
   ========================================================================== */

@media (min-width: 768px) {
  .container {
    padding: 2.5rem 2rem;
  }

  .content-wrapper {
    max-width: 700px;
    gap: 3rem;
  }

  .logo {
    max-width: 65%;
  }

  .brand-name {
    font-size: 3.5rem;
  }

  .location-script {
    font-size: 2rem;
  }

  .footer-left {
    font-size: 1.25rem;
  }

  .footer-center {
    font-size: 1.1rem;
  }

  .footer-right {
    font-size: 1.15rem;
    padding: 0.5rem 1rem;
  }

  .footer-info {
    gap: 1rem;
  }
}

/* ==========================================================================
   Desktop (from 1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  .container {
    padding: 3rem;
  }

  .content-wrapper {
    max-width: 900px;
    gap: 3.5rem;
  }

  .logo {
    max-width: 42%;
  }

  .brand-name {
    font-size: 5rem;
  }

  .location-script {
    font-size: 2.5rem;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.1rem;
    gap: 1rem;
  }

  .footer-left {
    flex: 1;
    text-align: left;
    font-size: 24px;
  }

  .footer-center {
    font-size: 24px;
  }

  .footer-info {
    flex: 1;
    justify-content: flex-end;
    gap: 2rem;
  }

  .footer-right {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
}
