/* 
  Tiamgrid.click - Stile Retro Pop Anni '70
  Design: Space-age orange, curved plastic, chrome frame reflections, bold typography.
*/

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --tangerine: #F26419;
  --ochre: #F6AE2D;
  --chocolate: #4E3D30;
  --cream: #FFFBF5;
  --cream-dark: #F5EBE0;
  --charcoal: #1E1611;
  --chrome-grad: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 50%, #b3c0c8 100%);
  --chrome-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.8);
  --bubble-shadow: 8px 8px 0px var(--chocolate);
  --bubble-shadow-hover: 4px 4px 0px var(--chocolate);
  
  --font-heading: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Base Layout Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Retro Pop Header / Navbar --- */
.retro-header {
  background-color: var(--cream-dark);
  border-bottom: 5px solid var(--chocolate);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 45px;
  height: 45px;
  background-color: var(--tangerine);
  border-radius: 50%;
  border: 3px solid var(--chocolate);
  display: inline-block;
  position: relative;
  box-shadow: 2px 2px 0px var(--chocolate);
}

.logo-circle::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  background-color: var(--ochre);
  border-radius: 50%;
  border: 2px solid var(--chocolate);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--chocolate);
  letter-spacing: -1px;
}

.logo-text span {
  color: var(--tangerine);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--chocolate);
  padding: 8px 16px;
  border-radius: 30px;
  border: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  background-color: var(--ochre);
  color: var(--charcoal);
  border-color: var(--chocolate);
  box-shadow: 3px 3px 0px var(--chocolate);
  transform: translateY(-2px);
}

/* Burger Menu for Mobile */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger-line {
  display: block;
  width: 30px;
  height: 4px;
  background-color: var(--chocolate);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero Section & Pop Art Shapes --- */
.hero-section {
  padding: 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(246, 174, 45, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(242, 100, 25, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.retro-badge {
  display: inline-block;
  background-color: var(--ochre);
  color: var(--chocolate);
  padding: 6px 16px;
  border-radius: 30px;
  border: 3px solid var(--chocolate);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px var(--chocolate);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--chocolate);
}

.hero-title span {
  color: var(--tangerine);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(246, 174, 45, 0.4);
  z-index: -1;
  border-radius: 6px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: var(--chocolate);
}

/* Retro Buttons */
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  border: 3px solid var(--chocolate);
  cursor: pointer;
  text-align: center;
  box-shadow: var(--bubble-shadow);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px var(--chocolate);
}

.btn-primary {
  background-color: var(--tangerine);
  color: white;
}

.btn-primary:hover {
  background-color: var(--ochre);
  color: var(--chocolate);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px var(--chocolate);
}

.btn-secondary {
  background-color: white;
  color: var(--chocolate);
}

.btn-secondary:hover {
  background-color: var(--cream-dark);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px var(--chocolate);
}

/* Space-age visual representation (Plastic, Chrome, curves) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orange-bubble-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--tangerine);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  border: 5px solid var(--chocolate);
  box-shadow: var(--bubble-shadow);
  z-index: 1;
  animation: morphBubble 8s ease-in-out infinite alternate;
}

.ochre-bubble-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  background-color: var(--ochre);
  border-radius: 55% 45% 40% 60% / 45% 50% 50% 55%;
  border: 5px solid var(--chocolate);
  z-index: 1;
  animation: morphBubble2 10s ease-in-out infinite alternate;
}

.furniture-image-wrapper {
  z-index: 2;
  position: relative;
  padding: 20px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 4px solid var(--chocolate);
  box-shadow: 12px 12px 0px var(--chocolate);
  overflow: hidden;
}

.chrome-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 10px solid;
  border-image: linear-gradient(135deg, #cfd9df, #ffffff, #8c9fa8, #ffffff, #cfd9df) 1;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Animations */
@keyframes morphBubble {
  0% { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; }
  100% { border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%; }
}

@keyframes morphBubble2 {
  0% { border-radius: 55% 45% 40% 60% / 45% 50% 50% 55%; }
  100% { border-radius: 40% 60% 55% 45% / 60% 40% 45% 50%; }
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--chocolate);
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--tangerine);
  margin: 15px auto 0;
  border-radius: 3px;
  border: 2px solid var(--chocolate);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--chocolate);
  margin-top: 15px;
}

/* --- Info Cards / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: white;
  border: 4px solid var(--chocolate);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--bubble-shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0px var(--chocolate);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: var(--ochre);
  border: 3px solid var(--chocolate);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 0px var(--chocolate);
}

.feature-icon-chrome {
  background: var(--chrome-grad);
  box-shadow: var(--chrome-shadow);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--chocolate);
}

.feature-desc {
  color: var(--chocolate);
  font-size: 0.95rem;
}

/* --- Space-Age Product Catalog --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  border: 3px solid var(--chocolate);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--chocolate);
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--tangerine);
  color: white;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px var(--chocolate);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  background-color: white;
  border: 4px solid var(--chocolate);
  border-radius: 35px;
  overflow: hidden;
  box-shadow: var(--bubble-shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0px var(--chocolate);
}

.product-image-container {
  height: 280px;
  background-color: var(--cream-dark);
  border-bottom: 4px solid var(--chocolate);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--ochre);
  color: var(--chocolate);
  border: 2px solid var(--chocolate);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.product-image-container svg {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container svg {
  transform: scale(1.1) rotate(2deg);
}

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.85rem;
  color: var(--tangerine);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--chocolate);
}

.product-desc {
  font-size: 0.9rem;
  color: #6a5a4d;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed var(--cream-dark);
  padding-top: 15px;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--chocolate);
}

.product-btn {
  background-color: var(--ochre);
  color: var(--chocolate);
  border: 2px solid var(--chocolate);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0px var(--chocolate);
  cursor: pointer;
}

.product-btn:hover {
  background-color: var(--tangerine);
  color: white;
  box-shadow: 4px 4px 0px var(--chocolate);
  transform: translateY(-2px);
}

/* Hide animation for product filters */
.product-card.hidden {
  display: none !important;
}

