/* Custom styles for Emma Fisher website */

/* Typography */
body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: #2D3748;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    font-weight: 700;
}

/* Layout sections */
.hero-section {
    background-color: #F8F7F4;
}

/* Navigation styles */
.nav-scrolled {
    background-color: rgba(248, 247, 244, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Button styles */
.primary-btn {
    background-color: #3A506B;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #4B6A8C;
    transform: scale(1.05);
}

/* Accent and background colors */
.secondary-accent {
    background-color: rgba(212, 163, 163, 0.1);
}

.testimonial-bg {
    background-color: rgba(212, 163, 163, 0.2);
}

/* Animation styles */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-in;
}

/* Logo container styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 60px;
}

/* Form styles */
input:focus {
    outline: none;
}

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

/* Accessibility improvements */
button:focus,
a:focus {
    outline: 2px solid #3A506B;
    outline-offset: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .logo-container {
        min-width: 100px;
        height: 50px;
    }
}

/* Print styles */
@media print {
    .fixed {
        position: relative !important;
    }
    
    nav {
        display: none;
    }
}