:root {
    --hot-pink: #ff69b4;
    --light-blue: #68b3fd;
    --light-blue-transparent: rgba(104, 179, 253, 0.7);
    --deep-blue: #0b3d91;
    --deep-pink: #ff1493;
    --darker-deep-pink: #c71585;
    --dark-gray: #333;
    --muted-gray: #444;
    --medium-gray: #999;
    --dull-gray: #ccc;
    --light-gray: #f9f9f9;
    --transparent-black: rgba(0, 0, 0, 0.7);
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--dark-gray);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: var(--dark-gray);
}

body .material-symbols-outlined {
    font-size: inherit;
    vertical-align: middle;
}

/* Header Styles */
.landing-header {
    background: var(--light-blue-transparent);
    position: fixed;
    flex-direction: row;
    display: flex;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
}

.title-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.site-title {
    color: black;
    font-size: 2rem;
    margin: 0;
}

.btn-header {
    background-color: white;
    color: var(--hot-pink);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: bold;
    border: 2px solid var(--hot-pink);
    white-space: nowrap;
}

.btn-header:hover,
.btn-header:focus {
    background: var(--darker-deep-pink);
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 480px) {
    .landing-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--dark-gray);
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-link:hover,
.footer-link:focus {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
