/* Base Reset and Typography */
* {
    box-sizing: border-box;
}

html, body {
    background: white;
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

/* Utility Classes */
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.playful-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.playful-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
}

/* Button Styles */
.google-btn {
    border-radius: 4px;
    padding: 18px 36px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-melon {
    background: white;
    color: var(--melon);
    border-color: var(--melon);
}

.btn-melon:hover {
    background: var(--melon);
    color: white;
    border-color: var(--melon);
    box-shadow: 0 4px 16px rgba(255, 166, 158, 0.2);
}

.btn-jasmine {
    background: white;
    color: var(--jasmine);
    border-color: var(--jasmine);
}

.btn-jasmine:hover {
    background: var(--jasmine);
    color: var(--claret);
    border-color: var(--jasmine);
    box-shadow: 0 4px 16px rgba(250, 217, 117, 0.2);
}

.btn-claret {
    background: white;
    color: var(--claret);
    border-color: var(--claret);
}

.btn-claret:hover {
    background: var(--claret);
    color: white;
    border-color: var(--claret);
    box-shadow: 0 4px 16px rgba(113, 30, 48, 0.2);
}

.btn-blue {
    background: white;
    color: var(--air-superiority-blue);
    border-color: var(--air-superiority-blue);
}

.btn-blue:hover {
    background: var(--air-superiority-blue);
    color: white;
    border-color: var(--air-superiority-blue);
    box-shadow: 0 4px 16px rgba(102, 155, 188, 0.2);
}

.btn-olivine {
    background: white;
    color: var(--olivine);
    border-color: var(--olivine);
}

.btn-olivine:hover {
    background: var(--olivine);
    color: white;
    border-color: var(--olivine);
    box-shadow: 0 4px 16px rgba(168, 198, 134, 0.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    background: white;
}