/* Lake Lewisville Page Specific Styles */

/* Social Proof & Trust Builders */
#social-proof .trust-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

#social-proof .trust-element .stars {
    font-size: 2rem;
    color: #FFD700; /* Gold */
    margin-bottom: 0.5rem;
}

#social-proof .trust-element p {
    margin: 0;
    font-size: 1.1rem;
}

#social-proof .testimonial blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: #555;
}

#social-proof .testimonial cite {
    font-weight: bold;
    color: #333;
}

/* Experience Section */
#experience .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#experience .package-item {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#experience .package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

#experience .package-item .package-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

#experience .package-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Fleet Preview Section */
#fleet-preview .boat-card {
    text-align: left;
}

#fleet-preview .boat-card-content p {
    margin-bottom: 0.75rem;
}

#fleet-preview .boat-card-content .btn {
    width: 100%;
    text-align: center;
}

/* How It Works Section */
#how-it-works .booking-steps {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#how-it-works .step {
    flex: 1;
    max-width: 350px;
}

#how-it-works .step .step-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

#how-it-works .step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Location & Logistics Section */
#location .location-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

#location .location-map {
    flex: 2;
    min-width: 300px;
}

#location .location-details {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

#location .location-details h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Final CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =====================================================================
   "Discover the Jewel of North Texas" + Live Weather Widget
   (mirrors the home page section — styles duplicated here because this
    page does not load home.css)
   ===================================================================== */

#about-lake {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(900px 480px at 0% 0%, rgba(0,255,255,.06), transparent 60%),
        radial-gradient(700px 480px at 100% 100%, rgba(255,0,255,.06), transparent 60%),
        var(--bg-dark);
}

.about-lake-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* --- Text column ---------------------------------------------------- */
.about-lake-text .lede {
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--text-light);
}
.about-lake-text .lede strong { color: var(--cta-cyan); font-weight: 700; }
.about-lake-text p + p { margin-top: 1rem; color: rgba(245,245,245,.78); }

.lake-stats {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.lake-stats li {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all .3s ease;
}
.lake-stats li:hover {
    border-color: var(--cta-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0,255,255,.2), 0 8px 24px rgba(0,255,255,.10);
}
.lake-stats .num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cta-yellow);
    text-shadow: 0 0 18px rgba(255,255,0,.25);
    line-height: 1;
}
.lake-stats .lbl {
    display: block;
    margin-top: 6px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(245,245,245,.6);
}

.lake-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.lake-cta-row .btn-outline {
    background: transparent;
    color: var(--cta-yellow);
    border-color: var(--cta-yellow);
}
.lake-cta-row .btn-outline:hover {
    background: var(--cta-yellow);
    color: var(--text-dark);
}

/* --- Weather widget ------------------------------------------------ */
.weather-widget {
    position: relative;
    background:
        linear-gradient(160deg, rgba(0,255,255,.10), rgba(255,0,255,.06) 60%, transparent 100%),
        rgba(20,20,28,.85);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 28px 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.weather-widget::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(420px 220px at 100% 0%, rgba(0,255,255,.18), transparent 60%);
    pointer-events: none;
}
.weather-widget > * { position: relative; z-index: 1; }

.weather-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-bottom: 18px;
}
.weather-head h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--cta-cyan);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.weather-loc {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    color: rgba(245,245,245,.7);
    display: inline-flex; align-items: center; gap: 6px;
}
.weather-loc i { color: var(--cta-magenta); }

.weather-now {
    display: flex; align-items: center; gap: 18px;
    padding: 6px 0 14px;
    border-bottom: 1px solid var(--border-color);
}
.weather-now .weather-icon {
    width: 120px; height: 120px;
    margin: -10px 0;
    filter: drop-shadow(0 6px 18px rgba(0,255,255,.25));
}
.weather-now.placeholder { padding: 22px 0; }
.weather-icon-fallback {
    font-size: 4.4rem;
    color: var(--cta-cyan);
    text-shadow: 0 0 22px rgba(0,255,255,.4);
}
.weather-temp { display: flex; flex-direction: column; gap: 4px; }
.weather-temp .deg {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--cta-yellow);
    text-shadow: 0 0 22px rgba(255,255,0,.35);
}
.weather-temp .desc {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
}
.weather-temp small {
    font-family: var(--font-body);
    font-size: .85rem;
    color: rgba(245,245,245,.65);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
    max-width: 280px;
}

.weather-meta {
    list-style: none;
    margin: 16px 0 14px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.weather-meta li {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: .88rem;
    color: var(--text-light);
}
.weather-meta li i { color: var(--cta-cyan); width: 16px; text-align: center; }
.weather-meta li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(245,245,245,.6);
    font-weight: 400;
    margin-bottom: 2px;
}

.weather-foot {
    margin: 0 0 14px;
    font-size: .78rem;
    color: rgba(245,245,245,.5);
}
.weather-foot a { color: rgba(245,245,245,.65); border-bottom: 1px dotted rgba(245,245,245,.35); }
.weather-foot a:hover { color: var(--cta-cyan); border-bottom-color: var(--cta-cyan); }

.weather-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 18px;
    background: var(--cta-magenta);
    color: var(--text-dark);
    border: 2px solid var(--cta-magenta);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .9rem;
    transition: all .3s ease;
}
.weather-cta:hover {
    background: transparent;
    color: var(--cta-magenta);
    box-shadow: 0 0 0 1px rgba(255,0,255,.4), 0 0 22px rgba(255,0,255,.2);
}

@media (max-width: 992px) {
    .about-lake-content { grid-template-columns: 1fr; gap: 36px; }
    .lake-stats { grid-template-columns: repeat(2, 1fr); }
    .weather-meta { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .weather-now { flex-direction: column; text-align: center; align-items: center; }
    .weather-temp { align-items: center; }
    .weather-meta { grid-template-columns: 1fr; }
    .weather-temp .deg { font-size: 3rem; }
}
