/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

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

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    padding: 2rem 0;
}

.search-box {
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.search-box:hover {
    transform: translateY(-5px);
}

/* Animation Classes */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Destination Cards */
.destination-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    position: relative;
    overflow: hidden;
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.price-tag::before {
    content: 'From';
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.price-tag span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.destination-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: none;
}

.destination-content {
    color: var(--white);
    transform: translateY(0);
    transition: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .destination-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
        padding: 1.5rem;
    }

    .destination-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .destination-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .destination-content .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .price-tag {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .price-tag span {
        font-size: 1.1rem;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
}

/* Footer */
footer {
    background: var(--dark-color);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .search-box {
        padding: 1rem !important;
    }

    .destination-image img {
        height: 200px;
    }

    .testimonial-card {
        margin: 0.5rem;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* General Styles */
:root {
    --primary-color: #e6007a; /* Vibrant Pink from logo */
    --secondary-color: #ffb800; /* Vibrant Yellow */
    --accent-color: #00cfff; /* Bright Cyan */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-light: #f3f4f6;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hero Section */
.hero-section {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1rem;
    margin-top: 2rem;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    border-radius: 1rem;
}

.hero-content {
    padding: 120px 0;
}

.search-box {
    background: rgba(255,255,255,0.95) !important;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 24px rgba(230, 0, 122, 0.08);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: none;
}

.destination-content {
    color: var(--white);
    transform: translateY(0);
    transition: none;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 1rem;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
}

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

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 0;
    }

    .destination-image {
        height: 250px;
    }

    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(230, 0, 122, 0.12);
    transition: var(--transition);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 207, 255, 0.15);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 2rem;
    transition: var(--transition);
}

.btn-light:hover, .btn-light:focus {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.03);
}

/* Form Controls */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-group-text {
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: transparent;
}

.input-group .form-control {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonials .card {
    border-radius: 10px;
}

.testimonials img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 2px 8px rgba(230, 0, 122, 0.08);
    border-radius: 1rem;
    margin: 1rem;
    padding: 0.5rem 0;
}

.navbar .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .navbar .container,
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.navbar-brand img {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Package Cards */
.package-card {
    margin-bottom: 2rem;
}

.package-card .card-img-top {
    height: 250px;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d6efd;
}

/* Booking Form */
.booking-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

/* User Profile */
.profile-header {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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