/* Destinations Header Styles */
.destinations-header {
    background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(30, 60, 114, 0.8)), 
                url('../assets/images/destinations-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-bottom: 50px;
}

.destinations-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.destinations-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

/* Destinations Grid Styles */
.destinations-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1e3c72;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.destination-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.destination-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-features i {
    color: #1e3c72;
}

.destination-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    color: #1e3c72;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-details {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: linear-gradient(to right, #2a5298, #1e3c72);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .destinations-header {
        padding: 100px 20px 60px;
    }

    .destinations-header h1 {
        font-size: 2.5rem;
    }

    .destinations-header p {
        font-size: 1rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: #87CEEB;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    color: #1e3c72;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #1e3c72, #87CEEB);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a4a4a;
}

.footer-section i {
    color: #1e3c72;
    font-size: 1.2rem;
    background: #e4e9f2;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1e3c72;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: #1e3c72;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(30,60,114,0.1);
    color: #4a4a4a;
}

.owner-name {
    color: #1e3c72;
    font-weight: bold;
    background: linear-gradient(to right, #1e3c72, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
} 
