/* Custom CSS Variables */
:root {
    --primary-color: #2c5f41;
    --secondary-color: #ff6b35;
    --accent-color: #f4a261;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #2c5f41 0%, #4a7c59 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f4a261 100%);
    --gradient-hero: linear-gradient(135deg, rgba(44, 95, 65, 0.8) 0%, rgba(74, 124, 89, 0.6) 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(44, 95, 65, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Page Navigation Dots */
.page-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(44, 95, 65, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.1);
    border-color: rgba(44, 95, 65, 0.3);
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.nav-dot.active::after {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(44, 95, 65, 0.7) 0%, rgba(74, 124, 89, 0.5) 100%), url('../images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 3s;
}

.floating-shape:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    transform: rotate(45deg);
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(15deg); 
        opacity: 0.2;
    }
}

/* Button Styles */
.btn-custom {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

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

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hidden Gems Section */
.hidden-gems {
    background: var(--light-bg);
    position: relative;
}

.hidden-gems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.gem-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.gem-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.gem-card-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gem-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 95, 65, 0.9) 0%, rgba(255, 107, 53, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-card:hover .gem-card-overlay {
    opacity: 1;
}

.gem-card-content {
    padding: 2.5rem;
}

.gem-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.gem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Seasonal Journeys */
.seasonal-journeys {
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.seasonal-journeys::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light-bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.seasonal-slider {
    position: relative;
    margin-top: 2rem;
}

.season-slide {
    background-size: cover;
    background-position: center;
    height: 550px;
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.season-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.season-slide:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.season-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
}

.season-content h3 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.season-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Cultural Explorer Map */
.cultural-map {
    background: white;
    position: relative;
}

.cultural-map::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    transform: rotate(180deg);
    background: var(--gradient-primary);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.map-container {
    position: relative;
    background: url('../images/map.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    height: 800px;
    overflow: hidden;
    /* background-image: 
        radial-gradient(circle at 20% 30%, rgba(44, 95, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%); */
}

.map-hotspot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 3s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.map-hotspot:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.map-hotspot:nth-child(1) { top: 25%; left: 20%; }
.map-hotspot:nth-child(2) { top: 45%; left: 65%; }
.map-hotspot:nth-child(3) { top: 65%; left: 30%; }
.map-hotspot:nth-child(4) { top: 35%; left: 80%; }

@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% { 
        box-shadow: 0 0 0 25px rgba(255, 107, 53, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.hotspot-info {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: none;
    min-width: 250px;
    z-index: 10;
    border: 3px solid var(--accent-color);
}

.hotspot-info h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Traveller Stories */
.traveler-stories {
    background: var(--light-bg);
    position: relative;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin: 0 15px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.story-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    border: 5px solid var(--accent-color);
    transition: var(--transition);
}

.story-card:hover .story-avatar {
    transform: scale(1.05);
}

.story-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-rating {
    margin-top: 1rem;
}

/* Eco Adventure */
.eco-adventure {
    background: white;
    position: relative;
}

.adventure-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 3px solid transparent;
    height: 100%;
}

.adventure-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.adventure-icon {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.adventure-card:hover .adventure-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.adventure-card h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.adventure-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Special Offer */
.special-offer {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    position: relative;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.offer-card {
    background: white;
    color: var(--text-dark);
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: 2rem;
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.offer-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
}

.offer-card ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    transform: rotate(180deg);
    background: var(--gradient-secondary);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
    line-height: 2;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: white;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-nav {
        display: none;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .season-content h3 {
        font-size: 2.5rem;
    }
    
    .season-content p {
        font-size: 1.1rem;
    }
    
    .offer-card {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .offer-price {
        font-size: 2.5rem;
    }
    
    .gem-card-content,
    .story-card {
        padding: 2rem;
    }
    
    .adventure-card {
        padding: 2rem 1.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-custom {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .season-slide {
        height: 400px;
    }
    
    .season-content h3 {
        font-size: 2rem;
    }
    
    .offer-badge {
        top: -15px;
        right: -10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-hotspot {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}