* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Albert Sans', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* LAYOUT */
.wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}

/* LEFT SIDE */
.left {
  display: flex;
  flex-direction: column;
}

/* TOP IMAGE */
.left-top {
  background: url('../images/bg-top.webp') center / cover no-repeat;
  height: 60%;
  min-height: 320px;
}

/* DISTRIBUTOR SECTION */
.left-bottom {
  background: #fff;
  padding: 50px 40px;
  text-align: center;
}

.left-bottom h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 40px;
}

/* GRID */
.distributors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  align-items: center;
}

.distributors a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.distributors img {
  max-width: 160px;
  max-height: 55px;
  object-fit: contain;
  transition: all 0.25s ease;
}

.distributors a:hover img {
  transform: scale(1.05);
}

/* RIGHT SIDE */
.right {
  background: #f4f4f4;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.blinker {
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.social a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* MAIN CONTENT */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  margin-top: 40px;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
}

.hero p {
  color: #555;
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.4;
}

.btn {
  display: inline-block;
  background: #ddd;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* META */
.meta {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.meta div {
  font-weight: 500;
}

/* CLOCK CARD */
.clock-card {
  margin-top: 40px;
  background: #0d0d0d;
  border-radius: 20px;
  padding: 26px;
  color: #fff;
}

.clock-label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .4;
  margin-bottom: 12px;
}

.clock-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.time {
  font-size: 60px;
  font-weight: 300;
}

.seconds {
  font-size: 18px;
  opacity: .6;
  margin-left: 8px;
}

.ampm {
  font-size: 14px;
  margin-left: 6px;
  opacity: .5;
}

.clock-meta {
  text-align: right;
  font-size: 13px;
  opacity: .7;
}

/* CONTACT */
.contact {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .wrapper {
    grid-template-columns: 1fr;
  }

  .right {
    padding: 40px 30px;
  }

  .left-top {
    height: 300px;
  }

  .left-bottom h2 {
    font-size: 32px;
  }

  .distributors {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .right {
    padding: 30px 20px;
  }

  .left-top {
    background-size: 120%;
    background-position: center;
    background-color: #000;
  }

  .hero h1 {
    font-size: 30px;
  }

  .clock-main {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .clock-meta {
    text-align: center;
  }

  .contact {
    justify-content: center;
    text-align: center;
  }

  .left-top {
    height: 240px;
  }

  .left-bottom {
    padding: 25px 16px;
  }

  .left-bottom h2 {
    font-size: 26px;
  }

  .distributors {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .distributors img {
    max-width: 120px;
  }
}


@media (max-width: 1400px) and (min-width: 900px) and (orientation: landscape) {
  .left-top {
    background-size: 130%;
    background-color: #000;
  }
}

