/*
Theme Name: DreamTinyTravels
Theme URI: https://dreamtinytravels.com
Author: Antigravity
Author URI: #
Description: A beautiful, neutral-beige affiliate travel theme optimized for Disney, Universal, Europe, and cruises.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: dreamtinytravels
*/

/* Custom CSS from original project */
/* Custom CSS for DreamTinyTravels */

/* Fluid Typography base */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #F5F2EF;
    /* offwhite */
}

::-webkit-scrollbar-thumb {
    background: #BED8BA;
    /* sageGreen */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #66B1BB;
    /* teal */
}

/* Nav Links Underline Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #BED8BA;
    /* sageGreen */
    transition: width 0.3s ease;
}

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

/* Selection color */
::selection {
    background: #F0A9AD;
    /* softPink */
    color: white;
}

/* Image Hover zoom optimizations */
.group:hover img {
    transform: scale(1.05);
}

/* Card hover tweaks */
.group:hover {
    transform: translateY(-5px);
}