/* Custom styles beyond Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Header shadow animation */
header {
    transition: all 0.3s ease;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Header styling */
.header-background {
    background: linear-gradient(to right, #000000, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.header-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, 
            rgba(240, 148, 4, 0.15) 0%,
            rgba(240, 148, 4, 0.05) 25%,
            transparent 50%),
        linear-gradient(-45deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            transparent 100%);
    opacity: 0.9;
}

header.scrolled .header-gradient {
    opacity: 1;
}

/* Button shine effect update for light background */
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* Quote section enhancements */
blockquote {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

blockquote::before,
blockquote::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23f09404' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.583 17.321C3.553 16.227 3 15 3 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179zm10 0C13.553 16.227 13 15 13 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179z'/%3E%3C/svg%3E");
}

blockquote::before {
    top: -20px;
    left: -10px;
    transform: rotate(180deg);
}

blockquote::after {
    bottom: -20px;
    right: -10px;
}

/* Enhance the hover effect for the practice areas */
.flex.items-center {
    transition: all 0.3s ease;
}

.flex.items-center:hover {
    transform: translateY(-2px);
    color: #f09404;
}

.flex.items-center:hover svg {
    transform: scale(1.1);
}

.flex.items-center svg {
    transition: transform 0.3s ease;
}

/* Map container styling */
.map-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
}

.map-container:hover iframe {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid.md:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin-top: 1rem;
    }
} 