﻿/* gardens/gardens.css */

.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-weight: 300;
    font-size: 3rem;
    color: var(--accent-color-darker, #4a7c4a); /* Uses color from main style.css */
}

.panel-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.action-panel {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #343a40;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensures content inside respects the border-radius */
}

.action-panel:hover {
    transform: translateY(-8px); /* Subtle lift animation */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* Deeper shadow on hover */
    color: #343a40;
}

.action-panel h2 {
    color: var(--accent-color, #609966);
    margin-top: 0;
    margin-bottom: 1rem;
}

.panel-image-placeholder {
    height: 200px;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    background-color: #e9ecef;
    background-size: cover;
    background-position: center;
}

/* Optional: Add placeholder background images */
.find-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?q=80&w=1470&auto=format&fit=crop');
}
.start-bg {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1593113598332-cd288d649433?q=80&w=1470&auto=format&fit=crop');
}

.text-content {
    max-width: 800px; /* Constrain width for readability */
    margin: 0 auto; /* Center the text block */
    line-height: 1.7;
    color: #555;
}

.text-content h3 {
    font-weight: 500;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .panel-container {
        flex-direction: column;
    }
}