/* ==========================================
   IL Bacio Ice Cream — Main Stylesheet
   ========================================== */

/* ---------- Google Fonts & Variables ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --pink:        #f06292;
  --pink-light:  #fce4ec;
  --pink-dark:   #c2185b;
  --cream:       #fff8f0;
  --caramel:     #d4956a;
  --caramel-dark:#b06f3a;
  --brown:       #5d3a1a;
  --mint:        #a8d8c2;
  --mint-dark:   #4caf82;
  --text:        #3e2723;
  --text-light:  #7b5e57;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(93,58,26,0.12);
  --shadow-lg:   0 8px 40px rgba(93,58,26,0.18);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--pink);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.2;
}

.section-title span { color: var(--pink-dark); }

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 10px;
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(240,98,146,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,98,146,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--pink-dark);
}

.btn-caramel {
  background: linear-gradient(135deg, var(--caramel), var(--caramel-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,149,106,0.4);
}

.btn-caramel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,149,106,0.5);
}

/* ==========================================
   NAVIGATION
   ========================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,248,240,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(93,58,26,0.1);
}

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

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--pink), var(--caramel));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--brown);
  transition: var(--transition);
}

#navbar.scrolled .nav-logo-text strong { color: var(--pink-dark); }

.nav-logo-text span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

#navbar.scrolled .nav-links a { color: var(--text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink); }

.nav-cta {
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)) !important;
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.85rem !important;
}

.nav-cta:hover { opacity: 0.9; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--brown); }

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3e1a0a 0%, #7b3f1a 40%, #c2185b 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(240,98,146,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,149,106,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--pink); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 260px; height: 260px; background: var(--caramel); bottom: 60px; left: -60px; animation-delay: 2s; }
.blob-3 { width: 180px; height: 180px; background: var(--mint); top: 40%; left: 50%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-text .eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--caramel);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease both;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-text h1 span {
  color: var(--pink);
  font-style: italic;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  animation: fadeUp 0.7s 0.6s ease both;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge i { color: var(--caramel); }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  max-width: 340px;
  width: 100%;
}

.hero-card-icon {
  font-size: 5rem;
  margin-bottom: 16px;
  line-height: 1;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.flavor-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}

.scroll-hint i { animation: scrollBounce 1.5s ease-in-out infinite; }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==========================================
   ANNOUNCEMENT BANNER
   ========================================== */
#announcement {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

#announcement i { margin: 0 8px; }

/* ==========================================
   ABOUT SECTION
   ========================================== */
#about {
  padding: 96px 0;
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-light), #fff3e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--caramel), var(--caramel-dark));
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  font-family: 'Playfair Display', serif;
}

.about-img-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge .badge-text {
  font-size: 0.65rem;
  line-height: 1.3;
  opacity: 0.9;
}

.about-text .section-subtitle { max-width: 100%; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--pink-light), #ffe0b2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pink-dark);
}

.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  color: var(--brown);
  margin-bottom: 2px;
}

.feature-item p { font-size: 0.8rem; color: var(--text-light); }

/* ==========================================
   MENU HIGHLIGHTS
   ========================================== */
#menu {
  padding: 96px 0;
  background: var(--cream);
}

.menu-header {
  text-align: center;
  margin-bottom: 56px;
}

.menu-header .section-subtitle {
  margin: 10px auto 0;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
  border: 2px solid transparent;
}

.flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.flavor-emoji {
  font-size: 2.2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.flavor-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.3;
}

.flavor-card .tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 6px;
}

/* Italian Ice */
.italian-ice-section {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2, #e8f5e9);
  border-radius: 24px;
  padding: 48px 40px;
  margin-top: 24px;
}

.italian-ice-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.italian-ice-icon {
  font-size: 3rem;
  line-height: 1;
}

.italian-ice-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--brown);
}

.italian-ice-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.ice-flavors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ice-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(76,175,130,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}

