
/*
body{
    background-color: #f7f7f8;
    font-family: Helvetica, "Times New Roman"; 
}

span{
    color:white;
    font-size: 30;
}


div{
    margin:auto;
    padding:20px;
    max-width:1000px;
    text-align: center;
}

header{
    background-color:rgb(127, 74, 201);
    margin-left:auto;
    margin-right:auto;
    padding:20px;
    max-width:1000px;
    max-height:70px; 
    
}

button{
    display:inline-block;
    vertical-align: middle;
    font-size:30px;
    margin:50px 80px;
    padding: 10px 20px;
    background-color: aliceblue;
    border-radius: 30px;
    border:solid #a1a1a2;
    cursor:pointer; 
}

button:hover{
    background-color: darkcyan;
    color:rgb(142, 215, 215);
}

.hidden {
    display: none;
}

#joining-textbox {
    vertical-align: middle;
    position:static;
    margin:0; 
    margin-right: 46px;
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 30px;
    border: 2px solid #b3b3b3;
}


.center-text{
    text-align:center;
}
*/



/* ---------- RESET ---------- */
* {
    box-sizing: border-box;
    
}

/* ---------- BODY ---------- */
body {
    background-color: #f7f7f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ---------- HEADER ---------- */
header {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make white logo visible */
#logo {
    height:20%;
    width:20%;
}


.about-button {
    text-decoration: none;
    color: #a3a3a3;
    font-weight: bold;
    cursor: pointer;

    font-size: 18px;
    letter-spacing: 0.2px;
    text-decoration: underline #a3a3a3;
    transition: all 0.2s ease;
}

.about-button:hover {
    color: #111827;
    transform: translateY(-1px);
}

/* ---------- CARD CONTAINER ---------- */
.Welcome {
    width: 100%;
    max-width: 580px;
    margin-top: 80px;
    padding: 40px 30px;

    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;

    box-shadow: 0 8px 24px rgba(0,0,0,0.04);

    text-align: center;
}

/* ---------- TITLE ---------- */
h1 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 30px;
}

/* ---------- BUTTON ROW (SIDE BY SIDE) ---------- */
.button-row {
    display:block;
    gap: 12px;
}

/* ---------- BUTTON BASE ---------- */
button {
    flex: 1;
    display:inline-block;
    min-width: 40%;
    font-size: 16px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Join button (neutral) */
#joining-button:hover {
    background-color: #f3f4f6;
}

/* Create Schedule button (gradient like your design) */
#planning-button {
    border: none;
    color: white;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
}

#planning-button:hover {
    opacity: 0.9;
}

/* ---------- INPUT ---------- */
#joining-textbox {
    vertical-align: middle;
    position:static;
    min-width: 40%;
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    outline: none;
    text-align: center;
}

#joining-textbox:focus {
    border-color: #6366f1;
}

/* ---------- HIDDEN ---------- */
.hidden {
    display: none;
}

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

/* ---------- MOBILE ---------- */
@media (max-width: 500px) {


    #logo {
        width: 40%;
    }

    @media (max-width: 768px) {
    .about-button {
        font-size: 14px;
        padding: 9px 15px;
        font-weight: 700;
    }
}

    .Welcome {
        margin-top: 40px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    /* Stack buttons on mobile */
    .button-row {
        flex-direction: column;
    }
}