/*
Theme Name: Marmo Atelier
Description: Téma pro umělecký a řemeslný atelier Marmo
Version: 1.0
Author: Marmo Atelier
*/

/* Základní styly */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* Hero sekce */
.hero-section {
    position: relative;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section-hp {
    height: 80vh;
}

.hero-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.025em;
}

/* Umělci sekce */
.artists-section {
    padding: 5rem 1.5rem;
    background-color: #f9fafb;
}

.hamburger-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-icon {
    width: 2rem;
    height: 2rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
}

section .container {
    max-width: 80rem;
    margin: 0 auto;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.artist-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.artist-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.artist-logo {
    width: 6rem;
    height: 6rem;
    background-color: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.artist-specialty {
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.artist-contact {
    text-align: center;
    margin-bottom: 1.5rem;
}

.artist-contact p {
    color: #374151;
    margin: 0.25rem 0;
}

.artist-button {
    display: inline-block;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.artist-button:hover {
    background-color: #374151;
    color: white;
}

.artist-button:visited {
    color: white;
}

.artist-actions {
    text-align: center;
}

/* Navigace */
.nav-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem;
}

.nav-hamburger button {
    color: white;
    transition: color 0.3s ease;
}

.nav-hamburger button:hover {
    color: #d1d5db;
}

/* Patka */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer .copyright {
    color: #9ca3af;
    margin-top: 1rem;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-address {
    margin-bottom: 1rem;
}
.footer-address p {
    margin: 0;
}

a {
    color: #1f2937;
    text-decoration: underline;
}
a:hover {
    color: #374151;
    text-decoration: none;
}
a:visited {
    color: #1f2937;
}

/* Responzivita */
@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
} 