:root {
    --dark-gray: #57564F;
    --medium-gray: #7A7A73;
    --light-beige: #DDDAD0;
    --soft-yellow: #F8F3CE;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--soft-yellow) 0%, var(--light-beige) 100%);
    --shadow-soft: 0 10px 40px rgba(87, 86, 79, 0.1);
    --shadow-medium: 0 20px 60px rgba(87, 86, 79, 0.15);
    --shadow-strong: 0 30px 80px rgba(87, 86, 79, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.font-syncopate {
    font-family: 'Syncopate', sans-serif;
}

.font-goudy {
    font-family: 'Sorts Mill Goudy', serif;
}

/* Utility Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Custom Buttons */
.btn-custom {
    padding: 15px 35px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-outline-custom:hover {
    background: var(--dark-gray);
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray) !important;
    letter-spacing: 3px;
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--medium-gray) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--medium-gray);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 86, 79, 0.8) 0%, rgba(122, 122, 115, 0.6) 100%),
                url('images/banner.jpeg') center/cover;
    z-index: -2;
}

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

.navbar-brand img{
    max-width: 200px;
}

html{
    overflow-x: hidden;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(248, 243, 206, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--soft-yellow);
    margin-bottom: 3rem;
    max-width: 500px;
    margin: 20px auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-yellow);
    font-family: 'Syncopate', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

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

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light-beige);
}

.destination-list {
    margin-top: 2rem;
}

.destination-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.destination-item i {
    font-size: 2rem;
    color: var(--medium-gray);
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.destination-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.destination-item p {
    color: var(--medium-gray);
    margin: 0;
}

.interactive-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--soft-yellow);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-pin:hover {
    transform: scale(1.2);
}

.pin-pulse {
    position: absolute;
    top: -7px;
    left: -8px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--soft-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: white;
}

.experience-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-beige);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-family: 'Syncopate', sans-serif;
}

.experience-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-gray);
    color: white;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: white;
}

.gallery-section .section-subtitle {
    color: var(--soft-yellow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 86, 79, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Syncopate', sans-serif;
}

/* Seasonal Section */
.seasonal-section {
    padding: 100px 0;
    background: var(--soft-yellow);
}

.seasonal-swiper {
    padding: 50px 0;
}

.seasonal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.seasonal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

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

.seasonal-content {
    padding: 30px;
}

.seasonal-season {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.seasonal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-family: 'Syncopate', sans-serif;
}

.seasonal-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-beige);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    color: var(--dark-gray);
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    background: var(--dark-gray);
    color: white;
}

.partners-section .section-title,
.partners-section .section-subtitle {
    color: white;
}

.partners-section .section-subtitle {
    color: var(--soft-yellow);
}

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

.partner-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.partner-item i {
    font-size: 3rem;
    color: var(--soft-yellow);
    margin-bottom: 20px;
}

.partner-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.partner-item p {
    color: var(--light-beige);
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--gradient-secondary);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--medium-gray);
}

.newsletter-form .btn-custom {
    border-radius: 0 50px 50px 0;
    margin: 0;
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 30px;
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 2rem;
    letter-spacing: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--soft-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--soft-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--light-beige);
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
    color: var(--soft-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--light-beige);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn-custom {
        border-radius: 0 0 50px 50px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-item {
        flex-direction: column;
        text-align: center;
    }
    
    .destination-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .hero-section{
        padding-top: 100px;
    }
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--dark-gray);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--dark-gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--dark-gray);
    opacity: 1;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

.notification button{
    color: #fff;
    font-weight: bold;
    background: none;
    outline: none;
    border: none;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--soft-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --dark-gray: #000000;
        --medium-gray: #333333;
        --light-beige: #FFFFFF;
        --soft-yellow: #FFFF00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}