/* =============================================
   Zeydan Palace TV Portal — Ana Stil Dosyası
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Arka plan */
body {
    background-color: #080808;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Derin gradyan katmanı */
.bg-layer {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30,30,60,0.5) 0%, transparent 70%),
        radial-gradient(circle at center, #141414 0%, #030303 100%);
    z-index: 0;
}

/* Kenarlara kararan vignette */
.bg-vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 55%, rgba(0,0,0,0.75) 100%);
    z-index: 0;
    pointer-events: none;
}

header, main, footer { position: relative; z-index: 1; }

/* =============================================
   HEADER
   ============================================= */
.header {
    padding: 44px 80px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(212,175,55,0.12);
}

/* Logo satırı */
.logo-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.logo-ornament {
    color: #d4af37;
    font-size: 1.4rem;
    opacity: 0.7;
}

.welcome-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(212,175,55,0.25);
}

.welcome-text p {
    font-size: 1.25rem;
    color: #888888;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding-left: 4px;
}

/* Saat widget */
.time-widget {
    text-align: right;
}

.time-widget #time {
    font-size: 4.2rem;
    font-weight: 200;
    letter-spacing: 4px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 60%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-widget #date {
    font-size: 1.1rem;
    color: #777777;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.weather-info {
    font-size: 1.1rem;
    color: #999999;
    margin-top: 4px;
}

/* =============================================
   UYGULAMA MENÜSÜ
   ============================================= */
.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0 80px;
    gap: 36px;
}

.app-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    width: 210px;
    height: 210px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Parlama efekti üst kenarda */
.app-button::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: opacity 0.25s;
}

.icon-wrap {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    transition: transform 0.25s ease;
}

.app-button img {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.6));
    transition: filter 0.25s;
}

.app-button span {
    color: #cccccc;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: color 0.25s;
}

/* FOCUS / HOVER — kumanda veya fare üstüne gelince */
.app-button:focus,
.app-button:hover {
    transform: scale(1.09) translateY(-4px);
    background: linear-gradient(145deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
    border-color: rgba(212,175,55,0.7);
    box-shadow:
        0 0 0 1px rgba(212,175,55,0.3),
        0 12px 40px rgba(212,175,55,0.2),
        0 4px 16px rgba(0,0,0,0.6);
}

.app-button:focus .icon-wrap,
.app-button:hover .icon-wrap {
    transform: scale(1.12);
    background: rgba(212,175,55,0.12);
}

.app-button:focus img,
.app-button:hover img {
    filter: drop-shadow(0 4px 12px rgba(212,175,55,0.4));
}

.app-button:focus span,
.app-button:hover span {
    color: #f0d060;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 22px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    gap: 20px;
}

.hotel-info {
    color: #555555;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.hotel-info strong {
    color: #888888;
}

/* YENİLE BUTONU */
.refresh-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: #888888;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    padding: 10px 24px;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
}

.refresh-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.5s ease;
}

.refresh-button:hover,
.refresh-button:focus {
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.6);
    color: #d4af37;
    box-shadow: 0 0 16px rgba(212,175,55,0.15);
}

.refresh-button:hover .refresh-icon,
.refresh-button:focus .refresh-icon {
    transform: rotate(360deg);
}

/* GİZLİ ADMİN BUTONU */
.admin-button {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 1.4rem;
    padding: 8px;
    border-radius: 50%;
    outline: none;
    transition: color 0.3s ease;
    line-height: 1;
}

.admin-button:focus {
    color: #d4af37;
}
