/* North Shore Kauaʻi Custom Styles */

:root {
    --ocean-deep: #0a192f;
    --ocean-mid: #1e3a5f;
    --sea-green: #64ffda;
    --highlight: #00e1ff;
    --sand: #f4e8d0;
    --coral: #ff6b6b;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.mct-hero {
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.95),
        rgba(30, 58, 95, 0.9)
    );
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.mct-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mct-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* Buttons */
.mct-btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mct-btn--primary {
    background: var(--sea-green);
    color: var(--ocean-deep);
}

.mct-btn--primary:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.mct-btn--ghost {
    background: transparent;
    color: var(--sea-green);
    border: 2px solid var(--sea-green);
}

.mct-btn--ghost:hover {
    background: var(--sea-green);
    color: var(--ocean-deep);
}

.mct-btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Services Grid */
.mct-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mct-service {
    background: rgba(30, 58, 95, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.mct-service h3 {
    color: var(--highlight);
    margin-bottom: 1rem;
}

/* Checklist */
.mct-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mct-checklist {
    list-style: none;
    padding: 0;
}

.mct-checklist li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

/* Radio Section */
.mct-radio-section {
    background: linear-gradient(135deg, #1e3a5f, #2a4a7f);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

/* Contact Section */
.mct-contact-section {
    background: var(--sea-green);
    color: var(--ocean-deep);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.mct-contact-section h2 {
    color: var(--ocean-deep);
    margin-bottom: 2rem;
}

.mct-contact-section a {
    color: var(--ocean-deep);
    font-weight: bold;
}

/* Landing Pages */
.mct-landing {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mct-services-grid,
    .mct-checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .mct-hero h1 {
        font-size: 2rem;
    }
    
    .mct-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mct-hero,
.mct-service,
.mct-radio-section,
.mct-contact-section {
    animation: fadeIn 0.8s ease-out;
}

/* Ocean Wave Effect */
.ocean-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2364ffda" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}
