/* === KOMPLETNÍ OČISTA A OPRAVA PRO IPAD === */

/* 1. Skrytí zbytků inPage */
#header, #footer, #sidebar { display: none !important; }
#content, #main-inner { width: 100% !important; margin: 0 !important; padding: 0 !important; background: none !important; }

/* 2. Oprava pozadí - trik pro iPad, aby se obrázek nezoomoval a neřezal */
body {
    margin: 0;
    background: #f5f5f7 !important; /* Základní Apple šedá */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Adresa k tvému obrázku */
    background: url('/obrazek/3/hlavni-stranka/') no-repeat center top !important;
    background-size: cover !important;
}

/* 3. Logo v hlavičce - nápis "Duše Golema" vpravo nahoře */
.logo, .logo-text, #logo a {
    position: fixed;
    top: 25px;
    right: 5% !important;
    z-index: 100;
    font-family: sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #e5a77f, #b86d3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem !important;
    text-shadow: 0 0 15px rgba(212, 140, 92, 0.4);
    text-decoration: none;
}

/* 4. Sekce Manifestu - odsunutá přesně pod obrázek */
.manifest-section { 
    margin-top: 100vh !important; 
    background-color: #f5f5f7 !important; 
    padding: 100px 10% !important; 
    color: #1d1d1f !important; 
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.manifest-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 60px; 
    align-items: start; 
}

.manifest-text h3 { 
    font-size: 2.5rem !important; 
    color: #b86d3d !important; 
    font-weight: 300; 
    margin-bottom: 20px; 
}

.features-list { list-style: none; padding: 0; }
.features-list li { margin-bottom: 15px; font-size: 1.1rem; }
.features-list li::before { content: "■"; color: #d48c5c; margin-right: 15px; }

.manifest-quote blockquote { 
    font-style: italic; 
    font-size: 1.5rem; 
    border-left: 3px solid #d48c5c; 
    padding-left: 20px; 
    color: #6e6e73; 
}

/* Plynulý posun po kliknutí */
html { scroll-behavior: smooth; }
