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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Corbert', sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Full-Screen Wrapper ───────────────────── */
.wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px 30px;
    overflow: hidden;
}

/* Background image */
.wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/azmi_bg.jpg') center center / cover no-repeat;
    z-index: -2;
}

/* Dark overlay for readability */
.wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* ── Header / Logo ─────────────────────────── */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 200px;
    width: 90%;
    height: auto;
    display: block;
}

/* ── Hero Content ──────────────────────────── */
.hero {
    text-align: center;
}

.hero__sub {
    font-family: 'Corbert', sans-serif;
    font-weight: normal;
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero__heading {
    font-family: 'IvyPresto Headline', serif;
    font-weight: bold;
    font-style: italic;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.01em;
}

/* ── Footer ────────────────────────────────── */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Social icons row */
.socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.socials__link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.socials__link:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

/* Copyright */
.footer__copy {
    font-family: 'Corbert', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 480px) {
    .wrapper {
        padding: 24px 20px 20px;
    }

    .socials {
        gap: 16px;
    }

    .socials__link {
        width: 32px;
        height: 32px;
    }
}