/* JustOutNow Landing Page Styles */

:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --primary: 142.1 76.2% 36.3%; /* Green for RSS */
    --primary-foreground: 0 0% 100%;
    --primary-hover: 142.1 76.2% 31%;
    --primary-light: 142.1 76.2% 95%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent-orange: 24.6 95% 53.1%;
    --accent-orange-light: 24.6 95% 97%;
    --accent-pink: 348.7 77.2% 49.8%;
    --accent-pink-light: 348.7 77.2% 97%;
    --accent-green: 142.1 76.2% 36.3%;
    --accent-green-light: 142.1 76.2% 97%;
    --accent-purple: 262.1 83.3% 57.8%;
    --accent-purple-light: 262.1 83.3% 97%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    color-scheme: light only;
    line-height: 1.6;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

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

/* Hero Section */
.hero-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--background)), hsl(var(--accent-purple-light)));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-purple)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    margin-top: 5rem;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.button-hero {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-purple)));
    color: white;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -3px rgba(0, 0, 0, 0.15);
}

.button-outline {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.button-outline:hover {
    background: hsl(var(--muted));
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    background: white;
    color: hsl(var(--primary));
    border: 1px solid white;
}

/* Cards */
.card {
    background: hsl(var(--card));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.2s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

.icon-emoji {
    font-size: 2rem;
}

/* Icon Colors */
.icon-orange {
    background: hsl(var(--accent-orange-light));
    color: hsl(var(--accent-orange));
}

.icon-blue {
    background: hsl(var(--primary-light));
    color: hsl(var(--primary));
}

.icon-pink {
    background: hsl(var(--accent-pink-light));
    color: hsl(var(--accent-pink));
}

/* Typography */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.card-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto 4rem;
}

/* Top Feature Cards */
.top-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.top-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.top-feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.top-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.top-feature-icon {
    color: hsl(var(--primary));
    font-size: 1.25rem;
}

/* Feature Section */
.feature-content {
    align-items: center;
}

.feature-section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 2rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--card));
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.feature-item-spaced {
    margin-bottom: 1.5rem;
}

.feature-item-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-emoji {
    font-size: 1rem;
}

.feature-item-content h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.feature-item-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Sections */
.muted-section {
    background: hsl(var(--muted) / 0.3);
}

.cta-section {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-purple)));
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Images */
.interface-image {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
}accent-orange));
}

.icon-blue {
    background: hsl(var(--primary-light));
    color: hsl(var(--primary));
}

.icon-pink {
    background: hsl(var(--accent-pink-light));
    color: hsl(var(--accent-pink));
}

/* Typography */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.card-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto 4rem;
}

/* Top Feature Cards */
.top-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.top-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.top-feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.top-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--card));
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.feature-item-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-content h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.feature-item-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Sections */
.muted-section {
    background: hsl(var(--muted) / 0.3);
}

.cta-section {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-purple)));
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Images */
.interface-image {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #b8b8b8;
    padding: 3rem 1rem 2rem;
    overflow-wrap: break-word;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

/* Mobile-first approach - single column on small screens */
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-quote {
        text-align: center !important;
    }
    
    .footer-company {
        text-align: center !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Desktop - 3 column layout */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr auto 1fr;
        gap: 3rem;
    }
    
    .footer-quote {
        text-align: left;
    }
    
    .footer-company {
        text-align: right;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-quote {
    text-align: left;
    min-width: 0;
}

.quote-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    word-wrap: break-word;
}

.quote-author {
    font-size: 0.875rem;
    color: #999;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 1rem;
}

.contact-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #fff;
}

.footer-company {
    text-align: right;
    min-width: 0;
}

.company-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.company-address {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    font-size: 0.875rem;
}

.footer-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-phone {
    color: #b8b8b8;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
}
