/* ===================================
   AUSSIE MOTO VACATIONS STYLES
   =================================== */

/* Hero Section */
.aussie-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Slideshow Container */
.aussie-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aussie-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aussie-slide.active {
    opacity: 1;
}

.aussie-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
}

/* Hero Overlay */
.aussie-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 51, 102, 0.3) 50%,
        rgba(255, 165, 0, 0.2) 100%
    );
    z-index: 2;
}

/* Hero Content */
.aussie-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.aussie-title-section {
    margin-bottom: 50px;
    animation: aussieSlideUp 1.2s ease-out;
}

.aussie-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #ffa500 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    position: relative;
}

.aussie-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.aussie-cta-section {
    animation: aussieFadeIn 1.5s ease-out 0.5s both;
}

.aussie-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffa500 0%, #ff6b35 100%);
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 
        0 10px 30px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.aussie-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.aussie-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(255, 165, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.aussie-btn-primary:hover::before {
    left: 100%;
}

.aussie-btn-primary:active {
    transform: translateY(-1px);
}

/* Content Section */
.aussie-content-section {
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aussie-content-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.aussie-content-section p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes aussieSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aussieFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aussie-hero-content {
        padding: 0 15px;
    }
    
    .aussie-title-section {
        margin-bottom: 40px;
    }
    
    .aussie-btn-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
}

@media (max-width: 480px) {
    .aussie-btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .aussie-main-title {
        letter-spacing: 2px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .aussie-slide img {
        filter: brightness(0.8) contrast(1.3);
    }
    
    .aussie-main-title {
        -webkit-text-fill-color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .aussie-slide {
        transition: none;
    }
    
    .aussie-title-section,
    .aussie-cta-section {
        animation: none;
    }
    
    .aussie-btn-primary::before {
        transition: none;
    }
}
