/* Paddle White Waters Sports - Outdoor/Water Sports Aesthetic */
:root {
    --water-deep: #0a3d62;
    --water-mid: #1e5f74;
    --water-light: #38ada9;
    --foam: #78e08f;
    --sand: #f8b500;
    --white: #ffffff;
    --dark: #0d1b2a;
    --text: #1a1a2e;
    --text-muted: #4a5568;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 61, 98, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--foam);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--water-deep) 0%, var(--water-mid) 50%, var(--water-light) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--foam);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--foam);
    color: var(--water-deep);
    border: 2px solid var(--foam);
}

.btn-primary:hover {
    background: transparent;
    color: var(--foam);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    color: var(--water-deep);
    margin-bottom: 2rem;
    text-align: center;
}

/* About */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.mission-box {
    background: linear-gradient(135deg, var(--water-deep) 0%, var(--water-mid) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.mission-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f0f9ff;
    border-left: 4px solid var(--water-light);
    border-radius: 4px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--water-light);
    font-weight: bold;
}

.feature-card h4 {
    font-size: 1rem;
    color: var(--water-deep);
}

/* Values */
.values {
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(10, 61, 98, 0.08);
    border-top: 4px solid var(--water-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(10, 61, 98, 0.12);
}

.value-card h4 {
    color: var(--water-deep);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products */
.products {
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-cat {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.product-cat h3 {
    color: var(--water-deep);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--water-light);
}

.product-cat ul {
    list-style: none;
}

.product-cat li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
}

.product-cat li:last-child {
    border-bottom: none;
}

/* Partnership */
.partnership {
    background: linear-gradient(135deg, var(--water-deep) 0%, var(--water-mid) 100%);
    color: var(--white);
}

.partnership h2 {
    color: var(--white);
}

.partnership-sub {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partnership-content p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-card h4 {
    margin-bottom: 0.5rem;
    color: var(--foam);
}

.partnership-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
    text-align: left;
}

.commitment-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.commitment-box h4 {
    margin-bottom: 0.75rem;
}

/* Contact */
.contact {
    background: #f0f9ff;
}

.contact-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--water-deep);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 61, 98, 0.08);
}

.contact-card h4 {
    color: var(--water-deep);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-card a {
    color: var(--water-mid);
    text-decoration: none;
    display: block;
    margin: 0.25rem 0;
}

.contact-card a:hover {
    color: var(--water-light);
}

.contact-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    text-align: center;
}

.footer p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--water-deep);
        padding: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
