:root {
    --deep-slate-gray: #36454F;
    --blush-rose: #E3C1B6;
    --soft-gold: #C5A880;
    --white: #FFFFFF;
    --blush-rose-light: #FFE8E3;
    --body-font: 'TT Commons Pro', 'Inter', sans-serif;
    --heading-font: 'Italiana Regular', serif;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    width: 100%;
    height: 87px;
    z-index: 1000;
    background: var(--blush-rose);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-slate-gray);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--body-font);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff69b4;
}

.nav-links a.active {
    color: #ff69b4;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.auth-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.auth-buttons a {
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--deep-slate-gray);
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background: var(--deep-slate-gray);
    color: var(--white);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer-background img {
    width: 200px;
    height: auto;
    opacity: 0.15;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem 4rem;
    width: fit-content;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:nth-child(4),
.footer-nav a:nth-child(5) {
    grid-column: span 1;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-subscribe {
    text-align: right;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-form input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 0.875rem;
    border-radius: 4px;
    min-width: 200px;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-form button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-form button:hover {
    background: var(--white);
    color: var(--deep-slate-gray);
}

.footer-subscribe p {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-subscribe a {
    color: var(--white);
    text-decoration: none;
}

.footer-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.footer-background img {
    height: 200px;
    width: auto;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: 10rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

/* Responsive styles for header and footer */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .auth-buttons {
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0 2rem;
    }

    .footer-left {
        align-items: center;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        height: auto;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-left {
        gap: 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links-container {
        display: none;
        position: fixed;
        top: 87px;
        left: 0;
        right: 0;
        background: var(--blush-rose);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links-container.active {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-right {
        display: none;
    }

    .nav-links-container .auth-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links-container .auth-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .hamburger-menu.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-nav {
        grid-template-columns: repeat(2, auto);
        gap: 1rem;
    }

    .footer-form {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-form input,
    .footer-form button {
        width: 100%;
    }

    .footer-background img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }

    .logo img {
        height: 35px;
    }

    .auth-buttons {
        gap: 0.5rem;
    }

    .auth-buttons a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer {
        padding: 1.5rem 0.5rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-background img {
        height: 200px;
    }
}

/* Legal Pages Styles */
.legal-content {
    background: var(--white);
    padding: 120px 0 60px;
    min-height: calc(100vh - 87px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--deep-slate-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-text {
    color: var(--deep-slate-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

    .legal-container h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .legal-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 0 1rem;
    }

    .legal-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .legal-text {
        font-size: 0.9rem;
    }
} 