/* Custom Color Palette */
:root {
    --terracotta-50: #fef2f2;
    --terracotta-100: #fee2e2;
    --terracotta-200: #fecaca;
    --terracotta-300: #fca5a5;
    --terracotta-400: #f87171;
    --terracotta-500: #ef4444;
    --terracotta-600: #dc2626;
    --terracotta-700: #b91c1c;
    --terracotta-800: #991b1b;
    --terracotta-900: #7f1d1d;
    --terracotta-950: #450a0a;
}

/* Tailwind Custom Colors */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
    .text-terracotta-400 {
        color: #f87171;
    }
    .text-terracotta-600 {
        color: #dc2626;
    }
    .bg-terracotta-600 {
        background-color: #dc2626;
    }
    .hover\:bg-terracotta-700:hover {
        background-color: #b91c1c;
    }
    .hover\:text-terracotta-400:hover {
        color: #f87171;
    }
    .hover\:text-terracotta-300:hover {
        color: #fca5a5;
    }
    .border-terracotta-600 {
        border-color: #dc2626;
    }
    .border-terracotta-600\/50 {
        border-color: rgba(220, 38, 38, 0.5);
    }
    .bg-terracotta-600\/10 {
        background-color: rgba(220, 38, 38, 0.1);
    }
    .bg-terracotta-900\/20 {
        background-color: rgba(127, 29, 29, 0.2);
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0c0a09;
}

::-webkit-scrollbar-thumb {
    background: #44403c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #57534e;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(68, 64, 60, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Button Hover Effects */
button:hover, a:hover {
    transform: translateY(-1px);
}

button:active, a:active {
    transform: translateY(0);
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Image Hover Effects */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}
