/* MAIN STYLES FOR BALLOON EVENT PACKAGES
-------------------------------------------- */

:root {
    /* Color Palette */
    --primary-1: #ff6b6b; /* Coral Pink */
    --primary-2: #4ecdc4; /* Turquoise */
    --primary-3: #f7fff7; /* Off-white */
    --primary-4: #ff9a3c; /* Light Orange */
    --primary-5: #6c63ff; /* Purple */
    
    /* Shades */
    --primary-1-light: #ff8a8a;
    --primary-1-dark: #e64a4a;
    --primary-2-light: #6dded6;
    --primary-2-dark: #3aaba3;
    --primary-3-light: #ffffff;
    --primary-3-dark: #e5f0e5;
    --primary-4-light: #ffad62;
    --primary-4-dark: #e07e20;
    --primary-5-light: #8c85ff;
    --primary-5-dark: #5048cc;
    
    /* Font sizes */
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    
    /* Spacing */
    --spacing-base: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--primary-3);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #222;
}

a {
    color: var(--primary-5);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-5-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.btn-secondary {
    background-color: var(--primary-5);
    border-color: var(--primary-5);
}

.btn-secondary:hover {
    background-color: var(--primary-5-dark);
    border-color: var(--primary-5-dark);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: var(--font-size-xl);
}

.nav-link {
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-1);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: var(--spacing-2xl) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--font-size-4xl);
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: var(--font-size-lg);
}

/* About Section */
.about-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-feature {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-2);
    margin-bottom: 1rem;
}

.about-feature-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--primary-3-light);
}

.service-item {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    color: var(--primary-1);
}

.service-desc {
    margin-bottom: 1rem;
}

.service-features {
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-5);
}

/* Features Section */
.features-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.feature-item {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-4);
    margin-bottom: 1rem;
}

.feature-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--primary-3-light);
}

.price-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.price-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
    border: 2px solid var(--primary-1);
    transform: scale(1.05);
}

.price-name {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    color: var(--primary-1);
}

.price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-5);
}

.price-features {
    margin-bottom: 1.5rem;
}

.price-features li {
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.team-member {
    margin-bottom: 2rem;
    text-align: center;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-2);
}

.team-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-1);
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--primary-3-light);
}

.review-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.coreinfo-item {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--primary-3-light);
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
    font-size: 2.5rem;
    color: var(--primary-4);
    margin-bottom: 1rem;
}

.coreinfo-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--primary-3-light);
}

.contact-form {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    margin-bottom: 1rem;
}

.form-check {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.blog-item {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--primary-3-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-1);
    background-color: white;
    box-shadow: none;
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-contact {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

#site-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Decorative Elements */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

.floating-balloon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Breadcrumb Styling */
.breadcrumb-section {
    padding: 1rem 0;
    background-color: var(--primary-3-light);
}

.breadcrumb {
    margin-bottom: 0;
} 