/* === Original CSS from user === */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fdfcf7; /* Soft warm cream */
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("../img/uvodni_obrazek.jpg") center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark gradient overlay for readability */
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
    );
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content span {
    color: #f39c12; /* cheerful orange highlight */
}

.hero-content p {
    font-size: 1.4rem;
    color: #f1f1f1;
}

.hero {
    margin-bottom: 50px; /* Adjust the value to taste */
}

/* Section Styling */
section {
    padding: 70px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 20px;
    color: #e67e22; /* warm orange */
    font-weight: bold;
    font-size: 2rem;
}

h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #e67e22;
}

p {
    color: #555;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn.primary {
    background: #3498db; /* warm orange */
    color: #fff;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #3498db; /* friendly blue */
    color: #3498db;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #fdf2e9; /* light warm beige */
    color: #444;
    font-size: 0.9rem;
    border-top: 2px solid #f5cba7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Social buttons (email, Instagram, Facebook) */
footer .footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;               /* space between icon and text */
    margin: 0 6px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #444;
    background-color: #fff;
    border: 1px solid #ccc;
    transition: all 0.2s ease;
}

footer .footer-social-btn:hover {
    background-color: #efdac8;
    border-color: #e67e22;
    color: #e67e22;
}

footer .footer-social-btn .social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Partner mini buttons */
footer .footer-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 3px 6px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.85rem;
    text-decoration: none;
    color: #444;
    background-color: #fff;
    transition: all 0.2s ease;
    vertical-align: middle;
}

footer .footer-mini-btn:hover {
    background-color: #f5e1d3;
    border-color: #e67e22;
    color: #e67e22;
}

/* Legal PDF links (plain) */
footer .footer-legal a {
    color: #444;
    text-decoration: none;
    margin: 0 6px;
}

footer .footer-legal a:hover {
    text-decoration: underline;
    color: #e67e22;
}

/* Copyright */
footer .footer-copyright {
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* E-shop product grid */
.products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
}

.product {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    align-items: center;
}

.product img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.product h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #e67e22;
}

.product p.description {
    font-size: 1rem;
    color: #555;
}

.product .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.quantity-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-controls .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    font-size: 1.2rem;
}

.checkout-form {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-form input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

#checkoutButton {
    margin-top: 1rem;
}

.payment-info {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    border: 2px solid #3498db;
    border-radius: 12px;
    background: #fdfcf7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-info img {
    width: 200px;
    height: 200px;
}
