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

body {
    font-family: 'EB Garamond', serif;
    background-color: #fff685;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

.container {
    min-height: 100vh;
    position: relative;
}

.main-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    gap: 2rem;
}

.logo {
    max-width: 800px;
    height: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    transition: color 0.3s ease;
}

.contact-section {
    margin-top: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-button {
    display: inline-block;
    width: 280px;
    padding: 12px 24px;
    font-size: 1.25rem;
    font-family: 'Inter Tight', sans-serif;
    color: #554da0;
    text-decoration: none;
    border: 3px solid #554da0;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    text-align: center;
    box-sizing: border-box;
}

.contact-button:hover {
    background: var(--button-border-color, currentColor) !important;
    color: var(--page-bg-color, #fff685) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Instagram link styling */
.instagram-link {
    display: inline-block;
    text-decoration: none;
}

.instagram-icon {
    width: 44px;
    height: 44px;
}

.bottom-image {
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.face-image {
    height: 64px;
    width: auto;
    transition: all 0.3s ease;
}

/* Decorative stars */
.star {
    position: absolute;
    z-index: 5;
}

.star-image {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.star-1 {
    top: 15vh;
    left: 10vw;
}

.star-2 {
    top: 25vh;
    right: 15vw;
}

.star-3 {
    bottom: 25vh;
    left: 20vw;
}

/* Color classes for easter egg */
.color-1 { color: #554da0 !important; }
.color-2 { color: #f289b8 !important; }
.color-3 { color: #faa627 !important; }
.color-4 { color: #fff685 !important; }
.color-5 { color: #dff2f7 !important; }

/* Button color classes for easter egg */
.button-color-1 { border-color: #554da0 !important; color: #554da0 !important; }
.button-color-2 { border-color: #f289b8 !important; color: #f289b8 !important; }
.button-color-3 { border-color: #faa627 !important; color: #faa627 !important; }
.button-color-4 { border-color: #fff685 !important; color: #fff685 !important; }
.button-color-5 { border-color: #dff2f7 !important; color: #dff2f7 !important; }

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .content-wrapper {
        gap: 1.5rem;
    }
    
    .logo {
        max-width: 400px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .contact-section h2 {
        font-size: 1.25rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 300px;
    }
}
