/*
Theme Name: RedWine AI Premium Domain
Theme URI: https://redwine.ai
Author: Your Name
Author URI: https://redwine.ai
Description: A clean and modern WordPress theme for premium domain sale landing pages with grape purple color scheme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redwine-ai
Tags: landing-page, business, clean, minimal, purple
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Styles */
.site-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.domain-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.status-badge {
    display: inline-block;
    padding: 12px 30px;
    background: #faf5ff;
    border: 2px solid #7c3aed;
    border-radius: 50px;
    color: #5b21b6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b21b6;
    margin-bottom: 15px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 10px;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Use Cases Section */
.use-cases-section {
    background: #faf5ff;
    border-radius: 16px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid #e9d5ff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #5b21b6;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.use-case-item {
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.use-case-item:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    transform: translateX(5px);
}

.use-case-item h3 {
    color: #5b21b6;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.use-case-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: #faf5ff;
    border-radius: 16px;
    margin: 60px 0;
    border: 1px solid #e9d5ff;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5b21b6;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: white;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-secondary:hover {
    background: #faf5ff;
    transform: translateY(-2px);
    border-color: #5b21b6;
    color: #5b21b6;
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #1f2937;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

/* Success Message */
.success-message {
    display: none;
    padding: 20px;
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 8px;
    color: #047857;
    text-align: center;
    margin-top: 20px;
}

.success-message.show {
    display: block;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    margin-top: 80px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #7c3aed;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5b21b6;
}

/* WordPress Specific Classes */
.wp-block-group {
    margin-bottom: 2rem;
}

.alignwide {
    max-width: 1200px;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-name {
        font-size: 3rem;
    }

    .feature-card {
        padding: 30px;
    }

    .use-cases-section {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .site-header {
        padding: 40px 15px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
