/* Countdown styles for SalchiFEST */
:root{
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #ff6b35;
  --text: #f7fafc;
}
*{box-sizing:border-box}

html,body{
    background-image: url('../media/fondo-p.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: rgb(197, 85, 0);
    height:100%;
    margin:0;
    font-family:Inter,Segoe UI,Arial,sans-serif;
    color:var(--text);
}

#texto-principal{
    width: 400px;
    margin-bottom: 0;
}
    

.wrap{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:4rem;}

.hero{
    text-align:center;
    margin-bottom:1rem}

.hero h1{font-size:2.25rem; margin:0}

.subtittle{
    margin:0 2rem 0 2rem;
    padding-top: 0;
    font-size: 1rem; 
    color:#ffffff;
    max-width:920px;
    line-height:1.15;
    text-align:center;
}

.countdown{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1rem;
    max-width:980px;
    width:100%;
    margin:1rem 0}

.unit{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.04);
    padding:1.25rem;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    backdrop-filter: blur(6px);
    min-height:86px;
}

.number{
    font-size:2rem;
    font-weight:700;
    color:var(--accent)}

.label{
    font-size:0.85rem;
    opacity:0.9;
    margin-top:0.35rem}

.message{
    margin-top:1rem;
    font-size:1.02rem;
    color:#e6fffa}

.menu{
    margin-top:0rem;
    margin-bottom: 3rem;
    text-align:center;
}

.bt-1, .bt-2{
        margin: 10px;
        width: 100%;
        max-width:260px;
        color:#fff;
        border:none;
        padding:0.75rem 1.5rem;
        border-radius:20px;
        font-size:1rem;
        font-weight: 600;
        cursor:pointer;
        display:inline-block;
        transition:background-color 0.2s ease;
}

.bt-1{background-color:var(--accent); color:#fff}
.bt-2{background-color:#ffffff; color:#000000}

footer{
    align-items: center;
    background-color: rgb(197, 85, 0);
    padding: 1rem;
    border: #e6fffa 2px solid;
    border-radius: 20px;
}

#logos-patrocinadores{
    align-items: center;
    width: 80px;
    height: auto;
}

@media (max-width:1024px){
    .countdown{grid-template-columns:repeat(3,1fr)}
    footer{background-color: none;}
}

@media (max-width:768px){
    .countdown{grid-template-columns:repeat(2,1fr)}
    .number{font-size:1.6rem}
    .wrap{padding:1.25rem}
    .subtitle{font-size:1.15rem}
    #logos-patrocinadores{width: 45px;}
}

@media (max-width:420px){
    .countdown{grid-template-columns:repeat(1,1fr)}
    .number{font-size:1.5rem}
    .subtitle{font-size:1rem}
    .bt-1, .bt-2{max-width:320px}
}
