*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content area */
.main {
  flex: 1;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 50, 0.65);
}

.content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Header - transparent, logo overlays background */
.header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo-mado {
  max-width: 280px;
  height: auto;
}

/* Headlines */
.headlines {
  text-align: center;
  margin-bottom: 2rem;
}

.headline-malay {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.headline-en {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #e0e0e0;
}

/* Intro - two columns */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}

.intro-column p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #e8e8e8;
}

.intro-column p:last-child {
  margin-bottom: 0;
}

/* CTA */
.cta {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-malay {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-en {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
}

/* Franchise */
.franchise {
  margin-bottom: 2rem;
}

.franchise-headings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .franchise-headings {
    grid-template-columns: 1fr;
  }
}

.franchise-heading-malay,
.franchise-heading-en {
  font-size: 1.1rem;
  font-weight: 700;
}

.franchise-heading-en {
  color: #e0e0e0;
}

.franchise-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.franchise-column p {
  font-size: 0.95rem;
  color: #e8e8e8;
}

.franchise-column a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.franchise-column a:hover {
  color: #f0d090;
}

/* Contact */
.contact {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 0.9rem;
  color: #e8e8e8;
  margin-bottom: 0.25rem;
}

.contact .company {
  font-weight: 600;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Halal logo */
.halal {
  text-align: center;
  margin: 0;
}

.halal img {
  width: 64px;
  height: auto;
}

/* Footer */
.footer {
  background: #64422e;
  padding: 1rem 1.5rem;
  text-align: center;
}

.logo-bosphorus {
  max-width: 180px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .intro,
  .franchise-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .content {
    padding: 1.5rem 1rem 2rem;
  }

  .logo-mado {
    max-width: 220px;
  }
}
