@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0d3b36;
    /* Tmavá zelená */
    --secondary-color: #8a6d46;
    /* Zlatá/Hnedá */
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background-color: #0d3b36;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 10;
    /* Ensure navbar is on top */
}

.navbar .logo {
    margin-right: 4em;
}

.navbar .nav-links {
    display: flex;
    gap: 1.5em;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a6d46 !important;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #8a6d46 !important;
    transition: color 0.3s ease;
}

.burger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 18px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: background-color 0.5s ease;
}

.appointment-button {
    margin-left: 16px;
}

/* Hero Sekcia */
.hero-styles {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-styles h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-styles p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sekcia Služieb (Grid) */
.services-grid-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.highlight {
    border-color: var(--secondary-color);
    background-color: #fffdf5;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Sekcia O Stylistke */
.about-stylist-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.stylist-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.stylist-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
}

.stylist-text {
    flex: 1;
}

.stylist-text .subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.stylist-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stylist-text .role {
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.9;
}

.stylist-text .bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stylist-text .btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.stylist-text .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Sekcia Inšpirácie */
.inspiration-section {
    padding: 80px 0;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.inspire-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inspire-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspire-item:hover img {
    transform: scale(1.05);
}

.inspire-content {
    padding: 25px;
    text-align: center;
}

.inspire-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    padding: 50px 0 20px;
    text-align: center;
}

.box-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.share a {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 10px;
    transition: color 0.3s;
}

.share a:hover {
    color: var(--secondary-color);
}

.link {
    display: block;
    color: #555;
    text-decoration: none;
    margin: 5px 0;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Mobilné zobrazenie */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        /* Tu by sa malo riešiť JS pre burger menu */
    }

    .navbar .logo {
        margin-right: auto;
    }

    .burger {
        display: block;
    }

    .hero-styles h1 {
        font-size: 2rem;
    }

    .stylist-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .stylist-image img {
        width: 200px;
        height: 200px;
    }
}