/* ============================================================
   PORTAIL TV — Styles spécifiques écran TV
   Conçu pour 40"+ à 1080p, télécommande ou tactile
   ============================================================ */

.tv-body {
    background: linear-gradient(160deg, #0f2640 0%, #1a3c5e 60%, #14304d 100%);
    min-height: 100vh;
    color: var(--blanc);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- Header --- */
.tv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

.tv-hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--or);
    letter-spacing: 0.02em;
}

.tv-logo {
    height: 50px;
    object-fit: contain;
}

.tv-clock {
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    text-align: right;
    letter-spacing: 0.05em;
    line-height: 1;
}

.tv-date {
    font-size: 0.85rem;
    color: rgba(248,246,241,0.6);
    text-align: right;
    margin-top: 0.2rem;
}

/* --- Bienvenue --- */
.tv-welcome {
    text-align: center;
    padding: 1.5rem 3rem 0.75rem;
}

.tv-welcome h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: white;
    font-weight: 400;
    margin: 0;
}

.tv-welcome h1 span {
    color: var(--or);
}

.tv-welcome p {
    color: rgba(248,246,241,0.7);
    font-size: 1rem;
    margin: 0.4rem 0 0;
}

/* --- Météo --- */
.tv-meteo {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 3rem;
}

.meteo-item {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 90px;
}

.meteo-jour {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(248,246,241,0.6);
    margin-bottom: 0.3rem;
}

.meteo-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin: 0.25rem 0;
}

.meteo-temp {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.meteo-desc {
    font-size: 0.7rem;
    color: rgba(248,246,241,0.5);
    margin-top: 0.2rem;
}

/* --- Menu principal --- */
.tv-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 0.75rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tv-tile {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tv-tile:hover,
.tv-tile:focus {
    background: rgba(201,168,76,0.15);
    border-color: var(--or);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: white;
}

.tv-tile-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tv-tile-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.tv-tile-sub {
    font-size: 0.78rem;
    color: rgba(248,246,241,0.55);
    line-height: 1.4;
}

/* Couleurs d'accent par tuile */
.tv-tile-streaming:hover { border-color: #e50914; }  /* rouge Netflix */
.tv-tile-radio:hover     { border-color: #1db954; }  /* vert Spotify */
.tv-tile-reception:hover { border-color: #4fc3f7; }  /* bleu clair */
.tv-tile-services:hover  { border-color: var(--or); }

/* --- Section QR --- */
.tv-qr-section {
    padding: 0.75rem 3rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tv-qr-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    gap: 2rem;
}

.tv-qr-text h3 {
    color: var(--or);
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
}

.tv-qr-text p {
    color: rgba(248,246,241,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.tv-qr-code img {
    border-radius: 8px;
    border: 3px solid white;
}

/* --- Responsive TV (petits écrans / tablette) --- */
@media (max-width: 1100px) {
    .tv-menu { grid-template-columns: repeat(2, 1fr); }
    .tv-header { padding: 1rem 1.5rem; }
    .tv-welcome { padding: 1rem 1.5rem 0.5rem; }
    .tv-welcome h1 { font-size: 1.8rem; }
    .tv-menu { padding: 0.75rem 1.5rem; }
    .tv-qr-section { padding: 0.75rem 1.5rem 1.5rem; }
}

@media (max-width: 600px) {
    .tv-menu { grid-template-columns: 1fr; }
    .tv-meteo { gap: 0.75rem; }
    .tv-clock { font-size: 1.6rem; }
}
