/* Main Page Styles - Inside The Sphere */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px; /* Account for fixed navigation */
}

html {
    scroll-behavior: smooth;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Welcome Section */
.create-section {
    background: #f8f9fa;
}

.create-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.create-text {
    text-align: left;
}

.create-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 30px;
    font-style: italic;
}

.create-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #444;
}

.closing-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}

.blank-space {
    /* Empty space for future content */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.service-card:nth-child(2) .service-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,73,94,0.95), rgba(44,62,80,0.95));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.coming-soon-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    text-align: center;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Buttons */
.submit-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.action-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.action-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .create-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .create-text {
        text-align: center;
    }

    .create-text h3 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .intro-paragraph {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}
