/* Main Styles for OzPath Website - New Design */

:root {
    --primary-blue: #1E90FF;
    --secondary-blue: #0066CC;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --text-gray: #cccccc;
    --accent-blue: #4A9EFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* City skyline background - only for hero section */
.city-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../images/background.jpg') center center/cover no-repeat;
    filter: grayscale(100%) brightness(0.4) contrast(1.15);
    z-index: -2;
}

.city-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 1;
}

.main-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background: transparent;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 50%,
        #000000 100%
    );
    z-index: -1;
    pointer-events: none;
}

.section-content {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-container {
    margin-bottom: 40px;
}

.main-logo {
    height: 120px;
    max-width: 100%;
    filter: drop-shadow(0 4px 20px rgba(30, 144, 255, 0.3));
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 6px 25px rgba(30, 144, 255, 0.5));
    transform: scale(1.05);
}

.main-tagline {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.discover-button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.discover-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

/* Features Section */
.features-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: #000000;
    position: relative;
    z-index: 1;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-text {
    padding-right: 40px;
}

.features-title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.features-description {
    font-size: clamp(20px, 4vw, 24px);
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-highlight {
    font-size: clamp(20px, 4vw, 24px);
    color: var(--accent-blue);
    line-height: 1.6;
    font-weight: 500;
}

.features-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon-logo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hexagon-logo:hover {
    transform: scale(1.05);
}

.hexagon-image {
    width: 100%;
    height: auto;
    filter: none;
}

/* Waitlist Container within Features Section */
.waitlist-container {
    margin-top: 200px;
    text-align: center;
    width: 100%;
}



.waitlist-title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.2;
}

.email-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 20px 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.join-waitlist-button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.join-waitlist-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.join-waitlist-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Message styles for waitlist feedback */
.message {
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-logo {
        height: 80px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .features-text {
        padding-right: 0;
    }
    
    .hexagon-logo {
        width: 150px;
        height: 150px;
    }
    
    .email-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-input {
        width: 100%;
    }
    
    .join-waitlist-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .features-section,
    .waitlist-section {
        padding: 40px 15px;
    }
    
    .main-logo {
        height: 60px;
    }
    
    .hexagon-logo {
        width: 120px;
        height: 120px;
    }
}