/* File: /Users/liborballaty/LocalProjects/GitHubProjectsDocuments/ballaty-rentals/assets/css/guide.css
 * Description: Styles for Velenice Cottage Travel Guide pages
 * Author: Libor Ballaty <libor@arionetworks.com>
 * Created: 2026-03-23
 */

/* NAVBAR OVERRIDE - Guide pages have light backgrounds, not dark heroes */
#navbar {
    background: var(--linen);
    box-shadow: 0 2px 20px rgba(45,74,45,0.1);
}

#navbar .nav-logo {
    color: var(--forest-dk);
}

#navbar .nav-links a {
    color: var(--forest);
}

#navbar .nav-links a:hover {
    color: var(--amber);
}

#navbar .hamburger span {
    background: var(--ink);
}

.guide-hero {
    background: var(--linen);
    color: var(--text);
    text-align: center;
    padding: var(--spacing-2xl, 3rem) 0;
}

.guide-hero h2 {
    color: var(--forest-dk);
    font-family: 'Lora', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-hero p {
    font-size: 1.25rem;
    opacity: 0.75;
    margin: 0;
    color: var(--muted);
}

.breadcrumbs {
    background: var(--linen);
    padding: 1rem 3rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--amber);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

.guide-intro {
    padding: 4rem 0;
    background-color: var(--linen);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h3 {
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--forest-dk);
    margin-bottom: 1.5rem;
}

.locations-grid-section,
.guide-topics {
    padding: 4rem 0;
    background-color: var(--warm);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(45,74,45,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border-bottom: 3px solid transparent;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 32px rgba(45,74,45,0.13);
    border-bottom-color: var(--moss);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--straw);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.location-card:hover .location-image img {
    transform: scale(1.06);
}

.location-content {
    padding: 1.5rem;
}

.location-content h4 {
    font-family: 'Lora', serif;
    color: var(--forest-dk);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.location-content p {
    color: var(--muted);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.75;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.3rem;
}

.topic-card {
    background-color: white;
    padding: 1.8rem 1.3rem;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 3px 16px rgba(45,74,45,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border-bottom: 3px solid transparent;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 32px rgba(45,74,45,0.13);
    border-bottom-color: var(--moss);
}

.topic-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.topic-card h4 {
    font-family: 'Lora', serif;
    color: var(--forest-dk);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.topic-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.7;
}

/* Location Detail Page */
.location-detail {
    padding: 4rem 3rem;
    background: var(--linen);
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-header h2 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    color: var(--forest-dk);
    margin-bottom: 0.5rem;
}

.location-tagline {
    font-size: 1.25rem;
    color: var(--muted);
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.guide-section h3 {
    font-family: 'Lora', serif;
    color: var(--forest-dk);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.guide-section p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.guide-section li {
    color: var(--text);
    margin: 0.5rem 0;
    line-height: 1.7;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 3px 16px rgba(45,74,45,0.06);
    border-left: 3px solid var(--amber);
}

.highlight-card h4 {
    font-family: 'Lora', serif;
    color: var(--forest-dk);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

.practical-info {
    background-color: white;
    padding: 2rem;
    border-radius: 2px;
    margin: 2rem 0;
    box-shadow: 0 3px 16px rgba(45,74,45,0.06);
}

.practical-info h3 {
    font-family: 'Lora', serif;
    color: var(--forest-dk);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--straw);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text);
}

.info-value {
    color: var(--muted);
    text-align: right;
}

.map-link-box {
    background: var(--forest-dk);
    color: white;
    padding: 2rem;
    border-radius: 2px;
    text-align: center;
    margin: 3rem 0;
}

.map-link-box h3 {
    font-family: 'Lora', serif;
    color: var(--straw);
    margin-bottom: 1rem;
}

.map-link-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .guide-hero h2 {
        font-size: 2rem;
    }

    .location-header h2 {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .location-detail {
        padding: 3rem 1.2rem;
    }

    .breadcrumbs {
        padding: 1rem 1.2rem;
    }
}
