/* Custom styles for Ronin Outdoor Spaces */

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #030607;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.02em;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.015em;
    line-height: 1.8;
}

/* Header and navigation styles */
#site-header {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Add gradient border glow to the logo on hover */
#site-header .logo-container:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #e5e5e5;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Active navigation state */
.nav-link.active {
    color: #ffffff;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ffffff, #e5e5e5);
    border-radius: 2px;
}

/* ======= ENHANCED STYLES FOR VISUAL IMPACT ======= */

/* Fullscreen Images */
.fullscreen-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

/* Hero Section Enhancements */
.hero {
    min-height: 100vh;
}

/* Fancy Typography */
.display-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.accent-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.super-large-text {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1.1;
}

/* Image Effects */
.image-zoom-container {
    overflow: hidden;
}

.image-zoom {
    transition: transform 1.5s ease;
}

.image-zoom:hover {
    transform: scale(1.1);
}

/* Scroll-based animations and enhancements */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Image Hover Effects */
.hover-lift {
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* Enhanced transitions */
.slow-transition {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom large hero images */
.hero-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.05);
}

/* Enhance text contrast against images */
.text-shadow {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* Gradient overlays for images */
.gradient-overlay {
    position: relative;
}

.gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 6, 7, 0.3), rgba(3, 6, 7, 0.9));
    z-index: 1;
}

/* Text splitting for animation effects */
.split-text span {
    display: inline-block;
}

/* Custom divider styles */
.artistic-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 80%;
    max-width: 400px;
}
@media only screen and (max-width: 767px) {
    .slideshow-slide {
        background-attachment: inherit;
    }
}