
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cooper+Black&display=swap');
body {
    font-family: 'Inter', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #000;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}
/* Animation for hero text */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    animation: fadeIn 1.2s ease-out forwards;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* Video section hover effects */
.video-thumbnail {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}
/* Tour date styles */
.tour-date {
    transition: all 0.3s ease;
}

.tour-date:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.tour-date img {
    transition: transform 0.3s ease;
}

.tour-date:hover img {
    transform: scale(1.05);
}

/* Show bill styles */
#tour img {
    transition: all 0.3s ease;
}

#tour img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
/* Press kit image shadow */
#press img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#press img:hover {
    transform: scale(1.02);
}
/* Newsletter input focus */
input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Social icons size */
#contact [data-feather] {
    width: 24px;
    height: 24px;
}
/* Hero buttons hover states */
.hero-button {
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}
.hero-button:first-child {
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white;
}

.hero-button:first-child:hover {
    background-color: white !important;
    color: black !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.hero-button:last-child:hover {
    background-color: white !important;
    color: black !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}
/* Contact form button */
#contact button[type="submit"] {
    border: 2px solid white;
    background-color: transparent;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

#contact button[type="submit"]:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}
