@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Patrick+Hand&display=swap');

body {
    background-color: #f6ebd8;
    font-family: 'Patrick Hand', cursive, sans-serif;
    margin: 0;
    color: #000000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 2px solid #222;
    background-color: #ffffff;
}

.top-bar .logo { height: 65px; width: auto; }
.top-bar .current-date { font-size: 24px; font-weight: bold; }

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.top-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.tomato-wrapper {
    position: relative;
    display: inline-block;
}

.main-tomato { width: 350px; height: auto; }

/* RELOJ CON FUENTE INTEGRADA Y MÁS FINA */
.time-display {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Patrick Hand', cursive; /* Fuente igual que el resto */
    font-size: 80px; /* Un poco más grande para compensar la finura de la fuente */
    font-weight: 600; /* Peso intermedio, ni muy fino ni muy grueso */
    pointer-events: none;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.config-section { display: flex; flex-direction: column; gap: 15px; }
.main-title { font-size: 45px; margin: 0; font-weight: normal; }

.option-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.option-text { font-size: 28px; }

.time-btn {
    background-color: #e2583e; color: white; border: 2px solid #000;
    border-radius: 50%; width: 60px; height: 60px;
    font-family: 'Patrick Hand', cursive; font-size: 20px;
    cursor: pointer; display: flex; justify-content: center; align-items: center;
    box-shadow: 2px 2px 0px #000;
}

.info-section { text-align: center; max-width: 600px; padding: 20px; }
.info-title { font-size: 32px; margin-bottom: 10px; }

.footer {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #000;
    font-family: 'Patrick Hand', cursive;
    border-top: 1px solid #e0d5c5;
    margin-top: 40px;
}