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

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(180deg, #cfe3f3 0%, #8fb9dd 100%);
    color: #ffffff;
}

.page {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Centered image */
.image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
}

.image-wrapper img {
    max-width: 420px;
    width: 80vw;
    border-radius: 12px;
}

/* Content overlay */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    padding-bottom: 5vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

/* Brand name */
.brand {
    font-size: 20px;
    letter-spacing: 6px;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 6px;
    opacity: 0.85;
    margin-bottom: 40px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    opacity: 0.9;
}