/* --- About Page Carpentry Details --- */
.retro-timeline {
  margin-top: 60px;
  position: relative;
  padding-left: 30px;
}

.retro-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 6px;
  background-color: var(--chocolate);
  border-radius: 3px;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--tangerine);
  border: 4px solid var(--chocolate);
  border-radius: 50%;
}

.timeline-content {
  background-color: white;
  border: 3px solid var(--chocolate);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 6px 6px 0px var(--chocolate);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tangerine);
  margin-bottom: 5px;
}

/* Chrome Tube Carpentry Illustration in CSS */
.chrome-carpentry-container {
  border: 4px solid var(--chocolate);
  background: white;
  border-radius: 40px;
  padding: 30px;
  box-shadow: var(--bubble-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.chrome-tube-render {
  width: 100%;
  height: 250px;
  background-color: var(--cream-dark);
  border-radius: 20px;
  border: 3px solid var(--chocolate);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chrome-tube {
  width: 70%;
  height: 70%;
  border: 15px solid;
  border-image: linear-gradient(90deg, #b0bec5, #ffffff, #cfd9df, #78909c, #b0bec5) 1;
  border-radius: 40px;
  position: relative;
}

/* --- Retro Pop Testimonials --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--cream-dark);
  border: 3px solid var(--chocolate);
  border-radius: 30px;
  padding: 30px;
  position: relative;
  box-shadow: 6px 6px 0px var(--chocolate);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 5rem;
  color: rgba(78, 61, 48, 0.15);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--chocolate);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--chocolate);
  background-color: var(--ochre);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--chocolate);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--chocolate);
}

.author-role {
  font-size: 0.8rem;
  color: #6a5a4d;
}

/* --- Floating Label Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.booking-card {
  background: white;
  border: 4px solid var(--chocolate);
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--bubble-shadow);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--cream);
  border: 3px solid var(--chocolate);
  border-radius: 15px;
  outline: none;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--tangerine);
  background-color: white;
  box-shadow: 4px 4px 0px var(--chocolate);
}

/* Floating labels magic */
.form-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #8c7d70;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 0 5px;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  background-color: white;
  color: var(--tangerine);
  border-radius: 4px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

textarea.form-input ~ .form-label {
  top: 25px;
}

/* Custom Retro Map Container */
.map-card {
  border: 4px solid var(--chocolate);
  border-radius: 40px;
  background-color: var(--ochre);
  padding: 10px;
  box-shadow: var(--bubble-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

.map-viewport {
  flex-grow: 1;
  background-color: #f7ebd9;
  border: 3px solid var(--chocolate);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* --- Policy Pages Styling --- */
.policy-content {
  background-color: white;
  border: 4px solid var(--chocolate);
  border-radius: 40px;
  padding: 50px;
  box-shadow: var(--bubble-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.8rem;
  color: var(--chocolate);
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 3px dashed var(--cream-dark);
  padding-bottom: 10px;
}

.policy-content p {
  margin-bottom: 20px;
  color: #554438;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: #554438;
}

.policy-content li {
  margin-bottom: 10px;
}

.consent-id-box {
  background-color: var(--cream-dark);
  border: 2px dashed var(--chocolate);
  border-radius: 15px;
  padding: 15px;
  margin-top: 30px;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--tangerine);
  text-align: center;
  font-weight: bold;
}

/* --- GDPR Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: white;
  border: 4px solid var(--chocolate);
  border-radius: 30px 30px 0 0;
  box-shadow: 0px -10px 30px rgba(78, 61, 48, 0.25);
  z-index: 2000;
  padding: 30px;
  transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--chocolate);
}

.cookie-text {
  font-size: 0.9rem;
  color: #554438;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--tangerine);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex-grow: 1;
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* --- Scroll Reveal Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.retro-footer {
  background-color: var(--chocolate);
  color: var(--cream);
  padding: 80px 0 30px;
  border-top: 5px solid var(--tangerine);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--ochre);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  max-width: 300px;
}

.footer-links h4 {
  color: var(--ochre);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--cream-dark);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--ochre);
  padding-left: 5px;
}

.footer-info h4 {
  color: var(--ochre);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-info p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-circle {
  width: 40px;
  height: 40px;
  background-color: var(--cream-dark);
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--chocolate);
  font-weight: bold;
}

.social-circle:hover {
  background-color: var(--tangerine);
  color: white;
  transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
  border-top: 2px dashed rgba(245, 235, 224, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--cream-dark);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--cream-dark);
}

.footer-legal-links a:hover {
  color: var(--ochre);
}

/* --- Responsive Adjustments --- */
@media(max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    order: -1;
    height: 350px;
  }
  .btn-group {
    justify-content: center;
  }
  .burger-menu {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream-dark);
    flex-direction: column;
    padding: 20px;
    border-bottom: 5px solid var(--chocolate);
    gap: 15px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.show {
    display: flex;
  }
  .nav-link {
    display: block;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
