/* Custom styles for BoldF */

/* Root variables */
:root {
    --primary-green: #4CAF50;
    --light-green: #E8F5E9;
    --hover-green: #45a049;
    --text-gray: #333333;
    --bg-white: #ffffff;
}

/* Global styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Logo styles */
.logo-text {
    font-family: 'Comic Sans MS', cursive;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

/* Input field styles */
#textInput {
    border: 2px solid var(--light-green);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#textInput:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    outline: none;
}

/* Output container styles */
#outputContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Font style card styles */
.font-style-card {
    background: var(--bg-white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.font-style-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Button styles */
.copy-button {
    background-color: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: var(--hover-green);
}

/* Section styles */
section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1, h2, h3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

h3 {
    font-size: 1.5rem;
    font-weight: semibold;
}

/* Footer styles */
footer {
    background-color: var(--light-green);
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-width {
        width: 90%;
        margin: 0 auto;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Animation styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.font-style-card {
    animation: fadeIn 0.3s ease-out;
}

/* Accessibility styles */
:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .copy-button {
        display: none;
    }

    .content-width {
        width: 100%;
    }
} 