/* Siand Happy Food - Static Site Styles */

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

:root {
  --background: hsl(42, 46%, 97%);
  --foreground: hsl(0, 0%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 20%);
  --primary: hsl(4, 80%, 56%);
  --primary-foreground: hsl(0, 0%, 100%);
  --muted-foreground: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 90%);
  --muted: hsl(0, 0%, 96%);
  --radius: 1rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  width: 100%;
  background-color: var(--primary);
  padding: 0.75rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-button {
  background: transparent;
  border: none;
  color: var(--primary-foreground);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.menu-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hidden {
  display: none !important;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-out;
}

.mobile-nav {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1rem;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin-bottom: 0.5rem;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: background-color 0.2s;
}

.menu-link:hover {
  background-color: var(--muted);
}

.menu-icon-img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  object-fit: cover;
}

.whatsapp-icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1rem 2.5rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.logo {
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
}

.subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Sections */
.section {
  width: 100%;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

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

/* Link Button */
.link-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background-color: var(--card);
  border: 2px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.link-button:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
  border-color: rgba(229, 82, 69, 0.3);
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  transition: transform 0.3s;
  overflow: hidden;
}

.link-button:hover .icon-container {
  transform: scale(1.1);
}

.icon-white {
  background-color: white;
}

.icon-whatsapp {
  background-color: #25D366;
}

.icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.whatsapp-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.link-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Footer */
.footer {
  width: 100%;
  background-color: var(--primary);
  padding: 1.5rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-size: 0.875rem;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}
