/* ================================
   Holloways Beach Markets - Custom Styles
   Modern, Tropical Theme with Animations
   ================================ */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #00838f;
    --primary-dark: #005662;
    --primary-light: #4fb3bf;
    --secondary-color: #ff6f00;
    --secondary-dark: #c43e00;
    --accent-color: #ffd54f;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --success-color: #4caf50;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tropical: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Navigation ========== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    background: rgba(0, 131, 143, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') 
        bottom center / 100% auto no-repeat;
    animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-2%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.info-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.info-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.info-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-badge span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-hero {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
}

.btn-hero:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 111, 0, 0.5);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== Section Styles ========== */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ========== Markets Section ========== */
.section-markets {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.markets-image-wrapper {
 	min-height: 500px; /* Было по умолчанию auto */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.markets-image-wrapper img {
    transition: transform 0.5s ease;
}

.markets-image-wrapper:hover img {
    transform: scale(1.1);
}

.markets-content {
    padding: 2rem;
}

.content-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Schedule Box */
.schedule-box {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.schedule-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.date-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.date-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.date-item .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-item .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* What to Find */
.what-to-find {
    margin-top: 5rem;
}

.what-to-find h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Stallholder CTA */
.stallholder-cta {
    margin-top: 5rem;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-card .btn {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.cta-card .btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========== Activities Section ========== */
.section-activities {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.activity-block {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.activity-block.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.activity-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.activity-image-wrapper img {
    transition: transform 0.5s ease;
}

.activity-image-wrapper:hover img {
    transform: scale(1.1);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 20px;
}

.activity-content {
    padding: 2rem;
}

.activity-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-title i {
    color: var(--secondary-color);
}

.activity-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Tour Options */
.tour-options {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.tour-options h4 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tour-subtitle {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tour-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.tour-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tour-type {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.tour-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tour-duration {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Activities List */
.activities-list {
    margin-top: 2rem;
}

.activities-list h5 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.activities-list ul {
    list-style: none;
    padding: 0;
}

.activities-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activities-list i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Cruise Features */
.cruise-features {
    margin-top: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.feature-highlight:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.feature-highlight strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-highlight p {
    margin: 0;
    color: var(--text-light);
}

.cruise-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.price-tag .from {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-tag .per {
    font-size: 0.9rem;
}

.cruise-times {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

/* ========== Dining Section ========== */
.section-dining {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.dundees-section {
    padding: 2rem 0;
}

.restaurant-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.restaurant-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.restaurant-content {
    padding: 2rem;
}

.restaurant-name {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.restaurant-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.restaurant-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Menu Highlights */
.menu-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.menu-highlights h4 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.menu-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.menu-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Opening Hours */
.opening-hours {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.opening-hours h4 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.hours-table tr {
    transition: var(--transition-smooth);
}

.hours-table tr:hover {
    transform: translateX(5px);
}

.hours-table td {
    padding: 0.75rem 1rem;
    color: var(--text-light);
}

.hours-table td:first-child {
    background: #f8f9fa;
    border-radius: 8px 0 0 8px;
}

.hours-table td:last-child {
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

/* Restaurant Features */
.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-feature {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

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

/* ========== Location Section ========== */
.section-location {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Links */
.social-links h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition-smooth);
    font-size: 1.3rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-md);
}

/* Beach Amenities */
.beach-amenities h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.amenities-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.amenities-list i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* ========== Partners Section ========== */
.section-partners {
    background: #f8f9fa;
    padding: 3rem 0;
}

.section-partners h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ========== Buttons ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .activity-content {
        margin-top: 2rem;
    }

    .tour-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .navbar-logo {
        height: 50px;
    }

    .hero-section {
        min-height: 500px;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 2rem;
    }

    .partner-logo {
        max-height: 60px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .info-badge {
        padding: 0.75rem 1rem;
    }

    .info-badge span {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .activity-title {
        font-size: 1.8rem;
    }

    .restaurant-name {
        font-size: 2rem;
    }
}

/* ========== Print Styles ========== */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}



/* Увеличиваем изображение рынков */
.markets-image-wrapper img {
    transform: scale(1.15);
    transform-origin: center;
}

.markets-image-wrapper {
    overflow: visible; /* Позволяет изображению выходить за границы */
}

/* Или просто увеличиваем высоту */
.markets-image-wrapper {
    min-height: 500px; /* Было по умолчанию auto */
}

.markets-image-wrapper img {

    height: 100%;

    object-fit: cover;
}

