/* General Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

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

/* Frontend Header Styles */
.frontend-header .navbar {
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.frontend-header .navbar-brand {
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.frontend-header .nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.frontend-header .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.frontend-header .nav-link:hover:after {
    width: 80%;
}

.frontend-header .dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.frontend-header .dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

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

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

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

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

.card-img-top {
    height: auto!important; 
    object-fit: fill!important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

footer a {
    color: white;
    text-decoration: none;
}

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

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Utilities */
.min-vh-75 {
    min-height: 75vh;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .frontend-header .nav-link:after {
        display: none;
    }
}

/* Tour Cards */
.tour-card {
    overflow: hidden;
    position: relative;
}

/* Tour detail page image */
.tour-detail-img {
    width: 100%;
    max-height: 70vh;
    min-height: 500px!important;
   
    object-position: center;
    margin: 0 auto;
    display: block;
}



.tour-card:hover .card-img-top {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.tour-card .card-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-card .card-text {
    margin-bottom: 15px;
}

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

.tour-card .btn:hover {
    transform: translateY(-2px);
} 