/*
  File: css/styles.css
  Generated: 2025-09-04
  Description: Removed fixed heights from images to eliminate letterboxing.
*/

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- CSS Variables (Color Palette) --- */
:root {
    --primary-color: #FF00C1;      /* Neon Pink/Magenta from logo */
    --secondary-color: #00F2FF;    /* Neon Cyan/Blue from logo */
    --background-color: #000000;   /* Black from user's image */
    --surface-color: #121212;      /* Very dark gray for cards/headers */
    --text-color: #F0F0F0;         /* Off-white for readability */
    --text-color-muted: #a0a0c0;  /* Muted lavender for secondary text */
    --tag-background: #3c1a5b;     /* Dark purple for tags */
}

/* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Utility Classes --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header Styles --- */
header {
    background-color: var(--surface-color);
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo-image {
    height: 35px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}


/* --- Hero Section Styles --- */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    padding: 0 20px;
    background-color: var(--background-color); 
}

.hero-logo {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 350px;
    width: 100%;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-color-muted);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
}

/* --- About Section Styles --- */
#about {
    padding: 4rem 0;
    background-color: var(--surface-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-color-muted);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 350px;
    height: 350px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--background-color); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Apps Section Styles --- */
#apps {
    padding: 4rem 0;
}

.apps-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.app-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-basis: 320px;
    flex-grow: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 193, 0.2);
}

/* MARK: Style Change */
.app-card-image-custom {
    width: 100%;
    /* Removed fixed height to allow the image to define its own height */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* END: Style Change */

.app-card h3 {
    font-size: 1.5rem;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
}

.app-card p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    padding: 0 1.5rem 1rem 1.5rem;
    flex-grow: 1;
}

.app-tags {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.tag {
    display: inline-block;
    background-color: var(--tag-background);
    color: var(--text-color);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

/* --- Contact Section Styles --- */
#contact {
    padding: 4rem 0;
    background-color: var(--surface-color);
}

.contact-subtitle {
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 3rem;
    color: var(--text-color-muted);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    background-color: var(--background-color);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff; 
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* --- Footer Styles --- */
footer {
    background-color: var(--background-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

footer p {
    color: var(--text-color-muted);
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-color-muted);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* --- App Detail Page Styles --- */
#app-detail {
    padding: 4rem 0;
}

.app-detail-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 2rem;
}

.app-detail-icon {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    flex-shrink: 0;
    object-fit: contain;
}

.app-title-group h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.app-title-group p {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    margin-bottom: 1.5rem;
}

.app-store-button {
    display: inline-block;
    background: var(--surface-color);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.app-store-button:hover {
    background-color: var(--secondary-color);
    color: #111;
}

.app-detail-body h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.screenshot-gallery {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* MARK: Style Change */
.screenshot-image {
    flex-basis: 30%;
    flex-grow: 1;
    /* Removed fixed height and object-fit to let the image define its own height */
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    min-width: 280px;
    width: 100%; /* Ensures image scales within its flex container */
}
/* END: Style Change */

/* --- Feedback Form Styles --- */
#feedback {
    padding: 4rem 0;
    background-color: var(--surface-color);
}

.contact-form select option[disabled] {
    color: #757575;
}

/* --- Privacy Policy Page Styles --- */
#privacy-policy {
    padding: 4rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.privacy-content .last-updated {
    color: var(--text-color-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-color-muted);
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color-muted);
}

.privacy-content li strong {
    color: var(--text-color);
}

.privacy-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Button styling for privacy policy page */
.app-title-group .app-store-button {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .app-title-group .app-store-button {
        display: block;
        margin-bottom: 1rem;
        text-align: center;
    }
}
/* Total lines: 521 */