/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2B3990; /* Logo blue */
    --secondary-color: #4A6FE3; /* Lighter blue */
    --primary-light: rgba(43, 57, 144, 0.1);
    --secondary-light: rgba(74, 111, 227, 0.1);
    --light-gray: #fcf7ef; /* RGB(252, 247, 239) */
    --white: #ffffff;
    --text-color: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 240px;
    width: auto;
    margin: 0 auto;
}

.app-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    z-index: 1000;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Home page hamburger (orange) */
.home-page .hamburger span {
    background-color: #F7941D;
}

/* AnotherYear page hamburger (blue) */
.anotheryear-page .hamburger span {
    background-color: var(--primary-color);
}

.hamburger:hover span {
    opacity: 0.8;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    margin-top: 2rem;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Home page menu items (orange) */
.home-page .nav-menu a {
    color: #F7941D;
}

.home-page .nav-menu a:hover {
    color: #ffffff;
    background-color: #F7941D;
}

/* AnotherYear page menu items (blue) */
.anotheryear-page .nav-menu a {
    color: var(--primary-color);
}

.anotheryear-page .nav-menu a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
}

.social-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 111, 227, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 200px;
    }
    
    .social-link a {
        padding: 0.8rem 1.5rem;
    }

    .hamburger {
        top: 1rem;
        right: 1rem;
    }
}

.page-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content .intro {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.page-content .cta {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    color: var(--primary-color);
    background-color: var(--primary-light);
    padding: 1rem 2rem;
    border-radius: 4px;
    display: inline-block;
}

.page-content .cta a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.page-content .cta a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    line-height: 1.6;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.features li i {
    color: var(--primary-color);
    position: absolute;
    left: 1rem;
    top: 1.2rem;
}

@media (max-width: 768px) {
    .page-content {
        padding: 0 1rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .page-content .intro {
        font-size: 1.1rem;
    }
}

.page-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.last-updated {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.privacy-link {
    text-align: center;
    margin-top: 1rem;
}

.privacy-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.privacy-link a:hover {
    opacity: 1;
    color: var(--secondary-color);
} 