/* Custom styles to apply the Inter font */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.text-glow {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 127, 80, 0.4);
}
.hero-bg {
     /* A nice background image of a singer on stage, slightly blurred */
    background-image: url('../assets/foto-roy-banner.JPG');
    background-size: cover;
    background-position: center 20%;
}

/* Set a max-width for the main container */
.container {
    max-width: 1100px;
}

/* Additional styles for the interactive calendar */
#calendar-grid .day-name {
    font-weight: bold;
    color: #64748b; /* slate-500 */
    font-size: 0.875rem;
}

#calendar-grid .day-cell {
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

#calendar-grid .day-cell:hover {
    background-color: #f1f5f9; /* slate-100 */
}

#calendar-grid .day-cell.has-event {
    background-color: #FF7F50;
    color: white;
    font-weight: bold;
}
#calendar-grid .day-cell.has-event:hover {
    background-color: #E57248;
}

#calendar-grid .day-cell.is-today {
    box-shadow: 0 0 0 2px #FF7F50;
}

#calendar-grid .day-cell.is-selected {
    box-shadow: 0 0 0 2px #E57248;
    background-color: #fed7aa; /* orange-200 */
}

#calendar-grid .day-cell.is-empty {
    cursor: default;
}
#calendar-grid .day-cell.is-empty:hover {
    background-color: transparent;
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1, .h1 {
        font-size: 3.75rem; /* 60px */
    }
    h2, .h2 {
        font-size: 2.25rem; /* 36px */
    }
}

.scroll-down-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background-color: #FF7F50;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounce 2.5s infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.scroll-down-arrow span {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-down-arrow:hover {
    transform: translateX(-50%) scale(1.05);
    animation-play-state: paused;
    background-color: #E57248;
}

.scroll-down-arrow i {
    font-size: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-25px);
    }
    60% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* Custom cursor for desktop */
@media (min-width: 1024px) {
    body, a, button, [class*="cursor-pointer"] {
        cursor: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 18 18"%3E%3Cdefs%3E%3Cfilter id="outline"%3E%3CfeMorphology in="SourceAlpha" result="dilated" operator="dilate" radius="0.8"/%3E%3CfeFlood flood-color="white" result="flood"/%3E%3CfeComposite in="flood" in2="dilated" operator="in" result="outline"/%3E%3CfeMerge%3E%3CfeMergeNode in="outline"/%3E%3CfeMergeNode in="SourceGraphic"/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg filter="url(%23outline)"%3E%3Cpath fill="black" d="M11 15c0 1.105-1.12 2-2.5 2S6 16.105 6 15s1.12-2 2.5-2 2.5.895 2.5 2z"/%3E%3Cpath fill="black" fill-rule="evenodd" d="M11 5v10h-1V5h1z"/%3E%3Cpath fill="black" d="M10 4.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 15 4.22V6l-5 1V4.82z"/%3E%3C/g%3E%3C/svg%3E') 0 0, auto !important;
    }
}

/* Offset anchor links for fixed header */
#sfeerimpressie {
    scroll-margin-top: 0px;
}

section[id] {
    scroll-margin-top: 90px;
}

/* Custom underline on hover for navigation and other links */
#desktop-nav a:hover,
#mobile-menu nav a:hover,
footer .space-y-3 a:hover,
footer .text-sm a:hover {
    text-decoration: underline;
    text-decoration-color: #FF7F50;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition-property: color, text-decoration-color;
}

