/* BodyMuse - Modern Mobile App Landing Page Styles */
/* Updated to match mobile app design theme */

/* Custom Fonts */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

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

/* Header */
header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #EAE3DA;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B6B;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    border-radius: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2F2F2F;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 48px 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA8A0 50%, #76D7C4 100%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .slogan {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero .description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: #FF6B6B;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #D95D5D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary {
    background: #FFFFFF;
    color: #FF6B6B;
    border: 2px solid #FFFFFF;
}

.btn-primary:hover {
    background: #FFF2F2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Download Buttons Container */
.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 48px 0;
    background: #F5F6FA;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: #2F2F2F;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #EAE3DA;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
    border-color: #FFA8A0;
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: #FF6B6B;
    font-weight: 600;
}

.feature-card p {
    color: #5C5C5C;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 48px 0;
    text-align: center;
    background: #FFFFFF;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #2F2F2F;
    font-weight: 700;
}

/* App Preview Section */
.app-preview {
    padding: 48px 0;
    text-align: center;
    background: #FFFFFF;
}

.app-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #2F2F2F;
    font-weight: 700;
}

.preview-description {
    font-size: 1.125rem;
    color: #5C5C5C;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
}

.app-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

/* Footer */
footer {
    background: #2F2F2F;
    color: #FFFFFF;
    text-align: center;
    padding: 32px 0;
}

/* Page Content */
.page-content {
    padding: 48px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #2F2F2F;
    text-align: center;
    font-weight: 700;
}

.page-content h2 {
    font-size: 1.875rem;
    margin: 32px 0 16px;
    color: #2F2F2F;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 16px;
    color: #5C5C5C;
    line-height: 1.7;
}

