
/* Custom styles to complement Tailwind */
body {
    line-height: 1.6;
}

/* Header transparency */
header {
    background-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px);
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Menu hover effect */
nav a {
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #d97706;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

/* Review cards */
blockquote {
    position: relative;
    padding-left: 1rem;
}

blockquote:before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 2rem;
    color: #d97706;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
}