/*
Theme Name: Sunshine Parasail
Theme URI: https://www.sunshineparasail.com
Author: RideSnapGo
Author URI: https://ridesnapgo.com
Description: Custom theme for Sunshine Parasail demo site - Gulf Coast parasailing experience with integrated ride video sales.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: sunshine-parasail
*/

/* ========================================
   SUNSHINE PARASAIL - Custom Theme
   Design for RideSnapGo Demo Site
   ======================================== */

:root {
    --ocean-deep: #0B3D6E;
    --ocean-mid: #1565A0;
    --sky-blue: #4ECDC4;
    --coral: #FF6B35;
    --coral-hover: #E85A25;
    --sand: #F8F6F2;
    --sand-dark: #EDE9E1;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #4A5568;
    --text-light: #718096;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--ocean-deep);
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.nav.scrolled .nav-logo-icon {
    filter: none;
}

.nav-logo span {
    color: var(--coral);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav.scrolled .nav-links a:hover {
    color: var(--ocean-deep);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--coral-hover) !important;
    transform: translateY(-1px);
}

/* Cart icon */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-left: 12px;
    transition: color 0.3s, transform 0.2s;
}

.nav-cart:hover {
    transform: translateY(-1px);
}

.nav.scrolled .nav-cart {
    color: var(--text-mid);
}

.nav.scrolled .nav-cart:hover {
    color: var(--ocean-deep);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: background 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--ocean-deep);
}

/* ---- HERO SECTION ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0B3D6E 0%, #1565A0 40%, #1a8fba 70%, #4ECDC4 100%);
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(11, 61, 110, 0.5) 0%, transparent 60%);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: clamp(18px, 2.5vw, 22px);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--coral-hover);
    transform: translateY(-1px);
}

/* ---- SECTION COMMON ---- */
.section-label {
    display: inline-block;
    color: var(--coral);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--ocean-deep);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 60px;
}

/* ---- FEATURES / WHAT WE OFFER ---- */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #E8EDF2;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-icon.blue {
    background: rgba(11, 61, 110, 0.08);
    color: var(--ocean-deep);
}

.feature-icon.coral {
    background: rgba(255, 107, 53, 0.08);
    color: var(--coral);
}

.feature-icon.teal {
    background: rgba(78, 205, 196, 0.08);
    color: var(--sky-blue);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
    padding: 100px 0;
    background: var(--sand);
}

.how-it-works .section-title,
.how-it-works .section-label,
.how-it-works .section-subtitle {
    text-align: center;
}

.how-it-works .section-label {
    display: block;
}

.how-it-works .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--sky-blue), var(--coral));
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    box-shadow: 0 4px 15px rgba(11, 61, 110, 0.3);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ---- RIDE VIDEOS PREVIEW ---- */
.videos-preview {
    padding: 100px 0;
    background: var(--white);
}

.videos-preview .section-label,
.videos-preview .section-title,
.videos-preview .section-subtitle {
    text-align: center;
}

.videos-preview .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ocean-deep), var(--sky-blue));
    overflow: hidden;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s;
}

.video-card:hover .video-thumb::after {
    background: rgba(0,0,0,0.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--coral);
    margin-left: 4px;
}

.video-info {
    padding: 20px 24px;
}

.video-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.video-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.video-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--ocean-deep);
}

.videos-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
    padding: 100px 0;
    background: var(--ocean-deep);
    color: var(--white);
}

.testimonials .section-label {
    color: var(--sky-blue);
    text-align: center;
    display: block;
}

.testimonials .section-title {
    color: var(--white);
    text-align: center;
}

.testimonials .section-subtitle {
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-location {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 100px 0;
    background: var(--sand);
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 16px;
}

.cta-section .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E8EDF2;
}

.cta-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 4px;
}

.cta-card p {
    color: var(--text-mid);
    font-size: 14px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    font-size: 22px;
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--sky-blue);
}

/* ---- POWERED BY BADGE ---- */
.powered-by {
    text-align: center;
    padding: 12px;
    background: #151525;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.powered-by a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 968px) {
    .features-grid,
    .testimonial-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-mid) !important;
        font-size: 16px;
        padding: 8px 0;
    }

    .nav-links a:hover {
        color: var(--ocean-deep) !important;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .testimonial-grid,
    .video-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
