/* public/landing.css */
/* This file contains only the landing-specific styles */
/* Base styles are inherited from your existing styles.css */

/* Landing content wrapper */
.landing-content {
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Landing intro section */
.landing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.landing-intro h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.landing-intro p {
    font-size: 18px;
    color: #5d6d7e;
    max-width: 800px;
    margin: 0 auto;
}

/* Features tiles */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.feature-tile {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    background-color: #f0f8ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tile h3 {
    color: #4682b4; /* Match your primary color from original site */
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-tile p {
    color: #5d6d7e;
    margin-bottom: 20px;
    font-size: 15px;
    flex-grow: 1;
}

.feature-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682b4; /* Match button color from original site */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.feature-button:hover {
    background-color: #3a6d99;
}

/* Why section */
.why-section {
    background-color: #f0f8ff;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 70px;
}

.why-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    background-color: #4682b4; /* Match your site's color */
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-text p {
    color: #5d6d7e;
    font-size: 15px;
}

/* Quick check section */
.quick-check {
    text-align: center;
    margin-bottom: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-check h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
}

.quick-check-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

#quickDomainInput {
    flex: 1;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

#quickCheckButton {
    padding: 15px 25px;
    background-color: #4682b4; /* Match button color */
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#quickCheckButton:hover {
    background-color: #3a6d99;
}

/* Responsive design */
@media (max-width: 768px) {
    .landing-intro h2 {
        font-size: 24px;
    }
    
    .landing-intro p {
        font-size: 16px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .why-section {
        padding: 30px 20px;
    }
    
    .quick-check-form {
        flex-direction: column;
    }
    
    #quickDomainInput {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    #quickCheckButton {
        border-radius: 5px;
    }
}