.ice-chip:hover {
  background: var(--mint-dark);
  color: var(--white);
  transform: scale(1.05);
}

/* Cake notice */
.cake-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff9c4;
  border-left: 4px solid #fbc02d;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 32px;
}

.cake-notice i { color: #f9a825; font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cake-notice strong { color: var(--brown); font-size: 0.95rem; }
.cake-notice p { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* ==========================================
   MENU PHOTO SECTION
   ========================================== */
#menu-photo {
  padding: 80px 0;
  background: var(--white);
}

.menu-photo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.menu-photo-text .section-subtitle { max-width: 100%; }

.menu-photo-text ul {
  list-style: none;
  margin-top: 24px;
}

.menu-photo-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0e8e0;
  font-size: 0.95rem;
}

.menu-photo-text ul li i {
  color: var(--pink);
  font-size: 0.8rem;
}

.menu-photo-frame {
  position: relative;
}

.menu-photo-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pink-light), #fff3e0);
  z-index: 0;
}

.menu-photo-frame img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ==========================================
   HOURS SECTION
   ========================================== */
#hours {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--brown) 0%, #8d3a1c 100%);
  position: relative;
  overflow: hidden;
}

#hours::before {
  content: '🍦';
  position: absolute;
  font-size: 18rem;
  opacity: 0.04;
  top: -40px;
  right: -40px;
  line-height: 1;
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hours-text .section-label { color: var(--caramel); }
.hours-text .section-title { color: var(--white); }
.hours-text .section-title span { color: var(--pink); }
.hours-text .section-subtitle { color: rgba(255,255,255,0.7); }

.hours-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
}

.hours-card-header {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-card-header i { font-size: 1.3rem; color: var(--white); }
.hours-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
}

.hours-card-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.hours-list {
  padding: 8px 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.05); }

.hours-row.closed .hours-time { color: rgba(255,255,255,0.35); }
.hours-row.closed .hours-day  { opacity: 0.55; }

.hours-day {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  min-width: 100px;
}

.hours-time {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.hours-row.today {
  background: rgba(240,98,146,0.15);
}

.hours-row.today .hours-day  { color: var(--pink); }
.hours-row.today .hours-time { color: var(--white); font-weight: 700; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #43a047;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.open-badge .dot {
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ==========================================
   LOCATION & CONTACT
   ========================================== */
#contact {
  padding: 96px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info { }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cc-pink   { background: var(--pink-light); color: var(--pink-dark); }
.cc-brown  { background: #efebe9; color: var(--brown); }
.cc-green  { background: #e8f5e9; color: #2e7d32; }
.cc-blue   { background: #e3f2fd; color: #1565c0; }

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.contact-card a:hover { color: var(--pink-dark); }

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  background: #e5e0d8;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================
   CTA BANNER
   ========================================== */
#cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 50%, var(--caramel) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext y='40' font-size='30' opacity='0.07'%3E🍦%3C/text%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

#cta .section-label  { color: rgba(255,255,255,0.8); }
#cta .section-title  { color: var(--white); }
#cta .section-title span { color: rgba(255,255,255,0.85); font-style: italic; }

#cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 12px auto 32px;
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
#footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li i {
  color: var(--caramel);
  font-size: 0.8rem;
  width: 14px;
}

.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--caramel); }
.footer-bottom a:hover { color: var(--pink); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  .hero-content       { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; }
  .hero-visual        { order: -1; }
  .hero-text h1       { font-size: clamp(2.4rem, 6vw, 3.2rem); }
  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .menu-photo-inner   { grid-template-columns: 1fr; }
  .hours-inner        { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(62,23,10,0.97);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.3rem;
    color: var(--white) !important;
  }

  .hero-badges { flex-wrap: wrap; }
  .about-features { grid-template-columns: 1fr; }
  .flavors-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .italian-ice-section { padding: 32px 24px; }
  .italian-ice-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-inner  { gap: 40px; }
}
