/*
Theme Name: ADHZ Medics
Theme URI: https://adhzmedics.com
Author: ADHZ Medics FZE LLC
Author URI: https://adhzmedics.com
Description: Custom WordPress theme for ADHZ Medics FZE LLC – Pharmaceutical Supply Coordination.
Version: 1.0
License: All rights reserved
Text Domain: adhz-medics
*/

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

:root {
  --red: #d92b2b;
  --dark: #1a1a1a;
  --gray: #555;
  --white: #ffffff;
  --max: 1440px;
}

.main-container {
  max-width: 1440px;
  margin: auto;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

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

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

/* ── HERO ── */
.hero-section {
  width: 100%;
}

.hero {
  background-color: #f5e6ed;
  max-width: var(--max);
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
}

.hero-text-wrap {
  padding: 48px 0px 48px 8rem;
  display: flex;
  flex-direction: column;
}

.logo-img {
  width: auto;
}

.hero-bottom {
  padding-top: 80px;
}

.hero-text h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-weight: 300;
  font-style: normal;
  display: block;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.hero-visual img {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;

  object-position: left center;
  display: block;
}

/* ── TWO COL ── */
section {
  width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.two-col .img-fill {
  overflow: hidden;
}

.two-col .img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col .text-panel {
  padding: 60px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-weight: lighter;
}

.section-title .plus-sup {
  color: var(--red);
  font-size: .75em;
  margin-top: -13px;
  font-size: 1em;
}

.text-panel p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.activities {
  margin-top: 18px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  color: var(--dark);
  line-height: 1.55;
  font-weight: 500;
}

.activity-item .dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
}

.note {
  margin-top: 18px;
  font-size: 17px;
}

.supply .text-panel {
  background: #f5e6ed;
}

.wheel {
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  padding: 60px;
  background-color: #f5e6ed;
}

/* ── NOTICE ── */
.notice {
  background: #f5e6ed;
  padding: 100px 8rem;
  position: relative;
  overflow: hidden;
}

.bottom-side-img {
  position: absolute;
  right: 0;
  top: 0;
}

.notice .section-title {
  margin-bottom: 24px;
}

.notice p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.contact-footer {
  background: #ea1111;
  color: #fff;
  padding: 60px 8rem 0;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

.contact-col h4 {
  font-size: 36px;
  font-weight: lighter;
  letter-spacing: .1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.contact-col h4 .plus-sup {
  font-size: .6em;
  opacity: .8;
}

.contact-col p,
.contact-col a {
  font-size: 17px;
  line-height: 1.75;
}

.legal-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-bar p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 680px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, .15);
}

.big-logo-bar {
  background: #ea1111;
  padding: 24px 8rem 36px;
}

.big-logo-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: right;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-text-wrap {
    padding: 32px 24px 40px;
  }

  .hero-bottom {
    padding-top: 40px;
  }

  .two-col {
    display: flex;
    flex-direction: column;
  }

  .two-col .img-fill {
    order: 1;
    min-height: 260px;
  }

  .two-col .wheel {
    order: 1;
  }

  .two-col .text-panel {
    order: 2;
    padding: 40px 24px;
  }

  .text-panel p,
  .activity-item,
  .note,
  .notice p {
    font-size: 16px;
  }

  .bottom-side-img {
    display: none;
  }

  .notice {
    padding: 48px 24px;
  }

  .contact-footer {
    padding: 32px 24px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }

  .contact-col:nth-child(2) h4,
  .contact-col:nth-child(3) h4,
  .contact-col:nth-child(2) p:first-of-type,
  .contact-col:nth-child(3) p:first-of-type {
    display: none;
  }

  .contact-col h4 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .legal-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .big-logo-bar {
    padding: 16px 24px 24px;
  }

  .big-logo-inner {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 22px;
  }

  .logo-img {
    height: 40px;
  }
}
