/* General Styles */
html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    text-align: center;
}

h1, h2, h3 {
    color: #ffffff;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    background: #1e1e1e;
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 500;
    color: #ffffff;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 960px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

section {
    background: transparent;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: transparent;
    padding: 2rem;
    width: 100%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.logo-text {
    font-family: 'Hey Comic', sans-serif;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #aaa;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.4s forwards;
}

.store-buttons a {
    display: inline-block;
    width: 150px;
}

.store-buttons img {
    width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #aaa;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
} 

/* Invite Page Specific Styles */
.invite-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    padding: 2rem 1rem;
    box-sizing: border-box;
    max-width: 650px;
    margin: 0 auto;
}

.top-text {
    color: #fff;
    opacity: 0.7;
    font-size: 1rem;
}

.invite-question {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.next-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 1.2rem 2rem;
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 600;
    border-radius: 50px;
    width: 80%;
    max-width: 400px;
    cursor: pointer;
}

.next-button:active {
    transform: scale(0.98);
} 

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-buttons a {
        width: 180px;
    }

    main {
        padding: 1rem;
    }
} 