/* Background color */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f8eebe; /* brand background */
    color: #5a3e36;
    margin: 0;
    padding: 0;

    /* FULL center */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Wrapper should stretch full height */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content expands and centers */
.site-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

/* Footer always bottom and centered */
.site-footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
}


/* Center wrapper */
.comingsoon {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.logo {
    margin-bottom: 25px;
}
.logo .brand-logo {
    max-width: 140px;  /* smaller size */
    height: auto;
    margin-bottom: 8px;
}
.logo .tagline {
    font-size: 1rem;
    color: #a5795c;
}

/* Triangles container */
.triangles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    max-width: 700px;
}

/* Triangle shape */
.triangle {
    width: 120px;
    height: 100px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #000;
    text-align: center;
    padding: 5px;
}

.triangle span {
    font-size: 12px;
    margin-top: 25px;
}

/* Colors for each tier */
.red    { background: #b84e44; color:#fff; }
.coral  { background: #f08080; color:#000; }
.pink   { background: #e8a3a3; color:#000; }
.gold   { background: #e8c565; color:#000; }
.yellow { background: #f8e58c; color:#000; }
.white  { background: #fff; border: 1px solid #ccc; color:#000; }


/* Headline & Subtext */
.headline {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}
.subtext {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.countdown div {
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
}
.countdown span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #b84e44;
    display: block;
}
.countdown label {
    font-size: 0.8rem;
    color: #555;
}

/* Launch Message */
.launch-msg {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b84e44;
    margin-top: 20px;
}


/* ----------------- */
/* Mobile Responsive */
/* ----------------- */
@media (max-width: 600px) {
    .logo .brand-logo {
        max-width: 100px; /* slightly smaller logo */
    }

    .triangles {
        gap: 10px;
        margin: 20px 0;
    }
    .triangle {
        width: 80px;
        height: 70px;
        font-size: 0.8rem;
    }
    .triangle span {
        font-size: 12px;
        margin-top: 15px;
    }

    .headline {
        font-size: 1.4rem;
    }
    .subtext {
        font-size: 1rem;
    }

    .countdown {
        gap: 10px;
    }
    .countdown div {
        padding: 10px;
        min-width: 60px;
    }
    .countdown span {
        font-size: 1.2rem;
    }
}
