/* ===================================
   FamilyOrbit.io - Domain For Sale
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #6B46C1; /* Purple */
    --color-secondary: #3B82F6; /* Blue */
    --color-accent: #FBBF24; /* Gold */
    --color-dark: #1F2937;
    --color-gray: #6B7280;
    --color-light: #F9FAFB;
    --color-white: #FFFFFF;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 700px;
    height: 700px;
    animation-duration: 40s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
}

/* Main Content */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Domain Display */
.domain-display {
    margin-bottom: 48px;
}

.domain-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.domain-name {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.domain-tagline {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Value Section */
.value-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #E5E7EB;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.feature {
    padding: 24px;
    background: var(--color-light);
    border-radius: 16px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    margin-top: 48px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 32px;
}

/* Inquiry Form */
.inquiry-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: var(--transition);
    background-color: var(--color-white);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 16px;
    font-size: 0.95rem;
    min-height: 20px;
    font-weight: 500;
}

.form-message.success {
    color: #10B981;
}

.form-message.error {
    color: #EF4444;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 24px;
    }
    
    .domain-name {
        font-size: 2.2rem;
    }
    
    .domain-icon {
        font-size: 3rem;
    }
    
    .section-title,
    .cta-title {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
    }
    
    .content {
        padding: 32px 20px;
    }
    
    .domain-name {
        font-size: 1.8rem;
    }
    
    .section-description,
    .cta-subtitle {
        font-size: 1rem;
    }
}
