@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap');

* { box-sizing: border-box; margin:0; padding:0; }

body {
    font-family: 'Open Sans', sans-serif;
    background: #fdf8f5;
    color: #333;
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, #e2725b 0%, #e2725b 60%, #d45d50 100%);
    color: white;
    text-align: center;
    padding: 3.5rem 1rem 3rem;
    box-shadow: 0 6px 25px rgba(226, 114, 91, 0.25);
}

h1 {
    font-size: 2.7rem;
    margin-bottom: 1.4rem;
    letter-spacing: 0.8px;
}

nav a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    display: inline-block;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
}

nav a.active {
    background: rgba(255,255,255,0.3);
}

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1rem;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.content {
    max-width: 800px;
    margin: 4rem auto 6rem;
    padding: 0 1.5rem;
}

.about-content { margin-top: 2rem; }

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #a6423e;
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 small {
    font-size: 1.15rem;
    display: block;
    margin-top: 0.8rem;
    font-weight: 400;
    color: #666;
}

.content p {
    margin-bottom: 1.8rem !important;
    font-size: 1.1rem;
}

.content p:last-child {
    margin-bottom: 0;
}

.about-content p {
    margin-bottom: 1.8rem !important;
    font-size: 1.1rem;
}

.cta {
    background: #a6423e;
    color: white;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    margin: 1rem;
    display: inline-block;
    font-weight: 600;
    transition: .3s;
}

.cta:hover { background: #8a3530; }

.author-photo {
    max-width: 340px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.16);
    object-fit: cover;
    transition: transform 0.4s, box-shadow 0.4s;
}

.author-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.22);
}

form {
    background: white;
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 540px;
    margin: 4rem auto 0;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.8rem 0;
    border: 1px solid #e0c9c3;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

button {
    background: #a6423e;
    color: white;
    padding: 1.1rem;
    width: 100%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: .3s;
}

button:hover { background: #8a3530; }

.gallery {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: all 0.4s;
}

.gallery-grid img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

footer {
    text-align: center;
    padding: 2.5rem;
    background: #3f302a;
    color: #ddd;
    font-size: 0.95rem;
}

/* Responsivní */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2.2rem; }
    nav a { padding: 0.6rem 1.4rem; font-size: 0.95rem; }
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }