/* Custom Styles for Vesuv Ticket */

/* Font Family Setup */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

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

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Link Hover Effects */
a {
    transition: color 0.3s ease;
}

/* Card Hover Effects */
.hover\:shadow-lg {
    transition: box-shadow 0.3s ease;
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cookie Notice */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#cookie-notice.show {
    transform: translateY(0);
}

#cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-notice-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.cookie-notice-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-notice-text {
        text-align: left;
    }
}

.cookie-notice-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Print Styles */
@media print {
    nav, footer, #cookie-notice {
        display: none;
    }
}

