/* Base Styles */
:root {
    /* Primary Colors - Split-complementary scheme */
    --primary-color: #0056b3;
    --secondary-color: #d4342c;
    --accent-color: #4ebe49;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    
    /* Glassmorphism Variables */
    --glassmorphism-bg: rgba(255, 255, 255, 0.15);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);
    --glassmorphism-shadow: rgba(0, 0, 0, 0.1);
    
    /* Darker Variations for Hover States */
    --primary-dark: #003d7a;
    --secondary-dark: #b32821;
    --accent-dark: #3ca539;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.button, 
button, 
input[type="submit"], 
input[type="button"] {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-transform: capitalize;
}

.button:hover, 
button:hover, 
input[type="submit"]:hover, 
input[type="button"]:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.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);
}

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

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

.button.is-medium {
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
}

.button.is-large {
    font-size: 1.25rem;
    padding: 0.9rem 2rem;
}

/* Read More Links */
.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    padding-right: 25px;
}

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

/* Glassmorphism Effects */
.glassmorphism {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glassmorphism-border);
    box-shadow: 0 8px 32px 0 var(--glassmorphism-shadow);
}

.glassmorphism-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    position: relative;
    overflow: hidden;
}

.glassmorphism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./image/texture-background.jpg') repeat;
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glassmorphism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 rgba(31, 38, 135, 0.25);
}

.glassmorphism-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2rem;
}

.glassmorphism-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2.5rem;
}

.glassmorphism-input, 
.glassmorphism-select select, 
.glassmorphism-button {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 12px 0 rgba(31, 38, 135, 0.15) !important;
    transition: all 0.3s ease !important;
}

.glassmorphism-input:focus, 
.glassmorphism-select select:focus {
    box-shadow: 0 8px 16px 0 rgba(31, 38, 135, 0.25) !important;
    border-color: var(--primary-color) !important;
}

.glassmorphism-button {
    transition: all 0.3s ease !important;
}

.glassmorphism-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px 0 rgba(31, 38, 135, 0.25) !important;
}

.glassmorphism-footer {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.7));
    color: var(--text-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1.5rem;
}

.glassmorphism-footer h3, 
.glassmorphism-footer a, 
.glassmorphism-footer strong {
    color: var(--text-light) !important;
}

.glassmorphism-footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    background: transparent;
}

.navbar-item {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: var(--primary-color);
    background-color: transparent !important;
}

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

.navbar-menu.is-active {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 0;
}

.hero.is-fullheight {
    min-height: 100vh;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-overlay.light-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.scroll-down {
    display: inline-block;
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: var(--text-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-content .heading {
    font-weight: 600;
    color: var(--primary-color);
}

/* Cards */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

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

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-subtitle {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.card-text {
    margin-bottom: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* News Section */
.news-item {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.news-item:hover img {
    transform: scale(1.03);
}

.news-item h3 {
    margin-bottom: 1rem;
}

.news-item p.date {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Sustainability Section */
.sustainability-item {
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sustainability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sustainability-item .icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Partners & Clientele */
.partners-grid, .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-item, .client-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-item:hover, .client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-item img, .client-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.partner-item:hover img, .client-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.25);
    outline: none;
}

/* Social Links in Footer */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateX(5px);
}

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

.success-content {
    max-width: 600px;
    padding: 3rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Cookie Consent */
#cookieConsent {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    text-align: center;
}

#cookieConsent a {
    color: #4a9df8;
}

#acceptCookies {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

#acceptCookies:hover {
    background-color: var(--primary-dark);
}

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

/* 3D Effects */
.card, .box, .glassmorphism-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

/* Card image container */
.image-container {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

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

/* High Contrast Text */
.has-text-white {
    color: #FFFFFF !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.title, .subtitle {
    color: #222222;
}

.glassmorphism-section .title, 
.glassmorphism-section .subtitle {
    color: #222222;
}

.parallax-bg .title,
.parallax-bg .subtitle {
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Microinteractions */
.pulse-effect {
    animation: pulse 0.5s 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.click-effect {
    animation: click 0.3s 1;
}

@keyframes click {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-marker {
        left: 15px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: 15px;
    }
    
    .partners-grid, .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners-grid, .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

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

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

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

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.5rem !important;
}

.p-2 {
    padding: 1rem !important;
}

.p-3 {
    padding: 1.5rem !important;
}

.p-4 {
    padding: 2rem !important;
}

.p-5 {
    padding: 3rem !important;
}
.button.is-primary {
    background-color: #00d1b2;
    border-color: transparent;
    color: #6f6666;
}