/* ============================================================
   DAUM EMIRATES — Shared Stylesheet
   Clone of michaelcissa.wixsite.com/website-3
   Pure HTML/CSS/JS — no frameworks, no build tools
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --bg:           #f5ede0;   /* warm cream page background */
  --accent:       #c85d3c;   /* coral/terracotta — page titles, logo triangle */
  --dark:         #2c3a4a;   /* dark navy — logo letters, nav, headings */
  --body-text:    #3B445A;   /* main body copy */
  --muted:        #888888;   /* secondary / caption text */
  --border:       #e0d4c0;   /* warm divider / border */
  --btn-dark:     #1a1a1a;   /* primary button background */
  --input-border: #ccc;      /* form input border */
  --white:        #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.75;
}

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

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

ul,
ol {
  padding-left: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 28px;
  height: 78px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---- Nav Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ---- Hamburger Toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-width: 32px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
  line-height: 1;
}

.btn-dark {
  background-color: var(--accent);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--accent);
  transform: translateY(-1px);
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--dark);
}

.btn-white {
  background-color: var(--accent);
  color: var(--white);
}

.btn-white:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   HOME — HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 70%;
  filter: sepia(35%) saturate(70%) brightness(0.9);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 237, 224, 0.75) 0%,
    rgba(245, 237, 224, 0.4) 40%,
    rgba(245, 237, 224, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dark);
  opacity: 0.75;
  margin-bottom: 40px;
  font-weight: 400;
}

/* ============================================================
   HOME — SERVICES SECTION
   ============================================================ */

.services-section {
  padding: 90px 28px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 450;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #eedfc5;
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.service-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   HOME — ABOUT SNIPPET
   ============================================================ */

.about-snippet {
  background-color: var(--bg);
  color: var(--white);
  padding: 90px 28px;
}

.about-snippet-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-snippet .section-label {
  color: var(--accent);
}

.about-snippet h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-snippet p {
  color: var(--dark);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ============================================================
   HOME — CLIENTS STRIP
   ============================================================ */

.clients-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 28px;
}

.clients-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.clients-strip h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.clients-strip-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.client-chip {
  padding: 10px 22px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.client-chip:hover {
  opacity: 1;
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 90px 28px;
  text-align: center;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.cta-banner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   INNER PAGES — PAGE HEADER
   ============================================================ */

@media (max-width: 600px) {
.page-header {
  padding: 25px 28px 0px;
  }
}

@media (min-width: 600px) {
.page-header {
  padding: 64px 28px 0px;
  }
}

.page-header {
  max-width: 1000px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 450;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--accent);
}

/* ============================================================
   INNER PAGES — CONTENT AREA
   ============================================================ */

.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 28px 96px;
}

.content-section p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 28px;
}

.content-heading {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent);
  margin: 44px 0 12px;
}

.content-subheading {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 10px;
}

/* Ordered list for customization / videography pages */
.content-section ol.numbered-list {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
}

.content-section ol.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 0;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text);
}

.content-section ol.numbered-list li::before {
  content: counter(item) ".";
  font-weight: 700;
  color: var(--accent);
  margin-right: 4px;
}

/* Bullet list for about page */
.content-section ul.bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.content-section ul.bullet-list li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-header {
  text-align: center;
  padding: 64px 28px 40px;
}

.gallery-header .page-title {
  margin: 0 auto;
  color: var(--accent);
}

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 96px;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  background: #e8e0d4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

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

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

#lightbox.open {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ============================================================
   OUR PROCESS PAGE — Styled Steps
   ============================================================ */

.process-steps {
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}

.process-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

.process-step-body {}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-align-last: left;
}

.process-step-desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
  text-align-last: left;
}

/* ============================================================
   CLIENTS PAGE
   ============================================================ */

.clients-intro {
  max-width: 750px;
  margin: 0 auto;
  padding: 10px 28px 0px;
  text-align: center;
}

.clients-intro p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 0px;
}

.clients-logos-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 96px;
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo-box:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.client-logo-box img {
  max-height: 70px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.client-logo-box:hover img {
  filter: grayscale(0%);
}

/* Text-fallback client logo */
.client-name-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 28px 0;
}

.contact-info {
  text-align: center;
  margin-bottom: 48px;
}

.contact-address {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-details {
  font-size: 15px;
  color: var(--body-text);
  line-height: 2;
}

.contact-details a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.contact-details a:hover {
  opacity: 0.75;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-required {
  color: var(--accent);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--body-text);
  background: var(--white);
  border: 1px solid var(--input-border);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0a898;
  font-size: 13px;
}

.form-textarea {
  resize: vertical;
  min-height: 170px;
}

.form-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.form-submit {
  display: inline-block;
  padding: 14px 56px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background-color: var(--accent);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Formspree instruction comment is in the HTML */

/* Map embed */
.map-section {
  margin-top: 64px;
  padding-bottom: 96px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 36px 28px;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

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

.footer strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SCROLL REVEAL — set by JS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  text-align-last: center;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1080px)
   ============================================================ */

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    gap: 18px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile nav breakpoint (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background-color: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    line-height: 2.5;
  }

  .nav-menu.open {
    max-height: 700px;
  }

  .nav-link {
    padding: 16px 28px;
    padding-left: 18px
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .logo {
    margin-right: 0;
  }

  .gallery-grid {
    columns: 2;
  }

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

/* ============================================================
   RESPONSIVE — Small mobile (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .page-title {
    font-size: 40px;
  }

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

  .gallery-grid {
    columns: 1;
  }

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

  .clients-strip-logos {
    gap: 12px;
  }

  .process-step {
    flex-direction: inherit;
    gap: 12px;
  }

  .nav {
    padding: 0 18px;
  }

  .page-header,
  .content-section,
  .clients-intro,
  .clients-logos-section,
  .gallery-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
