/* Custom CSS for Landscaping By Marcy */

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --blush-100: #FDE8E8;
    --blush-200: #F9C8C8;
    --blush-300: #F4A8A8;
    --blush-400: #EF8888;
    --blush-500: #E06060;
    --cream: #FFF8F5;
    --dark: #2D1F3D;
}

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--cream);
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Custom color classes */
.text-burgundy {
    color: var(--burgundy);
}

.bg-burgundy {
    background-color: var(--burgundy);
}

.text-blush-500 {
    color: var(--blush-500);
}

.text-blush-300 {
    color: var(--blush-300);
}

.bg-blush-100 {
    background-color: var(--blush-100);
}

.bg-blush-500 {
    background-color: var(--blush-500);
}

.bg-blush-300 {
    background-color: var(--blush-300);
}

/* Primary button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--burgundy);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--burgundy);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(123, 45, 59, 0.3);
}

/* Secondary button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--burgundy);
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--burgundy);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--burgundy);
    color: white;
    transform: translateY(-2px);
}

/* Service card */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 31, 61, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(123, 45, 59, 0.15);
}

/* Floating animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--burgundy);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar scroll effect */
.nav-scrolled {
    background-color: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(45, 31, 61, 0.08);
}

/* Mobile menu */
.mobile-menu-link {
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    transform: translateX(8px);
}

/* Mobile menu button */
.menu-line {
    transition: all 0.3s ease;
}

#mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.375rem;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-playfair {
        font-size: 2.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .animate-float,
    .animate-float-delayed {
        display: none;
    }
}

/* Focus styles for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: none;
}

/* Selection color */
::selection {
    background-color: var(--blush-200);
    color: var(--burgundy);
}
