/* General Styles */
body, h1, h2, h3, h4, h5, h6, .gallery-main-title, .gallery-subtitle, .lead, .card-title, .card-text, .btn, .navbar, .form-control, .modal, .section, .image-text-block, .folder-name, a, p, ul, ol, li {
    font-family: 'Inter', sans-serif !important;
}

body {
    color: #333;
    padding-top: 76px;
    font-size: 18px;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section {
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
}

/* Card Styles */
.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Form Styles */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0d6efd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .section {
        padding: 50px 0;
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }
}

/* Animation Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    font-size: 1.5rem;
}

/* Nový styl pro karty photo-card na stránce Sad */
.photo-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13), 0 1.5px 6px rgba(0,0,0,0.07);
    position: relative;
    background: #222;
    transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.photo-card:hover {
    transform: scale(1.035) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
}
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.22s;
}
.photo-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.38) 100%);
    pointer-events: none;
    z-index: 1;
}
.photo-card-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 1.2rem 1.2rem 1.1rem 1.2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.55) 100%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
.photo-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.photo-card-content p {
    font-size: 1rem;
    color: #f3f3f3;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}
@media (max-width: 768px) {
    .photo-card {
        min-height: 180px;
        border-radius: 10px;
    }
    .photo-card-content {
        padding: 0.7rem 0.7rem 0.6rem 0.7rem;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .photo-card-content h4 {
        font-size: 1rem;
    }
    .photo-card-content p {
        font-size: 0.92rem;
    }
}
