/* About page specific styles */

/* Hero Section */
.about-hero {
    margin-top: 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1200/500');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Destination Section */
.destination-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.destination-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.destination-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.destination-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.destination-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-features .feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.destination-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-us-list {
    display: grid;
    gap: 30px;
}

.choose-item {
    display: flex;
    gap: 20px;
}

.choose-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.choose-text h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.choose-text p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .story-content,
    .destination-content,
    .choose-us-content,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .our-story,
    .our-values,
    .why-choose-us,
    .testimonials,
    .destination-section {
        padding: 60px 0;
    }
    
    .destination-features {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .story-text h3,
    .destination-text h3 {
        font-size: 1.5rem;
    }
    
    .value-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .choose-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .choose-icon {
        margin: 0 auto;
    }
    
    .choose-text {
        text-align: center;
    }
}