/* Somewhere Nowhere - Main Stylesheet - Version 2.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Loading Test - this will make the page background blue for 3 seconds */
html {
    background: #4299e1 !important;
    animation: cssLoaded 3s ease forwards;
}

@keyframes cssLoaded {
    0% { background: #4299e1; }
    100% { background: #f8fafc; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6 !important;
    color: #2d3748 !important;
    background: #f8fafc !important;
    min-height: 100vh !important;
    font-weight: 400 !important;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: white !important;
    min-height: 100vh !important;
}

/* Navigation Header */
.nav-header {
    background: white;
    padding: 20px 40px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(74, 85, 104, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2345b7d1;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%2396ceb4;stop-opacity:0.3" /></linearGradient></defs><rect fill="url(%23gradient)" width="1000" height="300"/></svg>') center/cover;
    text-align: center;
    padding: 100px 40px 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
    color: #e2e8f0;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.85;
    line-height: 1.7;
    color: #cbd5e0;
}

/* Search Bar (inspired by reference) */
.search-section {
    background: #4299e1;
    padding: 30px 40px;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    color: #4a5568;
    background: white;
}

.search-input:first-child {
    border-radius: 8px 0 0 8px;
}

.search-input:nth-child(2) {
    border-left: 1px solid #e2e8f0;
}

.search-input:nth-child(3) {
    border-left: 1px solid #e2e8f0;
}

.search-btn {
    padding: 15px 30px;
    background: #2d3748;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-btn:hover {
    background: #1a202c;
}

/* Sections */
section {
    margin-bottom: 60px;
    padding: 40px;
}

h2 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.02em;
}

h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

h4 {
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: #f7fafc;
    text-align: center;
    padding: 80px 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #4299e1;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

/* Concept Highlight */
.concept-highlight {
    background: white;
    border: 2px solid #e2e8f0;
    border-left: 4px solid #4299e1;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.concept-highlight h3 {
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.concept-highlight p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #4299e1;
}

.service h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.service p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Event Examples */
.event-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.example {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.example:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.example h4 {
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: #2d3748;
    border-bottom: 2px solid #4299e1;
    padding-bottom: 8px;
}

.example p {
    color: #4a5568;
    line-height: 1.6;
}

.example strong {
    color: #2d3748;
    font-weight: 600;
}

/* Community List */
.community-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.community-list li {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 25px 20px;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #4a5568;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.community-list li:hover {
    border-color: #4299e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.contact-item {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.contact-item a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #3182ce;
    text-decoration: underline;
}

/* Footer Navigation */
.navigation {
    background: #f7fafc;
    text-align: center;
    padding: 60px 40px;
    border-top: 1px solid #e2e8f0;
}

.nav-link {
    display: inline-block;
    padding: 15px 35px;
    background: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .search-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input,
    .search-btn {
        border-radius: 8px !important;
        border: 1px solid #e2e8f0 !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-header {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 60px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    section {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-examples {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .community-list {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .navigation {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service {
        padding: 25px 20px;
    }
    
    .example {
        padding: 20px;
    }
}