
body {
    margin: 0;
    font-family: 'Alegreya', serif;
    color: #333;
    background: linear-gradient(135deg, #f8ede3, #e6d2b5);
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
    color: #222;
    font-size: 2rem;
    text-align: center;
}

p {
    font-size: 1.1rem;
}


.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #8B5E3C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.btn:hover {
    background: #6f4a2e;
}

/* Hero box */
.hero-box {
    max-width: 1100px;
    margin: 40px auto;
    padding: 80px 40px;
    border-radius: 10px;
    background: linear-gradient(rgb(255 255 255 / 28%), rgb(255 255 255 / 10%)), /* zesvětlení */ url(img/uvod-obrazek.webp) center / cover no-repeat;
    color: #222;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Alegreya', serif;
    text-shadow: 2px 2px 8px rgb(38 5 5 / 85%);
    color: blanchedalmond;
}

.hero-text p {
    font-size: 31px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgb(0 0 0 / 70%);
    color: blanchedalmond;
}

.hero-text .btn {
    background: #8B5E3C;
    padding: 14px 30px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    display: inline-block;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero-text .btn:hover {
    background: #6f4a2e;
}


/* O mně */
.about {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-photo {
    width: 180px;        /* menší průměr */
    height: 180px;       /* aby to bylo vždy čtverec */
    object-fit: cover;   /* ořízne, aby nebyly deformace */
    border-radius: 50%;  /* kulatá fotka */
    flex-shrink: 0;
}

.about-text {
    flex: 1;
    min-width: 250px;
}
.about-text h2 {
    margin-top: 0;
}


.services-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
}

.services-list li {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin: 20px 0;
}

.services-list i {
    font-size: 2rem;
    color: #8B5E3C;
    width: 40px;       /* pevná šířka pro zarovnání */
    text-align: center;
    margin-right: 15px;
}

.services-list span {
    flex: 1;          /* text vždy zarovnaný vedle ikony */
}


/* Galerie */
.gallery-section {
    padding: 50px 20px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
}
.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* Kontakt */
.contact {
    padding: 50px 20px;
    background: #f2f2f2;
    text-align: center;
}

.contact a {
    color: #8B5E3C;
    font-weight: bold;
    text-decoration: none;
    margin-left: 8px;
}
.contact a:hover {
    text-decoration: underline;
}

.contact i {
    color: #8B5E3C;
    margin-right: 6px;
}


.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
}
button[type="submit"] {
    margin-top: 10px;
    cursor: pointer;
}

