* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Albert Sans', sans-serif;
  background: #0f0f10;
  overflow-x: hidden;
}

.wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}

.left {
  background: url('../images/bg.webp') center / cover no-repeat;
}

/* RIGHT SIDE STRUCTURE */
.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;
}

/* MOBILE */
@media (max-width: 900px) {
  .wrapper { grid-template-columns: 1fr; }

  .left { height: 400px; }

  .right { padding: 25px; }

  .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;
  }
}