/* General Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --dark-color: #1B5E20;
    --light-color: #C8E6C9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color);
    transition: background-color 0.3s ease;
    padding: 1rem 0;

}


.navbar.scrolled {
    background-color: var(--dark-color);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/landing.png') center/cover;
    color: white;
    position: relative;
    overflow: hidden;

}

.hero-app-preview {
    max-height: 600px;
    width: auto;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

/* Store Badges */
.store-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease;
}

.store-badge:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.store-badge i {
    font-size: 2rem;
    margin-right: 10px;
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-app-preview {
        max-height: 400px;
        margin-top: 30px;
    }
    
    .store-badge {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .destination-card {
        margin: 0 20px;
    }
}

/* Interactive Features */
.step-card {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

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

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

/* Error Pages */
.error-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color), white);
}

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

.footer-top {
    background: rgba(0,0,0,0.1);
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
}

.newsletter-form .btn {
    background: var(--primary-color);
    border: none;
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 10px;
    padding: 0.8rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .app-badges img {
        height: 40px;
    }
}

/* Add to existing CSS */

/* Enhanced Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.download-btn {
    background: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Category Cards */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Location Cards */
.location-card {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

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

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-color);
}

/* Add to your existing CSS */
.tooltip {
    font-size: 0.875rem;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0.5rem;
}

.like-btn {
    transition: all 0.3s ease;
}

.like-btn:hover {
    transform: scale(1.1);
}

.like-btn i {
    transition: transform 0.3s ease;
}

.like-btn:hover i {
    transform: scale(1.2);
} 