/* Kyle's First Website - Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

nav a {
    text-decoration: none;
    color: #667eea;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #667eea;
    color: white;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.hero p {
    font-size: 1.8rem;
    font-weight: bold;
}

.checkmark {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 1.2em;
}

.plus-sign {
    color: #FF9800;
    background-color: rgba(255, 152, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 1.1em;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.dollar-sign {
    color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 1.2em;
}

.order-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-details h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.pricing-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    margin: 0.5rem 0;
}

.pricing-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.pricing-highlight {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-highlight p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.contact-simple {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    margin: 2rem 0;
    border: 3px solid #667eea;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin: 0;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 4px rgba(102, 126, 234, 0.3);
}

h2 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

label {
    font-weight: bold;
    color: #333;
}

input, textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #666;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 0 1rem;
    }

    section {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }
}
