/* Gabina Healthy style.css
   Starter stylesheet generated for the provided HTML.
*/
:root {
   --primary: #7a4b28;
   --secondary: #d8b27a;
   --accent: #5a8f3d;
   --bg: #fffaf5;
   --text: #333;
   --radius: 16px;
   --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box
}

html {
   scroll-behavior: smooth
}

body {
   font-family: Poppins, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.7
}

img {
   max-width: 100%;
   display: block
}

a {
   text-decoration: none;
   color: inherit
}

.container {
   width: min(1140px, 92%);
   margin: auto
}

.header {
   position: sticky;
   top: 0;
   background: #ffffffdd;
   backdrop-filter: blur(10px);
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.header .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0
}

.logo img {
   width: 175px
}

.navbar ul {
   display: flex;
   gap: 28px;
   list-style: none
}

.navbar a {
   font-weight: 600
}

.navbar a:hover {
   color: var(--primary)
}

.menu-toggle {
   display: none;
   font-size: 28px
}

.hero {
   padding: 80px 0
}

.hero-content {
   display: grid;
   grid-template-columns: 1.1fr .9fr;
   align-items: center;
   gap: 48px
}

.hero-logo {
   max-width: 260px;
   margin-bottom: 20px
}

.hero h1 {
   font-size: 3rem;
   color: var(--primary);
   line-height: 1.2
}

.hero h1 span {
   display: block;
   color: var(--accent)
}

.hero p {
   margin: 20px 0
}

.hero-button {
   display: flex;
   gap: 16px;
   flex-wrap: wrap
}

.btn {
   padding: 14px 28px;
   border-radius: 999px;
   font-weight: 600;
   transition: .3s
}

.primary {
   background: var(--primary);
   color: #fff
}

.secondary {
   border: 2px solid var(--primary);
   color: var(--primary)
}

.btn:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow)
}

.hero-image img,
.about-image img,
.menu-image,
.gallery-grid img {
   border-radius: var(--radius);
   box-shadow: var(--shadow)
}

section {
   padding: 80px 0
}

.section-title {
   text-align: center;
   margin-bottom: 40px
}

.section-title h2 {
   font-size: 2.2rem;
   color: var(--primary)
}

.about-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   align-items: center
}

.about-text ul {
   margin-top: 18px;
   padding-left: 20px
}

.product-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px
}

.card {
   background: #fff;
   padding: 28px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   text-align: center
}

.card i {
   font-size: 2rem;
   color: var(--accent);
   margin-bottom: 12px
}

.gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px
}

.gallery-grid img {
   aspect-ratio: 1;
   object-fit: cover
}

.cta {
   text-align: center;
   background: linear-gradient(135deg, var(--primary), #a86d39);
   color: #fff
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 40px
}

.footer-logo {
   width: 220px;
   margin-bottom: 12px
}

footer {
   background: #2b1a10;
   color: #fff;
   padding-top: 60px
}

.copyright {
   text-align: center;
   padding: 20px;
   border-top: 1px solid rgba(255, 255, 255, .1);
   margin-top: 30px
}

.floating-social {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 999
}

.floating-main {
   width: 58px;
   height: 58px;
   border: none;
   border-radius: 50%;
   background: var(--primary);
   color: #fff;
   font-size: 22px;
   cursor: pointer;
   box-shadow: var(--shadow)
}

.social-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 10px;
   opacity: 0;
   pointer-events: none;
   transform: translateY(10px);
   transition: .3s
}

.social-list a {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: #fff;
   display: grid;
   place-items: center;
   box-shadow: var(--shadow)
}

.floating-social:hover .social-list {
   opacity: 1;
   pointer-events: auto;
   transform: none
}

@media(max-width:900px) {

   .hero-content,
   .about-wrapper,
   .footer-content {
      grid-template-columns: 1fr
   }

   .product-grid,
   .gallery-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .navbar {
      display: none
   }

   .menu-toggle {
      display: block
   }
}

@media(max-width:600px) {
   .hero h1 {
      font-size: 2.2rem
   }

   .product-grid,
   .gallery-grid {
      grid-template-columns: 1fr
   }

   .social-list {
      display: none
   }

   .floating-social.active .social-list {
      display: flex;
      opacity: 1;
      pointer-events: auto;
      transform: none
   }
}