/* Custom styles for GMayers website */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #25896D;
    outline-offset: 2px;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Selection color */
::selection {
    background-color: #25896D;
    color: white;
}

/* Form input focus states */
input:focus,
textarea:focus,
select:focus {
    border-color: #25896D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 137, 109, 0.1);
}

/* FAQ accordion animations */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content.open {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Subtle hover effect for cards */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog post typography */
.prose {
    line-height: 1.75;
}

.prose p {
    margin-bottom: 1.5em;
}

.prose h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.prose h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose blockquote {
    border-left: 4px solid #25896D;
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: #4a5568;
}
