/*
  About Lake Lewisville Page Styles
  Mirrors the dark theme aesthetic of home.css
*/

/* General Section Styling */
.about-lake-page .content-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.about-lake-page .content-section.alt-bg {
    background-color: #1a1a1a; /* Slightly lighter than main dark bg */
}

.about-lake-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-lake-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--cta-magenta);
}

.about-lake-page .section-header .subtitle {
    font-size: 1.25rem;
    color: var(--cta-cyan);
    font-family: var(--font-alt-heading-2);
}

/* Intro Section */
.intro-section .intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-section .section-header {
    text-align: left;
}

.social-proof {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.social-proof .proof-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.social-proof .stars {
    color: var(--cta-yellow);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.social-proof .testimonial blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.8;
    border-left: 3px solid var(--cta-cyan);
    padding-left: 1rem;
}

.social-proof .testimonial cite {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    opacity: 0.6;
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.experience-card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0,0,0,0.2);
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--cta-cyan);
}

.experience-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.experience-card:hover img {
    opacity: 1;
}

.experience-card .card-content {
    padding: 1.5rem;
}

.experience-card h3 {
    color: var(--cta-yellow);
    margin-top: 0;
    font-size: 1.5rem;
}

/* How It Works Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    color: var(--cta-cyan);
    margin-bottom: 20px;
}

.step h3 {
    color: var(--cta-yellow);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Featured Fleet Section */
.boat-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Re-using boat-card from home.css would be ideal, but for now we style v2 */
.boat-card-v2 {
    background-color: #1f1f1f;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.boat-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--cta-magenta);
}

.boat-card-v2 .card-image-link img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.boat-card-v2 .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.boat-card-v2 .boat-name a {
    text-decoration: none;
    font-size: 1.6rem;
}

.boat-card-v2 .boat-meta {
    opacity: 0.7;
    margin: 0.5rem 0;
}

.boat-card-v2 .boat-desc {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Location Section */
.location-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-map iframe {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 450px;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-section .intro-content, .location-content-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .boat-grid-three {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .boat-grid-three {
        grid-template-columns: 1fr;
    }
}

