/* ============================================
   ALHANA Bakery - Reddish & Beige Light Theme
   ============================================ */

:root {
  --red: #CC2229;
  --red-light: #E04449;
  --red-dark: #A51C22;
  --gold: #C49A3C;
  --gold-light: #D4B060;
  --gold-dark: #A07D2E;
  --beige: #F5EDE0;
  --beige-light: #FBF7F1;
  --beige-dark: #E8D9C5;
  --cream: #FFFAF5;
  --brown: #5C3D2E;
  --brown-light: #8B6E5A;
  --text: #3D2B1F;
  --text-light: #7A6558;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(92, 61, 46, 0.08);
  --shadow-hover: 0 8px 30px rgba(92, 61, 46, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 58, 58, 0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-uber {
  background: var(--white);
  color: var(--red-dark);
  border-color: var(--white);
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-uber:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

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

.logo-alhana {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  transition: var(--transition);
}

.logo-bakery {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 5px;
  margin-top: 1px;
  transition: var(--transition);
}

.navbar.scrolled .logo-alhana {
  color: var(--red);
}

.navbar.scrolled .logo-bakery {
  color: var(--gold-dark);
}

/* Hero logo */
.hero-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.hero-logo-alhana {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}

.hero-logo-bakery {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 12px;
  margin-top: 6px;
}

/* Footer logo */
.footer-logo .logo-alhana {
  color: var(--white);
}

.footer-logo .logo-bakery {
  color: var(--gold);
}

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

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

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

.nav-links a:hover {
  color: var(--red-light);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(165,28,34,0.85) 0%, rgba(204,34,41,0.8) 40%, rgba(92,61,46,0.85) 100%),
              url('images/hero-spread.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 237, 224, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-logo svg {
  max-width: 100%;
  height: auto;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
}

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

/* ---- Features Strip ---- */
.features {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--red);
}

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

/* ---- Section Labels ---- */
.section-label {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ---- About ---- */
.about {
  padding: 100px 0;
  background: var(--beige-light);
}

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

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* About photo */
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

/* Menu card images */
.menu-card-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.menu-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}

/* Gallery images */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: var(--transition);
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* ---- Catering ---- */
.catering {
  padding: 100px 0;
  background: var(--beige-light);
}

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

.catering-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catering-video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  aspect-ratio: 9/16;
  object-fit: cover;
  max-height: 500px;
}

.catering-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.catering-photos img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
}

.catering-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.catering-text h2 span {
  color: var(--red);
}

.catering-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.catering-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.8;
}

.catering-toppings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.catering-toppings span {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.catering-note {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
  margin-bottom: 20px !important;
}

.catering-buttons {
  margin-top: 8px;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark) !important;
  font-size: 1.15rem !important;
  margin-bottom: 20px !important;
}

.about-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-instagram {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-instagram:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social {
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--beige-dark);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- Image Placeholders ---- */
.image-placeholder {
  background: var(--beige);
  border: 2px dashed var(--beige-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  width: 100%;
}

.image-placeholder span {
  color: var(--brown-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-placeholder.small {
  aspect-ratio: 3/2;
}

.image-placeholder.gallery-ph {
  aspect-ratio: 1;
}

/* ---- Menu ---- */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--red);
}

.menu-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.menu-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- Gallery ---- */
.gallery {
  padding: 100px 0;
  background: var(--beige-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-wide img {
  aspect-ratio: 2/1;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* ---- Uber Eats Banner ---- */
.uber-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px 0;
}

.uber-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.uber-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.uber-text p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  font-size: 1.05rem;
}

/* ---- Contact ---- */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.contact-info h2 span {
  color: var(--red);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--red);
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ---- Footer ---- */
.footer {
  background: var(--brown);
  color: var(--beige);
  padding: 60px 0 0;
}

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

.footer-brand .logo-link {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: var(--beige-dark);
  font-size: 0.95rem;
  margin-top: 12px;
}

.footer-links h4,
.footer-order h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-links a {
  color: var(--beige-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-order .btn-outline {
  color: var(--beige);
  border-color: var(--beige-dark);
  margin-top: 4px;
}

.footer-order .btn-outline:hover {
  background: var(--beige);
  color: var(--brown);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--brown-light);
}

/* ============ Responsive ============ */

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

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

  .about-image {
    order: -1;
  }

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

  .catering-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .uber-banner-content {
    flex-direction: column;
    text-align: center;
  }

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

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

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item-wide {
    grid-column: span 2;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}