.page-content ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.page-content li {
    color: #5C5C5C;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #EAE3DA;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #EAE3DA;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

/* Contact Page Styling */
.contact-section {
    text-align: center;
    padding: 48px;
    background: #FFFFFF;
    border-radius: 16px;
    margin: 32px 0;
    border: 1px solid #EAE3DA;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-section h2 {
    font-size: 2rem;
    color: #FF6B6B;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-section .email-link {
    font-size: 1.375rem;
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FF6B6B;
    padding: 16px 32px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-section .email-link:hover {
    background: #FF6B6B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.contact-methods {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EAE3DA;
}

.contact-methods h2 {
    margin-bottom: 16px;
    color: #2F2F2F;
    font-weight: 700;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.contact-method {
    padding: 24px;
    background: #F5F6FA;
    border-radius: 12px;
    border: 1px solid #EAE3DA;
}

.contact-method h3 {
    color: #FF6B6B;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-method p {
    color: #2F2F2F;
    margin-bottom: 4px;
}

.contact-method .small-text {
    font-size: 0.875rem;
    color: #5C5C5C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 35px;
        margin-right: 10px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero .slogan {
        font-size: 1.125rem;
    }
    
    .features h2,
    .download h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 32px 0;
    }

    .download-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .download-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features {
        padding: 32px 0;
    }
    
    .download {
        padding: 32px 0;
    }
    
    .page-content {
        padding: 32px 0;
    }
    
    .app-preview {
        padding: 32px 0;
    }
    
    .app-preview h2 {
        font-size: 2rem;
    }
    
    .screenshot-container {
        max-width: 280px;
    }
    
    .app-screenshot {
        max-width: 250px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.375rem;
    }
    
    .logo img {
        height: 30px;
        margin-right: 8px;
    }
    
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .hero .slogan {
        font-size: 1rem;
    }
    
    .hero {
        padding: 24px 0;
    }
    
    .features,
    .download,
    .page-content {
        padding: 24px 0;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .contact-form,
    .contact-section {
        padding: 24px;
    }
    
    .screenshot-container {
        max-width: 240px;
    }
    
    .app-screenshot {
        max-width: 220px;
        border-radius: 16px;
    }
}

/* Legal Pages Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 48px;
    font-size: 2.5rem;
    font-weight: 700;
}

.legal-content h2 {
    color: #FF6B6B;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFF2F2;
}

.legal-content h3 {
    color: #2F2F2F;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 24px;
    color: #2F2F2F;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin: 24px 0;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 12px;
    color: #2F2F2F;
    line-height: 1.7;
}

.legal-toc {
    background: #FFF2F2;
    border: 1px solid #FFA8A0;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0 48px;
}

.legal-toc h3 {
    color: #FF6B6B;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.375rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 32px;
}

.legal-toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.legal-toc a {
    color: #2F2F2F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.legal-toc a:hover {
    color: #FF6B6B;
}

.legal-section {
    margin: 48px 0;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAE3DA;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.legal-section:target {
    border-color: #FF6B6B;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.15);
}

.important-notice {
    background: #FFF2F2;
    border-left: 4px solid #FF6B6B;
    padding: 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.important-notice p {
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-meta {
    background: #F5F6FA;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
    border: 1px solid #EAE3DA;
}

.legal-meta p {
    margin: 0;
    color: #5C5C5C;
    font-weight: 500;
}

.contact-legal {
    background: #F5F6FA;
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    text-align: center;
    border: 1px solid #EAE3DA;
}

@media (max-width: 768px) {
    .legal-toc ul {
        columns: 1;
    }
    
    .legal-section {
        padding: 24px;
        margin: 32px 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.375rem;
    }
}

/* Blog/Article Styles */
.article-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA8A0 50%, #76D7C4 100%);
    color: white;
    padding: 48px 0;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-meta {
    font-size: 0.95rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.article-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
}

.table-of-contents {
    background: #FFFFFF;
    padding: 32px 0;
    border-bottom: 1px solid #EAE3DA;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #2F2F2F;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.table-of-contents li {
    margin: 0;
}

.table-of-contents a {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #D95D5D;
    text-decoration: underline;
}

.article-content {
    background: #F5F6FA;
    padding: 48px 0;
}

.article-content section {
    margin-bottom: 48px;
}

.article-content h2 {
    font-size: 2rem;
    color: #2F2F2F;
    margin-bottom: 24px;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #2F2F2F;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.25rem;
    color: #2F2F2F;
    margin-bottom: 12px;
    font-weight: 600;
}

.article-content p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2F2F2F;
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    line-height: 1.6;
    margin-bottom: 8px;
    color: #2F2F2F;
}

.highlight-box {
    background: #FFF2F2;
    border-left: 4px solid #FF6B6B;
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: #FF6B6B;
    margin-bottom: 12px;
}

.tip-box {
    background: #F0FDFA;
    border-left: 4px solid #76D7C4;
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
}

.tip-box h3 {
    color: #76D7C4;
    margin-bottom: 12px;
}

.measurement-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.measurement-item {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #EAE3DA;
}

.measurement-item h4 {
    color: #FF6B6B;
    margin-bottom: 12px;
}

.body-shape-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.body-shape-type {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #EAE3DA;
}

.body-shape-type h3 {
    color: #FF6B6B;
    margin-bottom: 16px;
}

.styling-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.styling-tip {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #EAE3DA;
}

.styling-tip h3 {
    color: #76D7C4;
    margin-bottom: 16px;
}

.mistakes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.mistake-item {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #EAE3DA;
}

.mistake-item h3 {
    color: #FF6B6B;
    margin-bottom: 12px;
}

.app-recommendation {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    border: 2px solid #FF6B6B;
    margin: 40px 0;
}

.app-recommendation h3 {
    color: #FF6B6B;
    margin-bottom: 16px;
}

.app-features {
    margin: 24px 0;
}

.app-features h4 {
    color: #2F2F2F;
    margin-bottom: 16px;
}

.download-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #76D7C4 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-top: 32px;
}

.download-section h4 {
    color: white;
    margin-bottom: 12px;
}

.download-section p {
    color: white;
    margin-bottom: 24px;
}

.conclusion {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #EAE3DA;
    margin: 40px 0;
}

.related-articles {
    background: #FFFFFF;
    padding: 48px 0;
}

.related-articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
    color: #2F2F2F;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: #F5F6FA;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #EAE3DA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.article-card h3 {
    color: #FF6B6B;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.article-card p {
    color: #5C5C5C;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-intro {
        font-size: 1rem;
    }
    
    .table-of-contents ul {
        grid-template-columns: 1fr;
    }
    
    .measurement-guide,
    .body-shape-types,
    .styling-tips,
    .mistakes-list,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .app-recommendation,
    .conclusion {
        padding: 24px;
    }
    
    .download-section {
        padding: 24px;
    }
} 