/* Yiğit Nakliye — custom styles on top of Tailwind Play CDN */

/* Diagonal "velocity" accents (see DESIGN.md) */
.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
@media (min-width: 768px) {
    .clip-diagonal-hero {
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    }
}

/* Smooth anchor navigation, offset for the sticky header */
html {
    scroll-behavior: smooth;
}
:target,
section[id] {
    scroll-margin-top: 90px;
}

/* Floating WhatsApp button */
.wa-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border: 2px solid #191c1f;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
    transition: transform 0.15s ease;
}
.wa-fab:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.9);
}
.wa-fab svg {
    width: 32px;
    height: 32px;
}

/* Mobile menu panel */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.open {
    max-height: 420px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .wa-fab,
    .mobile-menu {
        transition: none;
    }
}
