/* Base Styles */
:root {
    --primary-color: #94C9A9;
    --primary-dark: #7AB391;
    --primary-light: #B8DBBE;
    --secondary-color: #F6BD60;
    --secondary-dark: #E5A84D;
    --secondary-light: #FFCF8B;
    --accent-color: #F28482;
    --accent-dark: #E16665;
    --accent-light: #F7A09E;
    --neutral-dark: #2D3047;
    --neutral-medium: #4F5375;
    --neutral-light: #7C80A9;
    --background-light: #F5F7FA;
    --background-medium: #E9ECF2;
    --background-dark: #D0D5E0;
    --text-dark: #333340;
    --text-medium: #666677;
    --text-light: #FFFFFF;
    --shadow-soft: rgba(149, 157, 165, 0.15);
    --shadow-medium: rgba(149, 157, 165, 0.3);
    --shadow-hard: rgba(149, 157, 165, 0.5);
    --border-radius-small: 8px;
    --border-radius-medium: 15px;
    --border-radius-large: 25px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
}

/* Typography */
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Neuromorphism Styles */
.neumorph-card {
    background: var(--background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: 
        10px 10px 20px var(--shadow-soft),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.neumorph-card:hover {
    box-shadow: 
        12px 12px 24px var(--shadow-medium),
        -12px -12px 24px rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

.neumorph-input, 
.neumorph-textarea, 
.neumorph-select {
    background: var(--background-medium);
    border: none;
    border-radius: var(--border-radius-small);
    box-shadow: 
        inset 5px 5px 10px var(--shadow-medium),
        inset -5px -5px 10px rgba(255, 255, 255, 0.7);
    transition: all var(--transition-medium);
    padding: var(--spacing-md);
}

.neumorph-input:focus, 
.neumorph-textarea:focus {
    box-shadow: 
        inset 7px 7px 14px var(--shadow-medium),
        inset -7px -7px 14px rgba(255, 255, 255, 0.8);
    outline: none;
}

/* Button Styles */
.button {
    font-weight: 600;
    border-radius: var(--border-radius-large);
    box-shadow: 
        5px 5px 10px var(--shadow-soft),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
}

.button:hover, 
.button:focus {
    transform: translateY(-3px);
    box-shadow: 
        7px 7px 14px var(--shadow-medium),
        -7px -7px 14px rgba(255, 255, 255, 0.9);
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 
        3px 3px 6px var(--shadow-soft),
        -3px -3px 6px rgba(255, 255, 255, 0.7);
}

.button.is-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.button.is-primary:hover {
    background-color: var(--primary-dark);
}

.button.is-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.button.is-secondary:hover {
    background-color: var(--secondary-dark);
}

.button.is-accent {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.button.is-accent:hover {
    background-color: var(--accent-dark);
}

/* Layout & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

/* Header & Navigation */
.header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar {
    background-color: transparent;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.navbar-item {
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all var(--transition-fast);
}

.navbar-item:hover {
    color: var(--primary-color);
}

.navbar-burger {
    color: var(--text-dark);
}

.navbar-menu.is-active {
    box-shadow: 0 8px 16px var(--shadow-medium);
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero.is-fullheight {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-body {
    z-index: 2;
    position: relative;
    padding: var(--spacing-xxl) 0;
}

.hero-body .title,
.hero-body .subtitle,
.hero-body p {
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-body .buttons {
    margin-top: var(--spacing-lg);
}

/* About Section */
.about-section {
    background-color: var(--background-light);
}

.about-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 
        10px 10px 20px var(--shadow-soft),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

/* Card Styles */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    background: var(--background-light);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        10px 10px 20px var(--shadow-medium),
        -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--spacing-lg);
    text-align: center;
}

.card-content .title {
    margin-bottom: var(--spacing-sm);
}

.card-content .subtitle {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

.card-content p {
    flex-grow: 1;
    margin-bottom: var(--spacing-lg);
}

.card-footer {
    border-top: 1px solid var(--background-medium);
    padding: var(--spacing-md);
}

/* News Section */
.news-section {
    background-color: var(--background-medium);
}

.news-date {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

/* Team Section */
.team-section {
    background-color: var(--background-light);
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: var(--spacing-md);
}

.team-member-social {
    margin-top: var(--spacing-sm);
}

.team-member-social a {
    margin: 0 var(--spacing-xs);
    color: var(--text-medium);
    transition: color var(--transition-fast);
}

.team-member-social a:hover {
    color: var(--primary-color);
}

/* Events Section */
.events-section {
    background-color: var(--background-medium);
}

.event-item {
    display: flex;
    margin-bottom: var(--spacing-lg);
}

.event-date {
    flex: 0 0 100px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--border-radius-small);
    padding: var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: var(--spacing-lg);
    box-shadow: 
        5px 5px 10px var(--shadow-soft),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: var(--spacing-xs);
}

.event-details .location {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--background-light);
}

.gallery-item {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background-color: var(--background-light);
}

.contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-form .field {
    margin-bottom: var(--spacing-md);
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

/* Careers Section */
.careers-section {
    background-color: var(--background-medium);
}

.job-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    background-color: var(--background-light);
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.job-title {
    margin-bottom: var(--spacing-sm);
}

.job-description {
    margin-bottom: var(--spacing-md);
}

/* Statistics Section */
.statistics-section {
    background-color: var(--background-light);
}

.statistic-widget {
    text-align: center;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.statistic-icon {
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 64px;
    height: 64px;
}

.statistic-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

/* Testimonials */
.testimonial {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    background-color: var(--background-light);
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--text-dark);
    padding: var(--spacing-xl) 0;
}

.footer-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--shadow-soft);
    text-align: center;
}

.footer-social {
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: inline-block;
    margin: 0 var(--spacing-xs);
    color: var(--text-dark);
    transition: color var(--transition-fast);
    font-weight: bold;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-legal {
    margin-top: var(--spacing-sm);
}

.footer-legal a {
    color: var(--text-dark);
    margin: 0 var(--spacing-xs);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xxl);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
    padding-top: 100px;
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Styles */
.bg-light {
    background-color: var(--background-light);
}

.bg-medium {
    background-color: var(--background-medium);
}

.bg-dark {
    background-color: var(--background-dark);
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-medium {
    color: var(--text-medium) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
    margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
    margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
    margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
    margin-bottom: var(--spacing-xl) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--spacing-xs) !important;
}

.mt-2 {
    margin-top: var(--spacing-sm) !important;
}

.mt-3 {
    margin-top: var(--spacing-md) !important;
}

.mt-4 {
    margin-top: var(--spacing-lg) !important;
}

.mt-5 {
    margin-top: var(--spacing-xl) !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: var(--spacing-xs) !important;
}

.pb-2 {
    padding-bottom: var(--spacing-sm) !important;
}

.pb-3 {
    padding-bottom: var(--spacing-md) !important;
}

.pb-4 {
    padding-bottom: var(--spacing-lg) !important;
}

.pb-5 {
    padding-bottom: var(--spacing-xl) !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: var(--spacing-xs) !important;
}

.pt-2 {
    padding-top: var(--spacing-sm) !important;
}

.pt-3 {
    padding-top: var(--spacing-md) !important;
}

.pt-4 {
    padding-top: var(--spacing-lg) !important;
}

.pt-5 {
    padding-top: var(--spacing-xl) !important;
}

.rounded {
    border-radius: var(--border-radius-medium) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-large) !important;
}

.rounded-sm {
    border-radius: var(--border-radius-small) !important;
}

.shadow {
    box-shadow: 
        8px 8px 16px var(--shadow-soft),
        -8px -8px 16px rgba(255, 255, 255, 0.8) !important;
}

.shadow-lg {
    box-shadow: 
        10px 10px 20px var(--shadow-medium),
        -10px -10px 20px rgba(255, 255, 255, 0.9) !important;
}

.shadow-sm {
    box-shadow: 
        4px 4px 8px var(--shadow-soft),
        -4px -4px 8px rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--background-light);
    }
}

@media screen and (max-width: 768px) {
    .event-item {
        flex-direction: column;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
        width: 100px;
    }
    
    .statistic-widget {
        margin-bottom: var(--spacing-lg);
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

/* Special Element Styles */
.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: var(--spacing-xs);
    transition: transform var(--transition-fast);
    display: inline-block;
}

.read-more:hover:after {
    transform: translateX(5px);
}

.accordion-item {
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: 
        5px 5px 10px var(--shadow-soft),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.accordion-header {
    padding: 0;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: var(--spacing-md);
    background-color: var(--background-light);
    border: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-button:after {
    content: '+';
    position: absolute;
    right: var(--spacing-md);
    transition: transform var(--transition-fast);
}

.accordion-button.is-active:after {
    content: '-';
}

.accordion-content {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion-content.is-active {
    padding: var(--spacing-md);
    max-height: 500px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form .input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1;
}

.newsletter-form .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-light);
    padding: var(--spacing-md);
    box-shadow: 0 -5px 10px var(--shadow-soft);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content .button {
        margin-top: var(--spacing-md);
    }
}
.navbar-burger{
    display: none;
}