:root {
    --color-bone: #F8F5E6;
    --color-blue: #002FA7;
    --color-pink: #FF1493;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--color-bone);
    color: var(--color-blue);
    font-family: var(--font-body);
    min-height: 100vh;
    border-top: 6px solid var(--color-pink);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- NAV --- */
nav {
    width: 100%; /* Make nav full bleed */
    border-bottom: 2px solid var(--color-blue);
    background: var(--color-bone);
    z-index: 100;
    padding: 1.5rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Constrain content */
    margin: 0 auto;
}

.logo-group { display: flex; align-items: center; gap: 10px; }
.logo-dot { width: 20px; height: 20px; background: var(--color-pink); border-radius: 50%; display: inline-block; }

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-blue);
    text-decoration: none;
}

/* --- HERO --- */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
    position: relative; /* This is the positioning context */
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    z-index: 10;
    position: absolute;
    top: 30%; /* Position relative to the .hero container */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    color: var(--color-blue);
}

.hero-headline .pop {
    color: var(--color-pink);
}

.hero-image-frame {
    width: clamp(300px, 50vw, 600px);
    aspect-ratio: 1/1;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    overflow: hidden;
    /* No position: relative here */
}

.hero-asset {
    width: 100%; height: 100%;
    object-fit: cover;
    transform-origin: 50% 0%;
    animation: gentleSway 4s ease-in-out infinite;
}

@keyframes gentleSway {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(1.5deg); }
    100% { transform: rotate(0deg); }
}

.tagline {
    margin-top: 3rem;
    background: var(--color-pink);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 5px 5px 0px var(--color-blue);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 5;
    position: relative;
    display: inline-block;
}
.tagline:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--color-blue);
}

.handcrafted-note {
    font-family: var(--font-body); /* Use body font for readability */
    text-transform: none; /* Sentence case */
    font-size: 1.1rem; /* Slightly larger */
    line-height: 1.5;
    margin-top: 2rem;
    margin-bottom: 2rem;
    z-index: 5;
    position: relative;
    max-width: 450px;
}

/* --- Footer --- */
footer {
    width: 100%;
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--color-blue);
    background-color: var(--color-bone);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: var(--color-pink);
    transform: scale(1.05);
}

.social-links svg {
    width: 32px;
    height: 32px;
}

.social-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
}

.acknowledgement {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    line-height: 1.6;
}

.copyright a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 700;
}

.copyright a:hover {
    color: var(--color-pink);
}

/* --- Responsive Styles for Mobile --- */
@media (max-width: 768px) {
    /* Hero layout: Vertical stack on mobile */
    .hero {
        justify-content: flex-start; /* Align to top */
        padding-top: 3rem;
    }

    .hero-headline {
        position: static; /* Remove absolute positioning */
        transform: none;
        width: auto;
        font-size: clamp(3rem, 15vw, 4.5rem); /* Smaller max size for mobile */
        margin-bottom: 2rem;
        pointer-events: auto; /* Restore pointer events */
    }

    .hero-image-frame {
        width: clamp(250px, 70vw, 400px); /* Adjust image size */
    }
    
    .tagline {
        margin-top: 2rem;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Footer: Vertical stack for social links */
    .social-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}


