/* Spectacles Teleprompter Styles */

:root {
    --snap-yellow: #FFFC00;
    --snap-black: #000000;
    --snap-white: #FFFFFF;
    --text-gray: #333333;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--snap-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--snap-black) 0%, #1a1a1a 100%);
    color: var(--snap-white);
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header-icon {
    width: 80px;
    height: 80px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--snap-black);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--snap-black);
}

/* Hero Section */
.hero {
    padding: 2rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.preview-container {
    flex: 0 0 28%;
    max-width: 320px;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-gray);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Get Started Section */
.get-started {
    background: var(--snap-yellow);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.get-started h2 {
    margin-bottom: 1rem;
}

.get-started p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.get-started ol {
    text-align: left;
    max-width: 700px;
    margin: 2rem auto;
    padding-left: 2rem;
    counter-reset: item;
    list-style: none;
}

.get-started ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    position: relative;
    counter-increment: item;
}

.get-started ol li::before {
    content: counter(item);
    position: absolute;
    left: -2rem;
    top: 0.1rem;
    background: var(--snap-black);
    color: var(--snap-yellow);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--snap-black);
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--snap-black);
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content em {
    color: #666;
}

/* Footer Styles */
footer {
    background: var(--snap-black);
    color: var(--snap-white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer a {
    color: var(--snap-yellow);
    text-decoration: none;
    margin: 0 0.5rem;
}

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

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
    }

    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .preview-container {
        flex: 1 1 100%;
    }

    .preview-image {
        border-width: 2px;
    }

    .hero-text h2 {
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .get-started {
        padding: 2rem;
    }

    .get-started ol {
        padding-left: 1.5rem;
        max-width: 100%;
    }

    .get-started ol li {
        font-size: 1rem;
        padding-left: 0.5rem;
    }

    .get-started ol li::before {
        width: 1.75rem;
        height: 1.75rem;
        left: -1.75rem;
        font-size: 0.9rem;
        top: 0.1rem;
    }

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

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

