/* Basic Settings (Shared with Privacy Page) */
:root {
    --primary-color: #1F7D7D; /* Main Color */
    --primary-dark: #175e5e;  /* Darker Version */
    --primary-light: #2da1a1; /* Lighter Version */
    --text-color: #333;
    --light-gray: #f8f8f8;
    --dark-gray: #555;
    --white: #fff;
    --border-color: #eee;
    --font-family: 'Inter', sans-serif; /* Using Inter font */
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    direction: ltr; /* Set for English */
    text-align: left;
}

.container {
    max-width: 1100px; /* A bit wider for a landing page */
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero .hero-description {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--dark-gray);
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    flex-basis: 300px; /* Base width for each item */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 125, 125, 0.1);
}

.screenshot-placeholder {
    width: 100%;
    height: 350px; /* Adjust height as needed */
    background-color: #f0f4f4;
    border: 2px dashed var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    overflow: hidden; /* For when you use an <img> tag */
}

/* Uncomment this if you use <img> tags */
/*
.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

.feature-item h3 {
    font-size: 1.4em;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Download CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.cta-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.2em;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
    background-color: #222;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.google-play-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.google-play-btn .google-play-logo {
    width: 30px;
    margin-right: 15px; /* LTR adjustment */
}

.google-play-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left; /* LTR adjustment */
}

.google-play-btn .btn-text span {
    font-size: 0.9em;
    opacity: 0.8;
}

.google-play-btn .btn-text strong {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.2;
}

/* "Coming Soon" style */
.google-play-btn.soon {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #555;
}

.google-play-btn.soon:hover {
    background-color: #555;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Footer (Shared) */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
    font-size: 0.9em;
}

.footer p {
    margin: 0;
    margin-bottom: 10px;
}

.footer .privacy-link {
    color: var(--white);
    opacity: 0.8;
    text-decoration: underline;
}

.footer .privacy-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-item {
        flex-basis: 320px; /* Slightly larger on tablets */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3em;
    }
    .hero .subtitle {
        font-size: 1.3em;
    }
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    .feature-item {
        flex-basis: 95%; /* Full width on mobile */
        max-width: 400px;
    }
    .features-section h2, .cta-section h2 {
        font-size: 2em;
    }
}
