/* Wix-style CSS for Shala River Boat Tours */

/* Base */
:root {
    --primary-color: #2c89e8;
    --secondary-color: #10b981;
    --accent-color: #fbbf24;
    --text-color: #333333;
    --light-bg: #f9fafb;
    --dark-bg: #1f2937;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.wix-heading-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.5px;
}

.wix-heading-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.3px;
}

.wix-heading-3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.wix-gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout Components */
.wix-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wix-section {
    padding: 6rem 0;
}

.wix-section-sm {
    padding: 3rem 0;
}

/* Navigation */
.wix-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    padding: 0.75rem 0;
}

.wix-navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.98);
}

.wix-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wix-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wix-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wix-nav-link {
    position: relative;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: var(--transition-normal);
    text-decoration: none;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
    border-radius: 4px;
}

.wix-nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(44, 137, 232, 0.05);
}

.wix-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(44, 137, 232, 0.08);
}

.wix-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.wix-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.wix-logo:hover {
    color: var(--primary-color);
    transform: scale(1.02);
}

.wix-logo-icon {
    color: var(--primary-color);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.wix-logo-text {
    background: linear-gradient(135deg, #2c89e8 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.wix-nav-action {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.wix-nav-action:hover {
    transform: translateY(-2px);
}

/* Buttons */
.wix-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
}

.wix-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.wix-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.wix-btn-primary:hover {
    background-color: #1a7bd4;
}

.wix-btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.wix-btn-secondary:hover {
    background-color: #0ea271;
}

.wix-btn-accent {
    background-color: var(--accent-color);
    color: #1f2937;
}

.wix-btn-accent:hover {
    background-color: #f59e0b;
}

.wix-btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.wix-btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Cards */
.wix-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wix-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wix-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.wix-card-body {
    padding: 1.5rem;
}

.wix-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Hero Sections */
.wix-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    display: flex;
    align-items: center;
}

.wix-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.wix-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.wix-footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.wix-footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.wix-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wix-footer-link {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.wix-footer-link:hover {
    color: white;
}

.wix-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Testimonials */
.wix-testimonial {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.wix-testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: serif;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.wix-testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.wix-testimonial-author {
    display: flex;
    align-items: center;
}

.wix-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* Animations */
.wix-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.wix-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.wix-zoom-in {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.wix-zoom-in.active {
    transform: scale(1);
    opacity: 1;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .wix-section {
        padding: 4rem 0;
    }
    
    .wix-section-sm {
        padding: 2rem 0;
    }
    
    .wix-navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        padding: 3rem 2rem 2rem;
        border-radius: 0 0 0 10px;
        overflow-y: auto;
    }
    
    .wix-navbar-collapse.show {
        right: 0;
    }
    
    .wix-navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: rgba(44, 137, 232, 0.08);
        cursor: pointer;
        font-size: 1.25rem;
        color: var(--primary-color);
        transition: all 0.2s ease;
    }
    
    .wix-navbar-toggler:hover {
        background-color: rgba(44, 137, 232, 0.15);
        transform: scale(1.05);
    }
    
    .wix-close-menu {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        cursor: pointer;
        font-size: 1.25rem;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .wix-close-menu:hover {
        background-color: rgba(0, 0, 0, 0.1);
        transform: rotate(90deg);
    }
    
    .wix-mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .wix-mobile-nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .wix-mobile-nav-link:hover {
        background-color: rgba(44, 137, 232, 0.08);
    }
    
    .wix-mobile-nav-link.active {
        background-color: rgba(44, 137, 232, 0.12);
        font-weight: 600;
    }
    
    .wix-mobile-nav-link i {
        color: var(--primary-color);
        width: 20px;
        text-align: center;
    }
}

/* Image Effects */
.wix-img-zoom {
    overflow: hidden;
}

.wix-img-zoom img {
    transition: transform 0.5s ease;
}

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

/* Gallery */
.wix-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.wix-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.wix-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wix-gallery-item:hover .wix-gallery-img {
    transform: scale(1.1);
}

.wix-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wix-gallery-item:hover .wix-gallery-overlay {
    transform: translateY(0);
}

/* Contact Form */
.wix-form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}

.wix-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Custom Utility Classes */
.wix-shadow {
    box-shadow: var(--shadow-md);
}

.wix-rounded {
    border-radius: 8px;
}

.wix-transition {
    transition: var(--transition-normal);
}

.wix-text-primary {
    color: var(--primary-color);
}

.wix-text-secondary {
    color: var(--secondary-color);
}

.wix-bg-primary-light {
    background-color: rgba(44, 137, 232, 0.1);
}

.wix-bg-secondary-light {
    background-color: rgba(16, 185, 129, 0.1);
}

/* Mobile menu overlay */
.wix-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wix-overlay.show {
    opacity: 1;
    visibility: visible;
}