/* ADD THIS TO THE VERY TOP OF YOUR styles.css */

/* Finale Jazz Text Font Declaration */
@font-face {
    font-family: 'Finale Jazz Text';
    src: url('fonts/finale-jazz-text.woff2') format('woff2'),
         url('fonts/finale-jazz-text.woff') format('woff'),
         url('fonts/finale-jazz-text.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Better loading performance */
}

/* Apply Finale Jazz Font to "Aksel" text */
.aksel-text {
    font-family: 'Finale Jazz Text', 'Creepster', serif;
    font-size: 1.1em;
    letter-spacing: 2px;
    font-weight: normal;
}

/* Navigation logo "Aksel" styling */
.logo .aksel-text {
    font-family: 'Finale Jazz Text', 'Creepster', serif;
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Hero title "Aksel" styling */
.hero h1 .aksel-text {
    font-family: 'Finale Jazz Text', 'Creepster', serif;
    font-size: 1.2em;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    /* Override gradient to use the font's natural look */
    background: none;
    -webkit-text-fill-color: #ffd23f;
    color: #ffd23f;
}

/* Fallback for older browsers */
.no-webfonts .aksel-text {
    font-family: 'Creepster', serif;
}* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #3d2419 100%);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 140, 66, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffd23f;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,210,63,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/duo_aksel_logo.png');
    background-size: 800px 800px; /* Adjust size as needed */
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3; /* Makes it subtle so text remains readable */
    z-index: 1; /* Above the dots but below the content */
    pointer-events: none; /* Allows clicks to pass through */
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    position: relative;
    animation: fadeInUp 2s ease;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 25px rgba(255, 140, 66, 0.4));
}

.logo-tagline {
    font-size: 1.2rem;
    color: #ffd23f;
    font-variant: small-caps;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(255, 140, 66, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff8c42, #ff6b6b, #ffd23f);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease-in-out infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,210,63,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

/* Sections */
section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

/* Image Carousel Styles */
.about-carousel {
    text-align: center;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
    background: rgba(255, 140, 66, 0.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 66, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.carousel-btn:hover {
    background: rgba(255, 140, 66, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 66, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    border-color: #ffd23f;
}

.carousel-dot:hover {
    border-color: #ffd23f;
    transform: scale(1.2);
}

/* Pause auto-cycling on hover */
.carousel-container:hover .carousel-slide {
    animation-play-state: paused;
}

/* AUTUMN JAZZ: Images at Top - Modified about-card styles */
.about-card {
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 66, 0.2);
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 140, 66, 0.15);
    box-shadow: 0 15px 30px rgba(255, 140, 66, 0.2);
}

.about-card h3 {
    color: #ffd23f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    order: 2;
    text-align: center;
}

.about-card h4 {
    color: #ff8c42;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    order: 3;
    text-align: center;
}

.about-card p {
    order: 4;
}

.about-card .about-image {
    order: 1;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.music-card {
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.music-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 140, 66, 0.15);
    box-shadow: 0 15px 30px rgba(255, 140, 66, 0.2);
}

.music-card h3 {
    color: #ffd23f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.play-button {
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

/* Tour Section */
.tour-dates {
    background: rgba(255, 140, 66, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.tour-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s ease;
}

.tour-date:hover {
    background: rgba(255, 140, 66, 0.1);
    border-radius: 10px;
}

.tour-date:last-child {
    border-bottom: none;
}

.tour-info {
    flex: 1;
}

.tour-venue {
    font-weight: bold;
    color: #ffd23f;
}

.tour-location {
    opacity: 0.8;
    font-size: 0.9rem;
}

.tour-button {
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 140, 66, 0.3);
}

.tour-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.contact-form {
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd23f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd23f;
    box-shadow: 0 0 10px rgba(255, 210, 63, 0.3);
}

.submit-button {
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    section {
        padding: 50px 1rem;
    }

    .carousel-container {
        max-width: 100%;
    }

    .carousel-slides {
        height: 300px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
/* ADD THIS TO THE END OF YOUR styles.css - Simple MP3 Player */

.simple-audio-player {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff8c42, #ff6b6b);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 140, 66, 0.4);
}

.track-info {
    flex: 1;
    color: #ffd23f;
    font-weight: 500;
}

.time-display {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: monospace;
}

.progress-bar-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff8c42, #ffd23f);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}