/* Custom styles for We Are SmarterTravel */

:root {
    --primary-color: #0f85b7;
    --primary-hover: #0d6e96;
    --secondary-color: #f5f5f5;
    --dark-bg: #2c3e50;
    --light-text: #ffffff;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Headings use Source Sans Pro */
h1, h2, h3, h4, h5, h6, .title {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Quote uses Libre Baskerville */
.testimonial-content .quote-text {
    font-family: 'Libre Baskerville', serif;
}

/* Hero customization */
.hero.is-primary {
    background: linear-gradient(135deg, #0f85b7 0%, #0d6e96 100%);
}

.hero.is-primary .title {
    color: white;
    font-weight: 700;
}

.hero.is-primary .has-text-white {
    color: white !important;
}

.hero.is-primary .image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Site logos image map */
img[usemap] {
    transition: transform 0.2s ease;
}

img[usemap]:hover {
    transform: scale(1.02);
}

/* Jobs iframe */
.jobs-iframe-container {
    max-width: 100%;
    margin: 0 auto;
}

.jobs-iframe-container iframe {
    display: block;
    margin: 0 auto;
}

/* Testimonial */
.testimonial-content {
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial-content p {
    line-height: 1.6;
}

.testimonial-content .quote-text {
    color: #555555;
    font-size: 22px;
}

.testimonial-content .quote-attribution {
    font-size: 14px;
}

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

.navbar-item:hover {
    color: #0f85b7 !important;
}

/* Buttons */
.button.is-primary {
    background-color: #0f85b7;
}

.button.is-primary:hover {
    background-color: #0d6e96;
}

/* Sections */
.section {
    padding: 3rem 1.5rem;
}

@media screen and (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }
    
    .hero.is-medium .hero-body {
        padding: 3rem 1.5rem;
    }
    
    /* Stack columns on mobile for better image display */
    #jobs .columns.is-vcentered {
        flex-direction: column-reverse;
    }
    
    /* Hero section: show image first on mobile */
    .hero .columns.is-vcentered {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background-color: #363636;
    color: white;
}

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

.footer a:hover {
    color: #0f85b7;
    text-decoration: underline;
}

/* Responsive adjustments */
address {
    font-style: normal;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
