* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f26a3a;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle circle decorations */
body::before,
body::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: #fff;
  pointer-events: none;
}

body::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
}

body::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: 60px;
}

/* ─── NAVBAR ─────────────────────────────────────── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-buynow {
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-buynow:hover {
  background: #333;
}

/* ─── HERO ───────────────────────────────────────── */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px 60px;
  height: calc(100vh - 66px);
  position: relative;
  z-index: 5;
  overflow: hidden; /* clips right overflow of diamond */
}

.hero-text {
  max-width: 480px;
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 340px;
}

.btn-glass {
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-glass:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ─── IMAGE AREA ─────────────────────────────────── */

.hero-image-area {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  overflow: visible;
}

/* Orange decorative diamond shapes */
.deco {
  position: absolute;
  background: #e05a2b;
}

.deco-top-right {
  width: 130px;
  height: 130px;
  top: -20px;
  right: -20px;
  transform: rotate(45deg);
}

.deco-bottom-right {
  width: 100px;
  height: 100px;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
  opacity: 0.7;
}

.deco-small-left {
  width: 70px;
  height: 70px;
  top: -20px;
  left: -20px;
  transform: rotate(45deg);
  opacity: 0.6;
}

/* Main image frame — rotated square with white border */
.img-frame {
  position: absolute;
  /* left point of diamond sits at left edge of image area */
  /* diamond side = viewport height / sqrt(2) so top & bottom left corners span full height */
  --side: calc((100vh - 66px) / 1.4142);
  width: var(--side);
  height: var(--side);
  /* left tip of rotated square = center_x - side/2 * sqrt(2)/2 = center_x - side/2 */
  /* we want left tip at x=0 of this container, so center at side/2 */
  left: calc(var(--side) / 2);
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  padding: 10px;
  overflow: hidden;
  z-index: 4;
}

.img-frame-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-img {
  /* counter-rotate so image appears upright inside the diamond */
  transform: rotate(-45deg) scale(1.5);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── CSS PERSON (removed — real image used now) ─── */