/* 
* outdreamai.site - Main Stylesheet
* Unique blue and purple color scheme with modern design elements
*/

:root {
    --primary: #03A9F4;
    --secondary: #673AB7;
    --dark: #263238;
    --light: #FAFAFA;
    --gray: #78909C;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

.highlight {
    color: var(--primary);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: var(--transition);
}

.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: var(--dark);
    font-weight: 500;
}

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

.cta-button {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-button {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.2);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 169, 244, 0.4);
    color: var(--white);
}

.ghost-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.ghost-button:hover {
    background: var(--primary);
    color: var(--white);
}

.large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--light);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.05) 0%, rgba(103, 58, 183, 0.05) 100%);
    z-index: 1;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 0 0 50%;
    padding-right: 40px;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-visual {
    flex: 0 0 45%;
    animation: float 6s ease-in-out infinite;
}

.hero-graphic {
    width: 100%;
    height: auto;
}

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-card {
    flex: 0 0 calc(33.33% - 20px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary);
}

/* Features Section */
.features {
    background-color: var(--light);
    position: relative;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 0 0 50%;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
}

.feature-image {
    flex: 0 0 45%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Examples Section */
.examples {
    background-color: var(--white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.example-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 3/2;
}

.example-card:hover {
    transform: translateY(-10px);
}

.example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    text-align: center;
}

.example-overlay h3 {
    margin-bottom: 5px;
    color: var(--white);
}

.example-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.examples-cta {
    text-align: center;
}

/* Testimonial Section */
.testimonial {
    background: var(--light);
    padding: 60px 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-title {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.cta-section h2,
.cta-section p {
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .highlight {
    color: var(--white);
}

.cta-section .primary-button {
    background-color: var(--white);
    color: var(--primary);
    margin-top: 30px;
}

.cta-section .primary-button:hover {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 30%;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 0 30%;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    
    .hero-split {
        flex-direction: column;
    }
    
    .hero-text {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-visual {
        flex: 0 0 100%;
        max-width: 500px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .feature {
        flex-direction: column-reverse !important;
    }
    
    .feature-content,
    .feature-image {
        flex: 0 0 100%;
    }
    
    .about-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .footer-links {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-bottom p:first-child {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 130px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-card {
        flex: 0 0 100%;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}
