/* ============================================
   DJERK CENTRE - Main Stylesheet
   Caribbean Restaurant Website Clone
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Colors */
  --color-bg-dark: #1a1a1a;
  --color-bg-darker: #0d0d0d;
  --color-bg-cream: #e8dcc8;
  --color-bg-olive: #6b7544;
  --color-bg-orange: #d4943a;
  --color-accent-red: #c45c4e;
  --color-accent-red-hover: #a8483c;
  --color-accent-gold: #d4943a;
  --color-accent-gold-light: #e8a84c;
  --color-text-white: #ffffff;
  --color-text-light: #e0e0e0;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #9c9c9c;
  --color-border-red: #c45c4e;
  --color-card-dark: #2a2a2a;
  --color-star-gold: #f5a623;
  --color-announcement-bg: #6b7544;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-decorative: 'Playfair Display', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Header */
  --header-height: 120px;
  --announcement-height: 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Max Width */
  --max-width: 1400px;
  --max-width-wide: 2560px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3vw;
}

.container-wide {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 3vw;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background-color: var(--color-announcement-bg);
  color: var(--color-text-white);
  text-align: center;
  padding: 10px 40px 10px 20px;
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
  z-index: 1000;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar strong {
  font-weight: 700;
}

.announcement-bar .close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  background: none;
  border: none;
  padding: 5px;
  line-height: 1;
}

.announcement-bar .close-btn:hover {
  opacity: 1;
}

/* ---- Header ---- */
.site-header {
  background-color: var(--color-bg-cream);
  padding: 0.1vw 3vw;
  position: relative;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  
  /* SET UKURAN CONTAINER DI SINI */
  height: 120px; /* Atau ubah sesuai kebutuhan kamu (misal: 100px, 150px) */
}

.header-logo {
  flex-shrink: 0;
  height: 140%; /* Membuat pembungkus logo mengikuti tinggi container */
  display: flex;
  align-items: center;
}

.header-logo img {
  /* Tetap beri max-height agar logo tidak keluar/offside dari container */
  max-height: 140%; 
  width: auto;
  object-fit: contain;
}

.header-center {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex: 1;
  justify-content: center;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
  position: relative;
  text-decoration: none;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: width var(--transition-normal);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
  width: 80%;
}

.nav-list li a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

/* Social Icons (Header & Footer) */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-text-dark);
  border-radius: 50%;
  transition: all var(--transition-fast);
  color: var(--color-text-dark);
}

.social-icon:hover {
  background-color: var(--color-text-dark);
  color: var(--color-text-white);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon i {
  font-size: 18px;
  color: currentColor;
}

/* CTA Button (Header) */
.btn-cta {
  display: inline-block;
  background-color: var(--color-accent-red);
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 14px 28px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-cta:hover {
  background-color: var(--color-accent-red-hover);
  transform: scale(1.02);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  margin: 3px 0;
  transition: all var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-cream);
  z-index: 998;
  padding-top: 120px;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
}

.mobile-nav-list li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  padding: 0.5rem 1rem;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.9;
  color: var(--color-accent-red);
  text-transform: uppercase;
  letter-spacing: -2px;
  opacity: 0.85;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-cta {
  position: absolute;
  bottom: 8%;
  right: 5%;
  z-index: 3;
}

.hero-cta .btn-cta {
  font-size: 1.3rem;
  padding: 18px 40px;
  border-radius: 4px;
}

/* ---- About Section ---- */
.about-section {
  background-color: var(--color-bg-cream);
  padding: var(--spacing-xxl) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3vw;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  font-style: italic;
}

.about-text p {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-dark);
}

.about-image {
  width: 100%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ---- Caribbean Collection Section ---- */
.collection-section {
  background-color: var(--color-bg-orange);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.collection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  min-height: 600px;
}

.collection-left {
  position: relative;
  overflow: hidden;
}

.collection-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collection-text {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  padding-right: 320px; /* Shift content left to avoid circle image */
  position: relative;
  z-index: 2;
  width: 100%;
}

.collection-text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.collection-text p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  text-transform: uppercase;
  color: var(--color-text-dark);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto var(--spacing-lg);
  letter-spacing: 0.5px;
}

.collection-text .btn-cta {
  font-size: 1.1rem;
  padding: 16px 60px;
  border-radius: 30px;
}

.collection-circle-img {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.collection-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Brand Statement Section ---- */
.brand-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.brand-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.brand-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-xl);
  width: 100%;
}

.brand-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  line-height: 1.05;
  margin-bottom: var(--spacing-xl);
  text-shadow: 2px 3px 8px rgba(0,0,0,0.4);
}

.brand-description-box {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-xl);
  border: 2px solid var(--color-accent-red);
  border-radius: 8px;
  background: rgba(255, 248, 230, 0.9);
  position: relative;
}

.brand-description-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--color-accent-red);
  border-radius: 10px;
  pointer-events: none;
}

.brand-description-box p {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text-dark);
}

.brand-cta {
  margin-top: var(--spacing-lg);
}

.brand-cta .btn-cta {
  font-size: 1.2rem;
  padding: 16px 60px;
  border-radius: 30px;
  background-color: var(--color-accent-red);
}

