/* BALLOON FLIGHT SCHOOL & TOURS TEMPLATE STYLES
   Main CSS File - Version 1.0 
*/

/* ROOT VARIABLES
-------------------------------------------------- */
:root {
    --primary-color: #1E88E5;     /* Blue */
    --secondary-color: #FF5722;   /* Orange */
    --accent-color: #7E57C2;      /* Purple */
    --neutral-color: #455A64;     /* Dark Blue Gray */
    --light-color: #F5F5F5;       /* Light Gray */
    
    --primary-dark: #1565C0;
    --primary-light: #64B5F6;
    --secondary-dark: #E64A19;
    --secondary-light: #FFAB91;
    --accent-dark: #5E35B1;
    --accent-light: #B39DDB;
    
    --header-height: 80px;
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
}

/* GLOBAL STYLES
-------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    color: var(--neutral-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

section {
    padding: var(--section-padding);
}

.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

/* HEADER
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    color: var(--neutral-color);
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* HERO SECTION
-------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../AUD_images/hero-pattern.webp') repeat;
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-section p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ABOUT SECTION
-------------------------------------------------- */
.about-section {
    background-color: white;
    text-align: center;
}

.about-feature {
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
    margin-top: 20px;
    color: var(--primary-color);
}

/* SERVICES SECTION
-------------------------------------------------- */
.services-section {
    background-color: var(--light-color);
    text-align: center;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h4 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.service-item p {
    padding: 0 20px;
}

.service-item ul {
    padding: 0 20px 20px;
    list-style: none;
    text-align: left;
}

.service-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-item ul li:before {
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.price {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 30px;
    margin: 0 0 20px;
}

/* FEATURES SECTION
-------------------------------------------------- */
.features-section {
    background-color: white;
    text-align: center;
}

.feature-item {
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--primary-color);
}

/* PRICE PLAN SECTION
-------------------------------------------------- */
.priceplan-section {
    background-color: var(--light-color);
    text-align: center;
}

.price-plan {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-plan h4 {
    color: var(--primary-color);
}

.price-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.price-plan ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.price-plan ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* TEAM SECTION
-------------------------------------------------- */
.team-section {
    background-color: white;
    text-align: center;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h4 {
    margin: 20px 0 5px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--neutral-color);
    margin-bottom: 20px;
}

/* REVIEWS SECTION
-------------------------------------------------- */
.reviews-section {
    background-color: var(--light-color);
    text-align: center;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial p {
    font-style: italic;
    position: relative;
}

.testimonial p:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-light);
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 24px;
}

.testimonial h5 {
    color: var(--primary-color);
    margin-top: 20px;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: var(--primary-color);
}

/* CORE INFO SECTION
-------------------------------------------------- */
.coreinfo-section {
    background-color: white;
    text-align: center;
}

.core-info-item {
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.core-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.core-info-item h4 {
    color: var(--primary-color);
}

/* GALLERY SECTION
-------------------------------------------------- */
.gallery-section {
    background-color: var(--light-color);
    padding: var(--section-padding);
}

.gallery-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* BLOG SECTION
-------------------------------------------------- */
.blog-section {
    background-color: white;
    text-align: center;
}

.blog-post {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post h4 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.blog-post p {
    padding: 0 20px;
}

.blog-post a {
    display: inline-block;
    margin: 0 0 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post a:hover {
    color: var(--primary-dark);
}

/* FAQ SECTION
-------------------------------------------------- */
.faq-section {
    background-color: var(--light-color);
    text-align: center;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

/* CONTACT SECTION
-------------------------------------------------- */
.contact-section {
    background-color: white;
}

.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

/* FOOTER
-------------------------------------------------- */
.footer {
    background-color: var(--neutral-color);
    color: white;
    padding: 80px 0 40px;
}

.footer a {
    color: white;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

#site-copyright {
    display: block;
    margin-top: 20px;
    opacity: 0.7;
}

/* BREADCRUMB
-------------------------------------------------- */
.breadcrumb-container {
    height: 150px;
    background-color: var(--primary-light);
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-image {
    height: 100px;
    opacity: 0.3;
}

/* ADDITIONAL PAGES
-------------------------------------------------- */
.section-1, .section-2, .section-3, .section-4, .section-5 {
    padding: var(--section-padding);
    text-align: center;
}

.section-1 {
    background-color: white;
}

.section-2 {
    background-color: var(--light-color);
}

.section-3 {
    background-color: white;
}

.section-4 {
    background-color: var(--light-color);
}

.section-5 {
    background-color: white;
}

.history-item, .tech-feature, .location-card, .weather-info, 
.event-card, .training-step, .safety-item, .maintenance-item,
.photo-tip, .occasion-card {
    text-align: left;
    margin-bottom: 30px;
}

.location-card, .event-card, .occasion-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover, .event-card:hover, .occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-info, .event-info, .occasion-info {
    padding: 20px;
    background-color: white;
}

.training-step, .maintenance-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
} 