/* Fuzion Donuts Brand Colors */
:root {
    --primary-color: #E85A2A;
    --secondary-color: #FFFFFF;
    --tertiary-color: #1A1A1A;
    --fourth-color: #666666;
    --heading-font: 'Quicksand', sans-serif;
    --paragraph-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--paragraph-font);
    line-height: 1.6;
    color: var(--tertiary-color);
    background-color: var(--secondary-color);
}

/* Heading styles - Quicksand Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Paragraph and text styles - Open Sans */
p {
    font-family: var(--paragraph-font);
}

header {
    position: relative;
    width: 100%;
    background-color: var(--tertiary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 2rem;
    background-color: var(--tertiary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--tertiary-color);
}

.logo-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-btn:hover {
    transform: scale(1.05);
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.order-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

main {
    min-height: 60vh;
    padding: 2rem;
}

/* Terms of Service Content Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.container {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-color) 70%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-order-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    width: 75%;
    align-self: center;
}

.footer-order-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    .nav-links {
        display: none;
    }
    .order-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .logo {
        height: 60px;
    }
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .footer-logo-img {
        height: 100px;
    }
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .container {
        padding: 2rem;
    }
    .terms-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }
    .logo {
        height: 50px;
    }
    .order-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-logo-img {
        height: 80px;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .footer-links a,
    .social-link {
        font-size: 0.9rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }
    .container {
        padding: 1.5rem;
    }
    .terms-content h1 {
        font-size: 1.8rem;
    }
    .terms-section h2 {
        font-size: 1.3rem;
    }
} 