﻿/* Cover Page Styles */
.cover-page {
    min-height: 100vh;
    background-image: url(../images/SiteBuilder/homepage.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.cover-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.cover-header {
    padding: 20px 0;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
}

.logo-text {
    width: 180px;
    height: 32px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease;
}

    .nav-link:hover {
        color: #1e293b;
    }

.sign-in-btn {
    background: var(--white);
    color: var(--purple);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .sign-in-btn:hover {
        color: var(--transpurple);
    }

/* Main Content */
.cover-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Hero Content */
.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--purplegradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    margin: 0 0 40px 0;
    max-width: 520px;
    font-weight: 400;
}

.get-started-btn {
    background: var(--transpurple);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

    .get-started-btn:hover {
        background: var(--purple);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        gap: 60px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .cover-page {
        background-size: contain;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cover-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }
}
