/* Custom CSS for Seyahat Acentesi */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

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

.btn {
    border-radius: 4px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.btn-primary:hover {
    background-color: #0d62d1;
    border-color: #0d62d1;
}

.btn-outline-primary {
    color: #1a73e8;
    border-color: #1a73e8;
}

.btn-outline-primary:hover {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

/* Header */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-section h1 {
    font-weight: 700;
    color: #1a73e8;
}

.search-box {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Services */
.icon-box i {
    color: #1a73e8;
    margin-bottom: 15px;
}

.card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Destinations */
.destination-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

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

/* Newsletter */
.newsletter {
    background-color: #1a73e8;
}

/* Footer */
footer {
    background-color: #343a40;
}

footer a {
    color: #fff;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
    color: #fff;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 5px;
}

.social-icons a:hover {
    background-color: #1a73e8;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .search-box {
        margin-top: 30px;
    }
}
