/* Import fontů */ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&family=Montserrat:wght@700&display=swap'); /* Globální nastavení */ body { font-family: 'Poppins', sans-serif; background-color: #FAF3EC; /* Jemná béžová */ color: #333; /* Tmavě šedá pro čitelnost */ line-height: 1.6; margin: 0; padding: 0; } /* Nadpisy */ h1, h2, h3 { font-family: 'Playfair Display', serif; color: #2E2E2E; /* Tmavší šedá */ } h1 { font-size: 3rem; font-weight: 700; text-align: center; margin-bottom: 20px; } h2 { font-size: 2rem; font-weight: 600; margin-bottom: 15px; } /* Odstavce a běžný text */ p { font-size: 1.1rem; font-weight: 400; margin-bottom: 15px; } /* Tlačítko předobjednávky */ .button { display: inline-block; background-color: #D9A5B3; /* Pudrová růžová */ color: white; font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; padding: 15px 30px; border-radius: 8px; text-decoration: none; text-align: center; transition: all 0.3s ease; } .button:hover { background-color: #B98597; /* Tmavší růžová při najetí */ transform: scale(1.05); } /* Sekce výhod předobjednávky */ .benefits { background-color: white; padding: 40px; border-radius: 12px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); margin: 40px auto; max-width: 800px; text-align: center; } .benefits ul { list-style: none; padding: 0; } .benefits ul li { font-size: 1.2rem; font-weight: 600; margin: 10px 0; } /* Footer */ footer { text-align: center; font-size: 0.9rem; color: #666; margin-top: 40px; padding: 20px; }