/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2196F3;  /* Blue */
    --secondary-color: #03A9F4;  /* Light Blue */
    --accent-color: #FFC107;  /* Amber */
    --text-color: #333;
    --light-text: #fff;
    --background-color: #1E3A8A;  /* Dark Blue */
    --card-bg: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--background-color);
    color: var(--light-text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--light-text);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

section {
    padding: 5rem 10%;
}

/* Header & Navigation */
header {
    background-color: rgba(30, 58, 138, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--light-text);
    font-weight: 700;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--light-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 150px;
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

/* Feature Highlights */
.feature-highlights {
    margin: 2rem 0;
    max-width: 600px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-point:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-point i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    min-width: 25px;
    text-align: center;
}

.feature-point span {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.4;
}

/* App Mockup */
.hero-app {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.phone-mockups {
    position: relative;
    width: 400px;
    height: 550px;
    perspective: 1000px;
}

.phone {
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    overflow: hidden;
    border: 10px solid #333;
    background-color: #333;
    transition: all 0.5s ease;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.front-phone {
    width: 280px;
    height: 550px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    bottom: 0;
}

.back-phone {
    width: 260px;
    height: 530px;
    right: 0;
    bottom: 10px;
    z-index: 1;
    transform: rotate(-8deg);
}

.phone:hover {
    transform: translateY(-10px);
    z-index: 3;
}

.front-phone:hover {
    transform: translateY(-10px) translateX(-50%);
}

.back-phone:hover {
    transform: translateY(-10px) rotate(0);
}

.download-buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
}

.app-store-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.app-store-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.4);
}

.app-store-button i {
    font-size: 1.8rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

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

/* Feature details list */
.feature-details {
    list-style: none;
    text-align: left;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.feature-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-details li i {
    font-size: 1rem;
    color: var(--accent-color);
    margin-right: 0.8rem;
    margin-bottom: 0;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
}

.screenshot-slider {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.screenshot {
    text-align: center;
}

.screenshot img {
    max-width: 250px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.screenshot img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.screenshot p {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--light-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-controls button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
    text-align: center;
    padding: 5rem 10%;
}

.download p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.qr-code-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.qr-code {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.qr-code p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.download-buttons {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
}

.download-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.4);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
    text-align: center;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--light-text);
    margin: 0;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(33, 150, 243, 0.2);
    color: var(--light-text);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    border: 1px solid var(--primary-color);
}

/* Footer */
footer {
    background-color: #0F172A;
    color: var(--light-text);
    padding: 3rem 10% 1rem;
}

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

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

.footer-logo img {
    height: 40px;
    object-fit: contain;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

/* App Download Info Section */
.app-download-info {
    display: flex;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.qr-code {
    text-align: center;
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 160px;
    height: auto;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 8px;
}

.qr-code p {
    margin: 5px 0;
    font-weight: 600;
    font-size: 1rem;
}

.qr-code .qr-subtitle {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

.user-count {
    display: flex;
    align-items: center;
}

.laurel-wreath {
    display: flex;
    align-items: center;
    position: relative;
}

.laurel-left, .laurel-right {
    color: var(--accent-color);
    font-size: 3rem;
    margin: 0 10px;
}

.laurel-left {
    transform: rotate(-30deg);
}

.laurel-right {
    transform: rotate(30deg) scaleX(-1);
}

.user-stats {
    text-align: center;
    padding: 0 10px;
}

.join-text {
    font-size: 1.2rem;
    margin: 0;
}

.count-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 5px 0;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Hero App Screens */
.app-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 550px;
    margin-top: 20px;
    perspective: 1000px;
}

.app-screen {
    position: absolute;
    width: 280px;
    transition: all 0.5s ease;
    cursor: pointer;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-screen img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 8px solid #333;
    background-color: #333;
    transition: all 0.5s ease;
}

.app-screen p {
    margin-top: 15px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

#homepage {
    transform: translateX(-40px) scale(0.9);
    z-index: 1;
}

#route-details {
    transform: translateX(40px) scale(0.9);
    z-index: 1;
}

.app-screen.active {
    transform: translateX(0) scale(1.05);
    z-index: 2;
}

.app-screen.active img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.app-screen.active p {
    opacity: 1;
    transform: translateY(0);
}

/* Make one screen active by default */
#homepage.active {
    transform: translateX(-80px) scale(1);
}

#route-details.active {
    transform: translateX(80px) scale(1);
}

.app-screen:hover {
    transform: translateY(-5px);
}

.app-screen:hover img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    section {
        padding: 5rem 5%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .feature-highlights {
        margin: 2rem auto;
    }
    
    .feature-point {
        text-align: left;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .screenshot-slider {
        flex-wrap: wrap;
    }
    
    .download-buttons {
        flex-wrap: wrap;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .app-download-info {
        justify-content: center;
    }
    
    .phone-mockups {
        width: 350px;
        height: 500px;
    }
    
    .front-phone {
        width: 230px;
        height: 470px;
    }
    
    .back-phone {
        width: 230px;
        height: 470px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: calc(100vh - 80px);
        top: 80px;
        background-color: var(--card-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-point {
        padding: 0.8rem;
    }
    
    .feature-point i {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .feature-point span {
        font-size: 0.9rem;
    }
    
    .phone-mockups {
        width: 300px;
        height: 450px;
    }
    
    .front-phone {
        width: 230px;
        height: 430px;
    }
    
    .back-phone {
        width: 210px;
        height: 410px;
        right: 5px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .laurel-left, .laurel-right {
        font-size: 2.5rem;
    }
    
    .count-text {
        font-size: 1.3rem;
    }
    
    .qr-code-container {
        margin-bottom: 2rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .feature-point {
        padding: 0.7rem;
    }
    
    .feature-point i {
        font-size: 1.2rem;
        margin-right: 0.7rem;
    }
    
    .feature-point span {
        font-size: 0.85rem;
    }
    
    .feature-details li {
        font-size: 0.85rem;
    }
    
    .download-container {
        padding: 0 1rem;
    }
    
    .app-store-button {
        width: 100%;
        justify-content: center;
    }
    
    .phone-mockups {
        width: 250px;
        height: 400px;
    }
    
    .front-phone {
        width: 200px;
        height: 380px;
    }
    
    .back-phone {
        width: 180px;
        height: 360px;
        right: 0;
    }
    
    .social-media {
        flex-wrap: wrap;
    }
    
    .app-download-info {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code {
        max-width: 150px;
        padding: 15px;
    }
    
    .qr-code img {
        width: 120px;
        height: 120px;
    }
    
    .qr-code p {
        font-size: 0.9rem;
    }
    
    .qr-code .qr-subtitle {
        font-size: 0.75rem;
    }
    
    .laurel-left, .laurel-right {
        font-size: 2rem;
    }
    
    .count-text {
        font-size: 1.2rem;
    }
    
    .app-screens {
        height: 350px;
    }
    
    .app-screen {
        width: 160px;
    }
    
    .app-screen img {
        max-height: 320px;
        border-width: 6px;
    }
} 