/* Ocean Plastic Skate Deck - Main CSS */

/* CSS Variables - Ocean Plastic Theme */
:root {
    --primary-ocean: #006494;
    --secondary-teal: #0582ca;
    --accent-coral: #ff6b6b;
    --accent-sand: #ffe66d;
    --accent-seafoam: #4ecdc4;
    --light-ocean: #cce7ff;
    --light-teal: #b8e6ff;
    --light-coral: #ffb3b3;
    --light-sand: #fff9cc;
    --light-seafoam: #b8f2ef;
    --dark-ocean: #004466;
    --dark-teal: #044a66;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --section-padding: 80px;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--secondary-teal) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-sand);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--secondary-teal) 50%, var(--accent-seafoam) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../ZUH_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-top: 200px;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Section Padding */
.section-padding {
    padding: var(--section-padding) 0;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    color: var(--primary-ocean);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-ocean);
    margin-top: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

/* Feature Items */
.feature-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: var(--secondary-teal);
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid var(--accent-coral);
    transform: scale(1.05);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-ocean);
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Team Members */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-seafoam);
}

/* Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.review-card h5 {
    color: var(--primary-ocean);
    font-weight: 600;
}

/* Case Study Cards */
.case-study-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card h4 {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.case-study-card p {
    padding: 0 1rem 1rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-date {
    background: var(--accent-coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Job Cards */
.job-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-ocean);
    box-shadow: 0 0 0 0.2rem rgba(0, 100, 148, 0.25);
}

.contact-info {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-ocean);
    margin-right: 0.5rem;
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* FAQ Accordion */
.accordion-item {
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-ocean);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 100, 148, 0.25);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-ocean);
    color: var(--text-light);
}

/* Gallery */
#gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-ocean) 0%, var(--primary-ocean) 100%);
    color: var(--text-light);
}

.footer h5 {
    color: var(--text-light);
    font-weight: 600;
}

.footer a {
    color: var(--light-ocean);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-sand);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--secondary-teal) 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-ocean) 0%, var(--primary-ocean) 100%);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-ocean);
    color: var(--primary-ocean);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-ocean);
    color: var(--text-light);
}

/* Background Utilities */
.bg-light {
    background: var(--light-ocean);
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 1rem 0;
}

.breadcrumb-icon {
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--secondary-teal) 100%);
    color: var(--text-light);
}

/* Additional page styles */
.impact-item,
.process-item,
.benefit-item,
.partnership-item,
.goal-item,
.tech-item,
.research-item,
.testing-item,
.design-item,
.future-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.impact-item:hover,
.process-item:hover,
.benefit-item:hover,
.partnership-item:hover,
.goal-item:hover,
.tech-item:hover,
.research-item:hover,
.testing-item:hover,
.design-item:hover,
.future-item:hover {
    transform: translateY(-5px);
}

/* Utility Classes */
.text-ocean { color: var(--primary-ocean); }
.text-teal { color: var(--secondary-teal); }
.text-coral { color: var(--accent-coral); }
.text-sand { color: var(--accent-sand); }
.text-seafoam { color: var(--accent-seafoam); }

.bg-ocean { background-color: var(--primary-ocean); }
.bg-teal { background-color: var(--secondary-teal); }
.bg-coral { background-color: var(--accent-coral); }
.bg-sand { background-color: var(--accent-sand); }
.bg-seafoam { background-color: var(--accent-seafoam); }



/* Image sizing for consistency */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure proper image dimensions */
.hero-section img {
    max-width: 100%;
    height: auto;
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
