/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Tour Cards */
.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Tables */
.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 300px;
    }
    
    .navbar-brand img {
        height: 30px;
    }
}

/* Homepage specific styles */
.hero-slider .carousel-item {
    height: 500px;
}

.hero-slider img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section_tour-new_title {
    margin-bottom: 40px;
}

.title-line {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px auto;
}

.tl-1, .tl-2, .tl-3 {
    height: 4px;
    border-radius: 2px;
}

.tl-1 {
    width: 40px;
    background: #3498db;
}

.tl-2 {
    width: 60px;
    background: #2ecc71;
}

.tl-3 {
    width: 40px;
    background: #e74c3c;
}

.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.myblog {
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.myblog:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
}

.myblog:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 300px;
    }
    
    .section_tour-new_title h2 {
        font-size: 1.5rem;
    }
}