/* Global Styles */
:root {
    --primary-color: #FF5B05;    /* Bright Orange */
    --secondary-color: #075056;   /* Aqua Green */
    --light-gray: #D3DCDE;       /* Cloud Grey */
    --dark-gray: #243037;        /* Charcoal Grey */
    --accent-color: #FF5B05;     /* Bright Orange */
    --gradient-start: #FF5B05;   /* Bright Orange */
    --gradient-end: #FF8F05;     /* Lighter Orange for gradient */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(36, 48, 55, 0.1);
    padding: 0.5rem 1rem;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
    padding: 0;
}

/* Logo */
.navbar-brand img {
    height: 80px;
    width: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Features Section */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

/* Team Section */
.team-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Team Member Images */
.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member-img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.team-image {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.team-image i {
    font-size: 5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.team-card:hover .team-image i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0.8rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 91, 5, 0.25);
}

/* Newsletter Section */
.newsletter-signup {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .lead {
        font-size: 1.3rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .activities h2 {
        font-size: 2rem;
    }
    
    .activities .lead {
        font-size: 1.1rem;
    }
    
    .activities-text {
        font-size: 1.2rem;
    }
    
    .activities-cta {
        font-size: 1.1rem;
    }
    
    .feature-card, .team-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .team-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Newsletter Status Messages */
.success-message {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(7, 80, 86, 0.1);
}

.error-message {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 91, 5, 0.1);
}

/* Shared Experiences Section */
.shared-experiences {
    background-color: white;
    overflow: hidden;
}

.shared-experiences-content {
    padding: 2rem 0;
}

.shared-experiences-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.shared-experiences-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.shared-experiences-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.shared-experiences-image {
    padding: 1rem;
    transition: transform 0.3s ease;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-experiences-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-height: 400px;
    width: auto;
    object-fit: cover;
}

.shared-experiences-image:hover img {
    transform: translateY(-5px);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.image-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
}

.image-item.large {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: white;
}

.image-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-item.large i {
    font-size: 4rem;
}

/* Activities Section */
.activities {
    background-color: var(--light-gray);
    position: relative;
}

.activities h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.activities .lead {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.activities-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.activities-cta {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
} 