/* ========================================
   Circles Page Styles
   ======================================== */

/* Hero Section */
.circles-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(12, 79, 88, 0.6), rgba(12, 79, 88, 0.6)), 
                url('../assets/images/wildlife.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 155px;
}

.circles-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 79, 88, 0.3);
}

.circles-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
}

.circles-hero-title {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.circles-breadcrumb {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.circles-breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.circles-breadcrumb a:hover {
    color: var(--bright-cyan-glow);
}

.circles-breadcrumb .separator {
    color: var(--pure-white);
}

.circles-breadcrumb span:last-child {
    color: var(--bright-cyan-glow);
}

/* Circles Content Section */
.circles-content-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.circles-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.circles-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.circles-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-gray);
}

/* Circles Grid */
.circles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.circle-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.circle-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-card:hover .circle-image img {
    transform: scale(1.1);
}

.circle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 79, 88, 0.9), transparent);
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.circle-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--pure-white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.circle-content {
    padding: 2rem;
}

.circle-content p {
    color: var(--accent-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .circles-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 120px;
    }

    .circles-hero-title {
        font-size: 2.5rem;
    }

    .circles-breadcrumb {
        font-size: 0.95rem;
    }

    .circles-content-section {
        padding: 4rem 0;
    }

    .circles-intro h2 {
        font-size: 2rem;
    }

    .circles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .circle-image {
        height: 250px;
    }

    .circle-title {
        font-size: 1.5rem;
    }

    .circle-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .circles-hero-title {
        font-size: 2rem;
    }

    .circles-breadcrumb {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .circles-breadcrumb .separator {
        display: none;
    }
}
