/* 
* AZIRA - Enhanced Styles
* Additional styling to improve the website appearance and functionality
*/

/* Enhanced Header Styles */
.header {
    background-color: #fcfcfc !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f5f5f5;
}

.header .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.header .logo {
    height: 90px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.header .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.header .nav-link {
    font-weight: 700;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.header .nav-link:hover {
    color: var(--primary-color) !important;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.header .nav-link.active {
    color: var(--primary-color) !important;
}

.header .nav-link.active::after {
    width: 80%;
    right: 10%;
}

.navbar-buttons {
    display: flex;
    align-items: center;
}

.navbar-buttons .btn {
    margin-right: 10px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.navbar-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.navbar-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 150, 0.4);
}

.navbar-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.navbar-buttons .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.user-greeting {
    font-weight: 600;
    color: #333;
}

.user-name {
    color: var(--primary-color);
    font-weight: 700;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(0, 168, 150, 0.2)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-image-container {
    position: relative;
}

.hero-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Enhanced Destination Cards */
.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.destination-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.destination-meta .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.destination-meta .rating {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 158, 0, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #ff9e00;
}

.destination-meta .rating i {
    margin-left: 5px;
}

/* Enhanced Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Buttons */
.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    margin-left: 10px;
    color: var(--primary-color);
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(-5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact p i {
    margin-left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Enhanced Form Styles */
.form-control {
    height: 50px;
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

textarea.form-control {
    height: auto;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Enhanced Login/Register Forms */
.auth-form {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-form .form-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.auth-form .form-title p {
    color: #666;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .form-control {
    height: 55px;
}

.auth-form .btn-submit {
    width: 100%;
    height: 55px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
}

.auth-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.auth-form .form-footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.auth-form .form-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .destination-image {
        height: 220px;
    }
}

/* Increase cart icon size in header */
.header .header-buttons .fa-shopping-cart {
    font-size: 1.5rem; /* Adjust as needed */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .auth-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .destination-image {
        height: 180px;
    }
}
