/* --- DESIGN SYSTEM & PALETTE (BOHO CHIC / WARM CREME) --- */
:root {
  --bg-cream: #EFE7DC; /* Soft warm light beige background */
  --bg-card: #EFE7DC; 
  --color-chocolate: #422F29; /* Dark chocolate primary */
  --color-latte: #8E7568; /* Medium latte secondary */
  --color-latte-light: #D2C4B9; /* Light latte accent */
  --color-text-body: #4A3C31; /* Warm charcoal body text */
  --color-text-muted: #7E7065; /* Muted warm grey */
  --border-color: rgba(66, 47, 41, 0.1);
  --border-hover: rgba(66, 47, 41, 0.3);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-cream);
  color: var(--color-text-body);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- FLOATING DECORATIONS (FLOWERS & SHAPES) --- */
.decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.deco-flower {
  position: absolute;
  color: var(--color-latte-light);
  opacity: 0.3;
  width: 140px;
  height: 140px;
}

.flower-svg {
  width: 100%;
  height: 100%;
}

.flower-center {
  fill: var(--bg-cream);
}

/* Positioning details like Canva slides */
.flower-1 {
  top: 140px;
  right: 15%;
  color: var(--color-latte-light);
}

.flower-2 {
  top: 950px;
  left: 5%;
  width: 100px;
  height: 100px;
  color: var(--color-latte);
  opacity: 0.25;
}

.flower-3 {
  top: 1750px;
  right: 8%;
  width: 120px;
  height: 120px;
  color: var(--color-latte-light);
  opacity: 0.35;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(239, 231, 220, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(66, 47, 41, 0.05);
  box-shadow: 0 4px 30px rgba(66, 47, 41, 0.02);
}

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

.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color-chocolate);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-latte);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-chocolate);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-nav {
  background: var(--color-chocolate);
  color: var(--bg-cream);
  padding: 10px 24px;
}

.btn-nav:hover {
  background: var(--color-latte);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-chocolate);
  color: var(--bg-cream);
  box-shadow: 0 10px 20px rgba(66, 47, 41, 0.15);
}

.btn-primary:hover {
  background: var(--color-latte);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(142, 117, 104, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-chocolate);
  border: 1px solid var(--color-chocolate);
}

.btn-secondary:hover {
  background: rgba(66, 47, 41, 0.03);
  border-color: var(--color-latte);
  color: var(--color-latte);
  transform: translateY(-3px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3F5E4D; /* Elegant deep sage green */
  color: var(--bg-cream);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(63, 94, 77, 0.15);
  width: 100%;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #2E4538; /* Darker forest green */
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(63, 94, 77, 0.25);
  color: var(--bg-cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-chocolate);
  cursor: pointer;
  padding: 5px;
}

/* --- HERO SECTION (Portfolio Slide 1) --- */
.hero {
  padding: 170px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.hero-brand-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-latte);
  margin-bottom: -15px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 300;
  line-height: 0.95;
  color: var(--color-chocolate);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-body);
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Hero Visual: Arch frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arch-frame-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Outer arch background outline like Canva */
.arch-outline {
  position: absolute;
  inset: 0;
  background-color: var(--color-chocolate);
  border-radius: 200px 200px 0 0;
  transform: translate(-15px, -15px);
  z-index: 1;
  pointer-events: none;
}

/* The actual image box arched */
.arch-image-box {
  width: 100%;
  height: 100%;
  background: var(--color-chocolate);
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(66, 47, 41, 0.22);
}

.arch-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circular social feed bubbles under the hero grid spanning full width */
.social-circles-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  gap: 24px;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.social-bubble-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bubble-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-chocolate);
  background: rgba(66, 47, 41, 0.08);
  border: 1px solid rgba(66, 47, 41, 0.15);
  box-shadow: 0 4px 10px rgba(66, 47, 41, 0.05);
  transition: var(--transition-smooth);
}

.social-bubble-wrapper:hover .bubble-social-icon {
  background: var(--color-chocolate);
  color: var(--bg-cream);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(66, 47, 41, 0.25);
}

.bubble-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-chocolate);
  margin-top: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.social-bubble-wrapper:hover .bubble-label {
  color: var(--color-latte);
  transform: translateY(2px);
}

.social-bubble {
  position: relative;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-latte-light);
  box-shadow: 0 10px 25px rgba(66, 47, 41, 0.08);
  transition: var(--transition-smooth);
  display: block;
}

.social-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.social-bubble-icon {
  position: absolute;
  inset: 0;
  background: rgba(66, 47, 41, 0.55);
  color: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.social-bubble:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--color-chocolate);
  box-shadow: 0 15px 30px rgba(66, 47, 41, 0.15);
}

.social-bubble:hover img {
  transform: scale(1.1);
}

.social-bubble:hover .social-bubble-icon {
  opacity: 1;
}

/* --- SECTION GENERAL STYLES --- */
.section-padding {
  padding: 120px 0;
  position: relative;
}

.slide-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-latte);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.serif-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-chocolate);
  line-height: 1.1;
  margin-bottom: 24px;
}

.serif-subtitle {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-chocolate);
  margin-bottom: 12px;
}

