:root {
    --primary: #2a9d8f;
    --primary-dark: #21867a;
    --secondary: #264653;
    --accent: #e9c46a;
    --accent-dark: #d9b459;
    --light: #f8f9fa;
    --dark: #212529;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/* Custom Cursor */
* {
    cursor: none;
    font-family: 'Poppins', sans-serif;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(42, 157, 143, 0.3);
    border: 2px solid var(--primary);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(233, 196, 106, 0.5);
    border-color: var(--accent);
}

.cursor-click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .cursor-dot {
        display: none;
    }
    
    * {
        cursor: auto;
    }
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #21867a;
    border-color: #21867a;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #d9b459;
    border-color: #d9b459;
}

/* Navbar Responsive Fix */
.navbar-nav .nav-link {
    padding: 8px 12px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .ms-lg-3 {
        text-align: center;
        padding-top: 8px;
        padding-bottom: 10px;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Interactive elements hover effect for cursor */
a, button, .btn, .feature-card, .destination-card, .tour-card, .testimonial-card, .social-icons a {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding-top: 40px !important;
    padding-bottom: 25px !important;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    footer {
        padding-top: 30px !important;
        padding-bottom: 20px !important;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-links {
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    h5 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    p {
        font-size: 0.9rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}