/* Resetare și variabile */
:root {
    --primary-color: #2663EC;
    --secondary-color: #0C1426;
    --accent-color: #FFC857;
    --dark-blue: #0C1426;
    --light-blue: #1A2C4E;
    --text-light: #FFFFFF;
    --text-dark: #0C1426;
    --padding-section: 80px 0;
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Header și navigare */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(12, 20, 38, 0.9);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Features section */
.features {
    padding: var(--padding-section);
    background-color: rgba(25, 41, 77, 0.5);
}

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

.feature-card {
    background: rgba(26, 44, 78, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* App showcase */
.app-showcase {
    padding: var(--padding-section);
}

.app-showcase .container {
    display: flex;
    align-items: center;
}

.app-screenshots {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.screenshot {
    max-height: 500px;
}

.app-description {
    flex: 1;
    padding-left: 50px;
}

.app-description h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.app-description p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* About section */
.about {
    padding: var(--padding-section);
    background-color: rgba(25, 41, 77, 0.5);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-item {
    margin-bottom: 40px;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-height: 400px;
}

/* FAQ section */
.faq {
    padding: var(--padding-section);
}

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

.faq-item {
    background: rgba(26, 44, 78, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Download section */
.download {
    padding: var(--padding-section);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3b8b 100%);
    text-align: center;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.download-content p {
    margin-bottom: 40px;
    font-size: 18px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn img {
    height: 60px;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: var(--dark-blue);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links ul {
    display: flex;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--text-light);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
}

/* Privacy Policy page */
.privacy-policy {
    padding: 150px 0 80px;
}

.privacy-policy .section-header {
    margin-bottom: 40px;
}

.privacy-policy h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.policy-section {
    background: rgba(26, 44, 78, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.policy-section p, .policy-section li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.policy-section a {
    color: var(--primary-color);
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .hero .container, 
    .app-showcase .container,
    .about-content {
        flex-direction: column;
    }

    .hero-content, 
    .app-description,
    .about-text,
    .about-image {
        padding: 0;
        width: 100%;
    }

    .hero-image, 
    .app-screenshots {
        margin-top: 25px;
        margin-bottom: 50px;
    }

    .about-image {
        margin-top: 40px;
    }

    .feature-card {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links.active-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .app-screenshots {
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
        margin-bottom: 75px;
    }

    .screenshot {
        max-width: 80%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
} 