/* --- ABOUT ME SECTION (Slide 2) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-paragraph {
  color: var(--color-text-body);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.8;
}

.spacer-block {
  margin-top: 48px;
}

.entrepreneur-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-chocolate);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.entrepreneur-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(66, 47, 41, 0.15);
  transition: var(--transition-smooth);
}

.entrepreneur-link:hover {
  color: var(--color-latte);
}

.entrepreneur-link:hover .entrepreneur-logo {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--color-chocolate);
}

/* Visuals: Two offset arches like slide 2 */
.about-visuals-container {
  position: relative;
  height: 520px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.about-arch-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 85%;
  border-radius: 150px 150px 0 0;
  overflow: hidden;
  background: var(--color-latte-light);
  box-shadow: 0 15px 35px rgba(66, 47, 41, 0.08);
  z-index: 1;
}

.about-arch-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.3) translate(0%, 10%);
}

.about-arch-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 60%;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  background: var(--color-latte);
  box-shadow: 0 20px 40px rgba(66, 47, 41, 0.12);
  z-index: 2;
  border: 4px solid var(--bg-cream);
}

.about-arch-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- TOOLS & CONTENT SECTION (Slide 3) --- */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left Side: abstract arch and skincare product overlay */
.tools-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-arch {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background-color: var(--color-chocolate);
  border-radius: 200px 200px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(66, 47, 41, 0.1);
}

.abstract-arch-inner {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  z-index: 1;
}

.abstract-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

.floating-camera-gear {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 4;
  background: var(--bg-cream);
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(66, 47, 41, 0.12);
  box-shadow: 0 8px 24px rgba(66, 47, 41, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.abstract-arch:hover .floating-camera-gear {
  transform: rotate(-15deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(66, 47, 41, 0.18);
}

.product-wrapper {
  position: absolute;
  bottom: -45px;
  right: -35px;
  width: 68%;
  max-width: 250px;
  aspect-ratio: 3/4;
  z-index: 5;
  transition: var(--transition-smooth);
}

.viewfinder-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 4.5px solid var(--bg-cream);
  box-shadow: 0 15px 35px rgba(66, 47, 41, 0.22);
  background: var(--color-chocolate);
}

.viewfinder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.15);
  display: block;
  transition: var(--transition-smooth);
}

.viewfinder-frame:hover .viewfinder-img {
  transform: scale(1.22);
}

/* Viewfinder overlay styling */
.viewfinder-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
}

.rec-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #ff4d4d;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(2px);
}

.rec-dot {
  width: 6px;
  height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

.battery-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

/* Brackets corners */
.viewfinder-corners {
  position: absolute;
  inset: 8px;
}

.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.abstract-arch:hover .product-wrapper {
  transform: translateY(-8px) scale(1.02);
}

.list-header {
  font-size: 3rem;
  margin-bottom: 16px;
  border-bottom: 1.5px solid rgba(66, 47, 41, 0.08);
  padding-bottom: 8px;
}

/* Aesthetic bullet point lists */
.aesthetic-list {
  list-style: none;
}

.aesthetic-list li {
  font-size: 1.05rem;
  color: var(--color-text-body);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.aesthetic-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-latte);
  font-size: 1.4rem;
  line-height: 1;
}

/* --- CONTACT & LET'S WORK TOGETHER! (Slide 6) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wreath container: circular with branch design overlay */
.wreath-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1/1;
}

.wreath-svg-overlay {
  position: absolute;
  inset: -15px;
  z-index: 2;
  color: var(--color-latte);
  pointer-events: none;
}

.wreath-svg {
  width: 100%;
  height: 100%;
}

.wreath-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--color-latte-light);
  box-shadow: 0 15px 35px rgba(66, 47, 41, 0.08);
}

.wreath-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-message {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-chocolate);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(142, 117, 104, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-latte);
}

.info-link {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-chocolate);
}

.info-link:hover {
  color: var(--color-latte);
  text-shadow: 0 0 1px var(--color-latte-light);
}

/* Functional contact form */
.contact-form-aesthetic {
  border-top: 1.5px solid rgba(66, 47, 41, 0.08);
  padding-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-input-aesthetic, .form-textarea-aesthetic {
  width: 100%;
  background: rgba(66, 47, 41, 0.015);
  border: 1px solid rgba(66, 47, 41, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--color-chocolate);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-textarea-aesthetic {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 20px;
}

.form-input-aesthetic:focus, .form-textarea-aesthetic:focus {
  outline: none;
  border-color: var(--color-latte);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(66, 47, 41, 0.03);
}

/* --- FOOTER --- */
.footer {
  padding: 80px 0 40px;
  border-top: 1.5px solid rgba(66, 47, 41, 0.05);
  position: relative;
  z-index: 3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-chocolate);
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Bottom wavy shape */
.bottom-wave {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  margin-top: -1px;
}

.bottom-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.bottom-wave path {
  fill: var(--color-chocolate);
}

/* --- REVEAL ANIMATIONS ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visuals-container {
    order: 2;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .serif-title {
    font-size: 3rem;
  }

  .nav-menu {
    display: none; /* Toggled by JS */
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-bottom: 1px solid rgba(66, 47, 41, 0.05);
    gap: 20px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  /* Swipeable Stories-like social circles on mobile */
  .social-circles-row {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 16px 25px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }

  .social-circles-row::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .social-bubble-wrapper {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .serif-title {
    font-size: 2.4rem;
  }

  .about-visuals-container {
    height: 400px;
    max-width: 320px;
  }

  .product-wrapper {
    width: 62%;
    right: -15px;
    bottom: -25px;
  }

  .floating-camera-gear {
    top: -15px;
    left: -15px;
    padding: 8px;
  }

  .floating-camera-gear svg {
    width: 28px;
    height: 28px;
  }

  .section-padding {
    padding: 60px 0;
  }
}
