/* Custom Styles for Pfad.ink */

:root {
    --brand: #5B7C71;
    --light: #F9F7F2;
    --dark: #2C3333;
    --accent: #D4A373;
}

body {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Typography Enhancements */
h1, h2, h3, .font-serif {
    letter-spacing: -0.02em;
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--brand);
    color: white;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 9999px; /* Pill shape */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px -5px rgba(91, 124, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--dark);
    box-shadow: 0 15px 30px -10px rgba(44, 51, 51, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 9999px;
    border: 1px solid rgba(44, 51, 51, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    background-color: white;
}

/* Animations for Google uniqueness */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

main > section {
    animation: fadeIn 1s ease-out forwards;
}

/* Image styling */
img {
    filter: sepia(10%) contrast(105%);
}