/* 
   SmokerAI Landing Page Styles
   Colors:
   - Primary (Roast): #FF4500 (flame orange)
   - Secondary (Rizz): #7C4DFF (purple)
   - Background: #000000 (black)
   - Text: #FFFFFF (white)
   - Gray text: #888888
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

section {
    padding: 5rem 2rem;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    backdrop-filter: blur(10px);
    height: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    margin-right: 0.5rem;
    color: #FF4500;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.download-btn {
    background: linear-gradient(to right, #FF4500, #FF2200);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
}

.download-btn:hover {
    opacity: 0.9;
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 6rem;
    background: linear-gradient(135deg, #000000, #1A1A1A);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(124, 77, 255, 0.2));
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #CCCCCC;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    display: inline-block;
    background: linear-gradient(to right, #FF4500, #FF2200);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.secondary-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    z-index: 2;
}

/* Features Section */
.features {
    background-color: #0C0C0C;
    position: relative;
    overflow: hidden;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-card {
    background: #1A1A1A;
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.roast-card {
    background: linear-gradient(180deg, #1A1A1A, #1A1A1A);
    border-top: 3px solid #FF4500;
}

.roast-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 69, 0, 0.1), rgba(255, 69, 0, 0));
    pointer-events: none;
    border-radius: 20px;
}

.rizz-card {
    background: linear-gradient(180deg, #1A1A1A, #1A1A1A);
    border-top: 3px solid #7C4DFF;
}

.rizz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.1), rgba(124, 77, 255, 0));
    pointer-events: none;
    border-radius: 20px;
}

.feature-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roast-card .feature-icon {
    color: #FF4500;
}

.rizz-card .feature-icon {
    color: #7C4DFF;
}

.feature-icon i {
    font-size: 1.8rem;
}

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

.feature-card p {
    color: #BBBBBB;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    color: #BBBBBB;
}

.feature-list i {
    margin-right: 0.5rem;
    color: #FF4500;
}

.rizz-card .feature-list i {
    color: #7C4DFF;
}

.feature-note {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

/* How It Works Section */
.how-it-works {
    background-color: #000000;
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4500, #7C4DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}

.step p {
    color: #BBBBBB;
}

/* Pricing Section */
.pricing {
    background-color: #0C0C0C;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #1A1A1A;
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    color: #888888;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 0.8rem;
    color: #FF4500;
}

.pricing-features li.disabled {
    color: #666666;
}

.pricing-features li.disabled i {
    color: #666666;
}

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

.pro-card {
    background: linear-gradient(180deg, #1A1A1A, #1A1A1A);
    border: 1px solid rgba(255, 69, 0, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 69, 0, 0.15), rgba(255, 69, 0, 0));
    pointer-events: none;
    border-radius: 20px;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #FF4500, #FF2200);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #000000;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    padding: 0 1rem;
}

.testimonial-content {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #1A1A1A;
    transform-origin: 0 0;
    transform: rotate(45deg) translateX(-50%);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: #888888;
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #FF4500;
}

/* FAQ Section */
.faq {
    background-color: #0C0C0C;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #1A1A1A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #888888;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #BBBBBB;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #0C0C0C, #000000);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(124, 77, 255, 0.1));
    opacity: 0.5;
}

.download-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #BBBBBB;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    background: #1A1A1A;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.app-button:hover {
    transform: translateY(-5px);
    background: #2A2A2A;
}

.app-button i {
    font-size: 2rem;
    margin-right: 0.8rem;
}

.app-button span {
    font-size: 0.7rem;
    display: block;
    text-align: left;
    color: #BBBBBB;
}

.app-button strong {
    font-size: 1.1rem;
    display: block;
    text-align: left;
}

/* Footer */
footer {
    background-color: #0A0A0A;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #FF4500;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF4500;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
    font-size: 0.9rem;
}

/* Privacy and Terms page styles */
.privacy-container, .terms-container {
    max-width: 800px;
    margin: 6rem auto 2rem;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: auto;
    overflow: visible;
    min-height: 70vh;
}

.privacy-content, .terms-content {
    color: #FFFFFF;
    line-height: 1.6;
    overflow: visible;
}

.privacy-content h1, .terms-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF4500;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.privacy-content h2, .terms-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #FF4500;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

main {
    overflow-y: visible;
    padding-bottom: 3rem;
    margin-top: 80px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 300px;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pro-card {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .feature-card, .pricing-card {
        min-width: 100%;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-column {
        flex: 1 0 40%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 1 0 100%;
    }
} 