@import 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css';

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff4500;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.unclickable-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
    pointer-events: none;
}

#header {
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

#menuToggle {
    transition: transform 0.3s ease-in-out;
}

#menuToggle.active {
    transform: rotate(90deg);
}

#menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#menu.active {
    max-height: 500px;
    opacity: 1;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
}

.section-title:hover::after {
    width: 100%;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}