/* ---- Social Media Section ---- */
.social-section {
  background-color: var(--color-bg-olive);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal top edge */
.social-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-bg-olive);
  transform: skewY(-2deg);
  z-index: 1;
}

.social-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3vw;
  position: relative;
  z-index: 2;
}

.social-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--color-accent-red);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  background-color: var(--color-bg-orange);
  display: inline-block;
  padding: var(--spacing-lg);
}

.social-text p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  text-transform: uppercase;
  color: var(--color-text-white);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.social-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
}

.social-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.social-grid-item:hover img {
  transform: scale(1.05);
}

.social-grid-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.social-grid-item .play-icon svg {
  fill: white;
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

/* ---- Reviews Section ---- */
.reviews-section {
  background: linear-gradient(135deg, var(--color-bg-darker) 0%, #1a1a2e 50%, #2d1810 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 2;
}

.reviews-header .section-tagline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--color-text-white);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--spacing-lg);
}

.reviews-strikethrough {
  position: relative;
  display: inline-block;
}

.reviews-strikethrough::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 45%;
  width: 110%;
  height: 8px;
  background-color: var(--color-accent-red);
  transform: rotate(-3deg);
  border-radius: 4px;
}

.reviews-header h2 {
  font-family: var(--font-decorative);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-text-white);
  margin-bottom: var(--spacing-xs);
}

.reviews-header .reviews-subtitle {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Review Cards Carousel */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: var(--spacing-md);
  transition: transform var(--transition-slow);
}

.review-card {
  min-width: calc(25% - 18px);
  background-color: var(--color-card-dark);
  border-radius: 12px;
  padding: var(--spacing-lg);
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
}

.review-stars .star {
  color: var(--color-star-gold);
  font-size: 1.2rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.review-read-more {
  color: var(--color-accent-red);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.review-read-more:hover {
  color: var(--color-accent-gold);
}

.review-source {
  margin-top: var(--spacing-sm);
}

.review-source .google-logo {
  font-family: 'Product Sans', var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
}

.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

.review-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.review-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  overflow: hidden;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  color: var(--color-text-white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-author-name .verified {
  color: #4285F4;
  font-size: 0.85rem;
}

.review-author-date {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-text-white);
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  color: white;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.2);
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

/* ---- Footer ---- */
.site-footer {
  background-color: var(--color-bg-darker);
  color: var(--color-text-white);
  padding-top: var(--spacing-xxl);
}

.footer-tagline {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.footer-tagline h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  line-height: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) 3vw;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-md);
}

/* Footer Sitemap */
.footer-sitemap-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-sitemap-list a {
  font-family: var(--font-decorative);
  font-style: italic;
  color: var(--color-accent-red);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer-sitemap-list a:hover {
  color: var(--color-accent-gold);
}

.footer-social-icons {
  margin-top: var(--spacing-lg);
}

.footer-social-icons .social-icon {
  border-color: var(--color-text-white);
  color: var(--color-text-white);
}

.footer-social-icons .social-icon:hover {
  background-color: var(--color-text-white);
  color: var(--color-bg-darker);
}

/* Footer Find Us */
.footer-find-us {
  text-align: center;
}

.footer-find-us p {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.footer-find-us .location-name {
  font-weight: 700;
  color: var(--color-text-white);
  font-size: 1rem;
}

.footer-find-us .address {
  font-weight: 400;
}

.footer-find-us .phone {
  font-weight: 500;
}

.footer-find-us .serving-area {
  font-size: 0.9rem;
}

.footer-find-us .contact-label {
  font-weight: 700;
  color: var(--color-text-white);
  margin-top: var(--spacing-md);
}

.footer-find-us .email {
  color: var(--color-text-light);
}

.footer-find-us .policy {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-find-us .landmarks {
  color: var(--color-accent-gold);
  font-size: 0.9rem;
}

/* Footer Hours */
.footer-hours {
  text-align: center;
}

.footer-hours p {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-accent-gold);
}

.footer-hours .hours-time {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-top: var(--spacing-xs);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: var(--spacing-lg) 3vw;
  margin-top: var(--spacing-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive Design ---- */
@media (max-width: 1200px) {
  .review-card {
    min-width: calc(33.333% - 16px);
  }

  .collection-circle-img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .header-center {
    display: none;
  }

  .header-right .social-icons {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-heading {
    font-size: clamp(3.5rem, 12vw, 8rem);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .collection-inner {
    grid-template-columns: 1fr;
  }

  .collection-text {
    padding-right: var(--spacing-lg); /* Reset padding for mobile */
  }

  .collection-circle-img {
    position: relative;
    top: auto;
    right: auto;
    width: 250px;
    height: 250px;
    margin: 0 auto var(--spacing-lg);
  }

  .social-inner {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: calc(50% - 12px);
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-sitemap-list {
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-social-icons .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 90px;
  }

  .header-logo img {
    height: 100px;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-heading {
    font-size: clamp(3rem, 15vw, 6rem);
  }

  .hero-cta {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--spacing-lg);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .collection-text h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .brand-heading {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    min-width: calc(100% - 12px);
  }

  .reviews-header .section-tagline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .btn-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(2.5rem, 18vw, 5rem);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .announcement-bar {
    font-size: 0.8rem;
    padding: 8px 35px 8px 15px;
  }
}
