/* Styles for Coming Soon page */

/* About Hero Section */
.coming-soon-hero {
    background-image: url('../images/coming-soon/coming-soon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 378px); /* Viewport height minus footer height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 4.63vw, 80px);
    text-align: center;
}

.coming-soon-content {
    max-width: clamp(600px, 46.3vw, 800px);
    margin: 0; /* Remove auto margin to align left */
}

.coming-soon-content h1 {
    color: var(--primary-blue);
    font-size: clamp(48px, 4.63vw, 64px); /* 64px / 1728px = 3.7vw */
    font-weight: 700;
    margin-bottom: clamp(24px, 1.85vw, 32px);
    text-transform: uppercase;
}

.coming-soon-text {
    margin-bottom: clamp(32px, 2.31vw, 40px);
}

.coming-soon-text p {
    color: #302E2F;
    font-size: clamp(20px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: clamp(16px, 1.16vw, 20px);
}

.coming-soon-text p:last-child {
    margin-bottom: 0;
}

.coming-soon-content .btn:hover {
    background-color: #001229;
    transform: translateY(-2px);
}

/* Our Origin Story Section */
.origin-story {
    padding: clamp(60px, 6.94vw, 120px) clamp(20px, 2.31vw, 40px);
}

.origin-story-content {
    max-width: 1264px;
    margin: 0 auto;
    text-align: left;
}

.origin-story-content h2 {
    color: var(--primary-blue);
    font-size: clamp(44px, 3.7vw, 64px); /* 64px / 1728px = 3.7vw */
    font-weight: 700;
    margin-bottom: clamp(24px, 1.85vw, 32px);
}

.origin-story-content p {
    color: var(--text-gray, #302E2F);
    font-size: clamp(18px, 1.39vw, 24px); /* 24px / 1728px = 1.39vw */
    font-weight: 400;
    line-height: 1.6;
}
