/* Pitch Prophet - Material Design Tech Theme */

:root {
    --primary-color: #00e5cc;
    --primary-dark: #00b8a3;
    --secondary-color: #1de9b6;
    --accent-color: #ff5252;
    --bg-dark: #050a0f;
    --bg-card: #0f2424;
    --text-primary: #ffffff;
    --text-secondary: #6b8589;
    --success-color: #1de9b6;
    --gradient-primary: linear-gradient(135deg, #00e5cc 0%, #1de9b6 100%);
    --gradient-secondary: linear-gradient(135deg, #1de9b6 0%, #00e5cc 100%);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(5, 10, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 229, 204, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav .brand-logo {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul a {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul a:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 229, 204, 0.1) !important;
}

.sidenav {
    background-color: var(--bg-card) !important;
}

.sidenav li > a {
    color: var(--text-primary) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #050a0f 0%, #0a1515 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 204, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: left;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: left;
}

.hero-image {
    text-align: center;
    position: relative;
}

.device-mockup {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 229, 204, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.device-mockup img {
    width: 100%;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: none;
    box-shadow: 0 8px 20px rgba(0, 229, 204, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(0, 229, 204, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent !important;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    border-radius: 10px;
    padding: 13px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.btn-secondary:hover {
    background: rgba(0, 229, 204, 0.1) !important;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Cards */
.card {
    background-color: var(--bg-card) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 204, 0.15);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 229, 204, 0.3) !important;
    border-color: rgba(0, 229, 204, 0.4);
}

.card-content {
    text-align: left;
    padding: 30px !important;
}

.card-title {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.card-content p {
    color: var(--text-secondary) !important;
    text-align: left;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Features Section */
#features .row {
    display: flex;
    flex-wrap: wrap;
}

#features .row .col {
    display: flex;
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.feature-card h3 {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    text-align: left;
    flex: 1;
}

/* Stats Section */
.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(0, 229, 204, 0.2);
}

footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: var(--text-secondary) !important;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.footer-copyright {
    background-color: var(--bg-dark);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

/* Privacy Accept Button */
#privacy-accept-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--gradient-primary) !important;
    border: none;
    border-radius: 10px;
    padding: 20px 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: none;
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#privacy-accept-btn:hover {
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.8);
    transform: translateX(-50%) translateY(-2px);
}

/* Privacy & Terms Content */
.content-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.content-container h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.content-container h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-container h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-container p,
.content-container ul,
.content-container ol {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    padding-left: 40px;
}

.content-container li {
    margin-bottom: 10px;
}

.content-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Contact Form */
.contact-form {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.input-field input,
.input-field textarea {
    color: var(--text-primary) !important;
    border-bottom: 2px solid rgba(0, 229, 204, 0.3) !important;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 2px solid var(--primary-color) !important;
    box-shadow: 0 1px 0 0 var(--primary-color) !important;
}

.input-field label {
    color: var(--text-secondary) !important;
}

.input-field label.active {
    color: var(--primary-color) !important;
}

.file-field .btn {
    background: var(--gradient-primary);
    border-radius: 8px;
}

/* Responsive */
@media only screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-content {
        text-align: center;
        padding: 40px 0;
    }

    .hero-content p {
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-container {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 5px 0;
        padding: 15px 20px;
    }

    .device-mockup {
        max-width: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-container {
        padding: 30px 20px;
    }

    #privacy-accept-btn {
        width: 90%;
        padding: 18px 30px;
    }
}

/* Loading Animation */
.loading-blur {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

.loading-blur.loaded {
    filter: blur(0);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Screenshot Carousel */
.screenshots-section {
    background-color: var(--bg-card);
    padding: 80px 0;
    max-height: 500px;
}

.screenshot-carousel {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel-slide img {
    max-height: 360px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 229, 204, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 229, 204, 0.3);
}

.carousel-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 229, 204, 0.5);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 229, 204, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 229, 204, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 229, 204, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(0, 229, 204, 0.6);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 229, 204, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.2);
}

@media only screen and (max-width: 600px) {
    .screenshots-section {
        max-height: 400px;
        padding: 60px 0;
    }

    .screenshot-carousel {
        height: 300px;
    }

    .carousel-slide img {
        max-height: 260px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}
