/**
 * Custom styles for Beyond Splendid Ventures
 */

/* ======= HEADER STYLES ======= */
.site-header {
    padding: 15px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.main-navigation {
    font-family: var(--heading-font);
}

.main-navigation ul li {
    margin: 0 15px;
}

.main-navigation ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

.main-navigation ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover:after,
.main-navigation ul li.current-menu-item a:after {
    width: 100%;
}

/* ======= HERO SECTION ======= */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======= FEATURED DESTINATIONS ======= */
.featured-destinations {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.destination-details {
    padding: 20px;
    background: var(--light-color);
}

.destination-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.destination-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
}

.destination-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.destination-link:hover {
    color: var(--secondary-color);
}

.destination-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.destination-link:hover i {
    transform: translateX(3px);
}

/* ======= POPULAR TOURS ======= */
.popular-tours {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tour-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background-color: var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.tour-price {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 1;
}

.tour-details {
    padding: 20px;
}

.tour-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.tour-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
}

.tour-meta-item i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.tour-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tour-button:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    margin: 20px;
    text-align: center;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content:before,
.testimonial-content:after {
    content: """;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--accent-color);
    line-height: 0;
    position: absolute;
}

.testimonial-content:before {
    top: 15px;
    left: -20px;
}

.testimonial-content:after {
    content: """;
    bottom: -10px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author-title {
    color: #777;
    font-size: 14px;
}

/* ======= WHY CHOOSE US ======= */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
    border-radius: 8px;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    font-size: 15px;
}

/* ======= CALL TO ACTION ======= */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ======= FOOTER ======= */
.site-footer {
    color: var(--light-color);
}

.footer-widgets {
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--light-color);
}

.footer-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact-info p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* ======= ABOUT PAGE ======= */
.about-hero {
    height: 50vh;
    min-height: 400px;
}

.about-section {
    padding: 80px 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: auto;
}

.team-member-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member-position {
    color: #777;
    margin-bottom: 15px;
}

.team-member-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ======= CONTACT PAGE ======= */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    font-size: 24px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
}

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

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea.form-control {
    height: 150px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .testimonial-content {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .featured-destinations,
    .popular-tours,
    .testimonials-section,
    .why-choose-us,
    .about-section,
    .team-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .featured-destinations,
    .popular-tours,
    .testimonials-section,
    .why-choose-us,
    .about-section,
    .team-section,
    .contact-section {
        padding: 40px 0;
    }
}
