/* Ocean Plastic Skate Deck - Main CSS */

/* CSS Variables - Ocean Plastic Theme */
:root {
    --primary-ocean: #035e85;
    --secondary-teal: #1975d8;
    --accent-coral: #eb7a76;
    --accent-sand: #e9c366;
    --accent-seafoam: #35b4ac;
    --light-ocean: #d4e1f6;
    --light-teal: #b9dcff;
    --light-coral: #ffcac3;
    --light-sand: #fff8cf;
    --light-seafoam: #caf2f7;
    --dark-ocean: #03475c;
    --dark-teal: #056071;
    --text-dark: #37445a;
    --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.53rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.62rem; }
h4 { font-size: 1.30rem; }

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 6px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.54rem;
    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('../INF_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.57rem;
    padding-top: 279px;
}

.hero-section p {
    font-size: 1.23rem;
    margin-bottom: 1.73rem;
}

/* Section Padding */
.section-padding {
    padding: var(--section-padding) 0;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}



.feature-card i {
    color: var(--primary-ocean);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}



.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-card .price {
    font-size: 1.65rem;
    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: 17px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}



.feature-item i {
    color: var(--secondary-teal);
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 17px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    text-align: center;
}



.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);
    height: 100%;
}



.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card h4 {
    padding: 1rem;
    margin-bottom: 0.62rem;
}

.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.63rem;
    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%;
}



/* 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%;
}



.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 #e5ecf0;
    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(7, 108, 134, 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);
    height: 100%;
}



.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, 88, 140, 0.25);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-ocean);
    color: var(--text-light);
}

/* Gallery */
#gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 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;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-ocean) 0%, var(--primary-ocean) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-ocean);
    color: var(--primary-ocean);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.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);
    height: 100%;
}



/* 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 - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
