/* styles.css */

/* Import Baloo2 and Montserrat Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000;
}

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

/* Header */
.header {
    background-color: #452b76;
    padding: 8px 0;
    border-bottom: 1px solid #3a2461;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.title {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.title:hover {
    opacity: 0.8;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: #000;
    padding: 120px 0 40px 0;
    text-align: center;
}

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

.app-store-section {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.app-store-badge {
    margin-bottom: 0;
}

.app-store-img {
    height: 60px;
    width: auto;
}

.qr-code {
    margin-bottom: 0;
}

.qr-img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
}

.app-preview {
    margin-top: 40px;
}

.preview-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content Row Layout */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin: 20px 0;
}

.content-row.left-text {
    grid-template-areas: "text image";
}

.content-row.right-text {
    grid-template-areas: "image text";
}

.text-content {
    grid-area: text;
}

.image-content {
    grid-area: image;
    width: 100%;
}

.text-content .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.text-content .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
}

.features-list {
    margin: 20px 0;
    text-align: left;
}

.feature-item {
    margin: 15px 0;
    font-size: 1rem;
    color: #e2e8f0;
}

.feature-item::before {
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .content-row.left-text,
    .content-row.right-text {
        grid-template-areas: 
            "text"
            "image";
    }
    
    .text-content .section-title,
    .text-content .section-subtitle {
        text-align: center;
    }
    
    .features-list {
        text-align: left;
        max-width: none;
    }
}

/* Legacy styles - keeping for hero and other sections */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.section-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
    color: #e2e8f0;
    opacity: 0.9;
    text-align: center;
}

.features-list {
    margin: 15px 0;
    text-align: left;
}

.feature-item {
    margin: 15px 0;
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.5;
}

/* Remove legacy preview section styles since we updated them above */
.screenshot-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0;
    object-fit: cover;
}

/* Keep original app-screenshot for backward compatibility */
.app-screenshot {
    text-align: center;
    margin: 20px 0;
}

.app-screenshot .screenshot-img {
    margin: 0;
}

/* Section Styles - Alternating Background Colors with Reduced Padding */
.browse-section {
    background-color: #452b76;
    padding: 40px 0;
}

.preview-section {
    background-color: #000;
    padding: 40px 0;
}

.advanced-tools {
    background-color: #452b76;
    padding: 40px 0;
}

.cinematic-luts {
    background-color: #000;
    padding: 40px 0;
}

.color-visualization {
    background-color: #452b76;
    padding: 40px 0;
}

.ai-color-match {
    background-color: #000;
    padding: 40px 0;
}

.color-masks {
    background-color: #452b76;
    padding: 40px 0;
}

.combine-luts {
    background-color: #000;
    padding: 40px 0;
}

.video-effects {
    background-color: #452b76;
    padding: 40px 0;
}

.film-emulation {
    background-color: #000;
    padding: 40px 0;
}

/* Related Apps */
.related-apps {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    padding: 80px 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 0 30px 0;
    text-align: center;
}

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

.copyright {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

/* Remove old navigation styles */
/* Navigation styles removed since we deleted the duplicate navigation */

/* Contact Section */
.contact-section {
    background-color: #000;
    padding: 100px 0 40px 0;
}

.contact-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.contact-section .section-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
    color: #e2e8f0;
    opacity: 0.9;
    text-align: center;
}

/* Contact Form Styles */
.contact-form {
    background: #412c72;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #6b4c93;
    color: #ffffff;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d1c7e1;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.submit-btn {
    background-color: #34235b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
    font-size: 16px;
    border-radius: 12px;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Privacy Section */
.privacy-section {
    background-color: #000;
    padding: 100px 0 40px 0;
}

.privacy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-intro {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.privacy-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.privacy-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.privacy-small-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #e2e8f0;
    font-size: 16px;
}

.privacy-list {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-list li {
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 16px;
}

/* Responsive Design for Privacy */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 36px;
    }
    
    .privacy-heading {
        font-size: 24px;
    }
    
    .privacy-subheading {
        font-size: 20px;
    }
    
    .privacy-small-heading {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-content,
    .container {
        padding: 0 15px;
    }
    
    .navigation {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin: 20px 0;
    }
    
    .contact-form {
        padding: 20px;
        margin: 20px;
    }
}