/* Reverent Networks Stylesheet */
/* Color Palette:
   Primary Green: #C0D730
   Dark Blue 1: #002938
   Dark Blue 2: #003B4E
   Teal Dark: #005655
   Teal Light: #00A27D
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #002938;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #C0D730;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 59, 78, 0.9) 0%, rgba(0, 86, 85, 0.9) 100%),
                url('data:image/svg+xml,<svg width="1440" height="600" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(192,215,48,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 215, 48, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #C0D730;
    color: #002938;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #a8c02a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 215, 48, 0.3);
}

/* Page Header */
.page-header {
    background-color: #003B4E;
    color: white;
    padding: 100px 0 50px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 60px 0;
}

.about {
    background-color: white;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #005655;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #002938;
    text-align: center;
}

h3 {
    color: #003B4E;
    margin-bottom: 1rem;
}

/* Problem Section */
.problem {
    background-color: #f8f9fa;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-top-color: #C0D730;
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li:before {
    content: "▸";
    color: #00A27D;
    position: absolute;
    left: 0;
}

/* Products Section */
.products {
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(0, 162, 125, 0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00A27D;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 162, 125, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 162, 125, 0.15);
}

.product-subtitle {
    color: #005655;
    font-style: italic;
    margin-bottom: 1rem;
}

.product-description {
    margin-top: 1rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.product-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-card li:before {
    content: "•";
    color: #C0D730;
    position: absolute;
    left: 0;
}

/* Market Opportunity */
.opportunity {
    background-color: #f8f9fa;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.market-card {
    background-color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.market-card h3 {
    font-size: 1.5rem;
    color: #00A27D;
    margin-bottom: 1rem;
}

.market-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-info h2 {
    text-align: left;
    color: #00A27D;
    margin-bottom: 0.5rem;
}

.member-info h3 {
    color: #005655;
    margin-bottom: 1.5rem;
}

.experience {
    list-style: none;
    margin-bottom: 1.5rem;
}

.experience li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.experience li:before {
    content: "✓";
    color: #C0D730;
    position: absolute;
    left: 0;
}

.bio {
    color: #666;
    line-height: 1.8;
}

.vision-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #005655;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #00A27D;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.investment-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.investment-info ul {
    list-style: none;
    margin-top: 1rem;
}

.investment-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.investment-info li:before {
    content: "→";
    color: #C0D730;
    position: absolute;
    left: 0;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #003B4E;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A27D;
}

.submit-button {
    background-color: #00A27D;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #008c6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 162, 125, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #005655 0%, #00A27D 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #002938;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .contact-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
