:root {
    --overlay: rgba(8, 8, 8, 0.45);
    --accent: #f8c291;
    --white: #ffffff;
    --max-width: 1100px;
}

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

html, body {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.hero {
    min-height: 100vh;
    background-image: url('/images/placeholder.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    backdrop-filter: blur(2px);
}

.content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 30px 0;
    text-align: center;
}

.content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* --- Brand Logo --- */
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

    .brand .logo {
        width: 200px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px #ffffff);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .brand .logo:hover {
            transform: scale(1.03);
            opacity: 0.95;
        }

/* --- Text Section --- */
.center {
    position: relative;
    z-index: 2;
}

.headline {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.note {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 auto 30px;
    line-height: 1.6;
    max-width: 600px;
}

.instagram-link {
    display: inline-flex; /* flex inline */
    align-items: center; /* vertically center icon and text */
    gap: 6px; /* space between icon and text */
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .instagram-link:hover {
        color: #ffffff;
    }

.instagram-icon {
    width: 48px; /* adjust size */
    height: 48px;
    display: block; /* removes extra spacing */
}

.pinterest-link {
    display: inline-flex; /* flex inline */
    align-items: center; /* vertically center icon and text */
    gap: 6px; /* space between icon and text */
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .pinterest-link:hover {
        color: #ffffff;
    }

.pinterest-icon {
    width: 48px; /* adjust size */
    height: 48px;
    display: block; /* removes extra spacing */
}





/* --- Footer --- */
.footer {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

/* --- Responsive --- */
@media (max-width: 720px) {
    .headline {
        font-size: 32px;
    }

    .brand .logo {
        width: 160px;
    }

    .note {
        font-size: 15px;
        padding: 0 10px;
    }

}
