@charset "UTF-8";
/* CSS Document */
 * {
            margin: 10;
            padding: 0;
            box-sizing: border-box;
	 		text-decoration: none;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #4D4846;
            color: #ffffff;
            line-height: 1.6;
            padding-top: 60px;
            padding-bottom: 80px;
        }

        /* Page Transitions */
        .page {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .page.active {
            display: block;
            opacity: 1;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(77, 72, 70, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            padding: 5px 15px;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 20px;
        }

        .nav-menu a {
            color: #00ACE8;
            text-decoration: none;
            position: relative;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #f4804e;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f4804e;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(77, 72, 70, 0.95);
            backdrop-filter: blur(10px);
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            padding: 10px 0;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            color: #00ACE8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background-color: rgba(0, 172, 232, 0.1);
            color: #f4804e;
        }

        .social-logo {
            height: 30px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #00ACE8;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(77, 72, 70, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .dropdown-content {
                position: static;
                display: block;
                background: transparent;
                box-shadow: none;
                padding-left: 20px;
            }
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: calc(100vh - 160px);
        }
 	.highlighted-text {
            background: linear-gradient(90deg,rgba(153, 119, 61, 1) 0%, rgba(184, 178, 178, 1) 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
	.highlighted-text a {
            text-decoration: none;
        }

 /* Index Page - Two Columns */
        .two-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .two-columns .column img {
            width: 100%;
            max-width: 400px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .two-columns .column img:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .two-columns .column video {
            width: 100%;
            max-width: 400px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 2px solid #00ACE8;
            background-color: #000;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .two-columns .column video:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 172, 232, 0.3);
            border-color: #f4804e;
        }

        /* Three Columns Layout */
        .three-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .three-columns .column {
            text-align: center;
            max-width: 350px;
            margin: 0 auto;
        }

        .three-columns .column img {
            width: 100%;
            max-width: 280px;
            height: 350px;
            object-fit: cover;
            object-position: center top;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .three-columns .column img:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 172, 232, 0.2);
            border-color: #00ACE8;
        }

        .three-columns .column video {
            width: 100%;
            max-width: 280px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 2px solid #00ACE8;
            background-color: #000;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .three-columns .column video:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 172, 232, 0.3);
            border-color: #f4804e;
        }

        .three-columns .column h2 {
            color: #00ACE8;
            margin-bottom: 15px;
            font-size: 1.6em;
            font-weight: bold;
        }

        .three-columns .column p {
            font-size: 1em;
            line-height: 1.7;
            text-align: justify;
            padding: 0 10px;
        }

        /* Generic column styles */
        .column {
            text-align: center;
        }

        .column h2 {
            color: #00ACE8;
            margin-bottom: 15px;
            font-size: 1.8em;
        }

        .column p {
            font-size: 1.1em;
            line-height: 1.8;
        }

        /* Three columns responsive behavior */
        @media (max-width: 900px) {
            .three-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .three-columns .column img {
                height: 280px;
            }
        }

        @media (max-width: 600px) {
            .three-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .three-columns .column img {
                height: 250px;
                max-width: 200px;
            }

            .three-columns .column video {
                height: 180px;
            }

            .three-columns .column h2 {
                font-size: 1.5em;
            }

            .three-columns .column p {
                font-size: 0.95em;
                text-align: center;
                padding: 0;
            }
        }
   /* Content Layouts */

        .content-left-text-right-image, .content-right-text-left-image {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            align-items: flex-start;
        }

        .content-left-text-right-image .content-text {
            flex: 1;
            order: 1;
			text-align: justify;
			text-decoration: none;
        }

        .content-left-text-right-image .content-image {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            order: 2;
        }

        .content-right-text-left-image .content-text {
            flex: 1;
            order: 2;
			text-align: justify;
			text-decoration: none;
        }

        .content-right-text-left-image .content-image {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            order: 1;
        }
		.content-right-text-left-image .content-image, .content-right-text-left-image .content-video {
            width: 400px;
			height:auto;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            order: 1;
        }
        /* Video specific styles */

        .content-video {
            background-color: #000;
            border: 1px solid #00ACE8;
        }

        .content-text h2 {
            color: #00ACE8;
            margin-bottom: 20px;
            font-size: 2em;
        }

        .content-text p {
            font-size: 1.1em;
            line-height: 1.8;
			text-decoration: none;
        }
		
 		.content-text a {
	 	text-decoration: none;
	 }

        /* Association Page */
        .association-content {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            align-items: flex-start;
        }

        .association-content img {
            width: 400px;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .association-text {
            flex: 1;
			text-align: justify;
        }

        .association-text h2 {
            color: #00ACE8;
            margin-bottom: 20px;
            font-size: 2em;
        }

        .association-text p {
            font-size: 1.1em;
            line-height: 1.8;
        }

        .separator {
            width: 100%;
            height: 2px;
            background-color: #00ACE8;
            margin: 40px 0;
        }

        .bottom-paragraph {
            font-size: 1.1em;
            line-height: 1.8;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .association-content, .content-left-text-right-image, .content-right-text-left-image {
                flex-direction: column;
            }

            .association-content img, .content-image {
                width: 100%;
            }

            .content-left-text-right-image .content-text,
            .content-left-text-right-image .content-image,
            .content-right-text-left-image .content-text,
            .content-right-text-left-image .content-image {
                order: unset;
            }
        }
            .association-content img {
                width: 100%;
            }

        /* Equipe Page */
        .team-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
        }

        .team-member {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 180px;
        }

        .team-member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid #00ACE8;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 15px;
        }

        .team-member-photo:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 172, 232, 0.3);
        }

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

        .team-member-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-member-name {
            color: #00ACE8;
            font-size: 1.1em;
            font-weight: bold;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .team-member-role {
            color: #ffffff;
            font-size: 0.9em;
            font-style: italic;
            line-height: 1.2;
        }
  		.team-member a{
            text-decoration: none; 
        }

        /* Slider */
        .slider-container {
            position: relative;
            max-width: 100%;
            margin: 40px 0;
            overflow: hidden;
            border-radius: 15px;
        }

        .slider {
            position: relative;
            height: 400px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .slide-content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .slide-content p {
            font-size: 1.2em;
            max-width: 600px;
            line-height: 1.6;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 2em;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-nav:hover {
            background: rgba(0, 172, 232, 0.8);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(77, 72, 70, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            padding: 15px 20px;
            text-align: center;
            font-size: 0.9em;
            color: #00ACE8;
        }

        footer a {
            color: #00ACE8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #f4804e;
        }

        @media (max-width: 768px) {
            footer {
                font-size: 0.7em;
                padding: 10px;
            }
        }

        /* Page Titles */
        .page-title {
            color: #00ACE8;
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
			text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }
/* Page Contact */

.contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
	margin-top: 10rem;
	
}

.contact-logo {
    width: 500px;
    height: auto;
    border-radius: 40%;
    margin-bottom: 1rem;
    object-fit: contain;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
}

.contact-info .phone {
    font-size: 1.5rem;
	color: white;
    margin-bottom: 1rem;
}

.email {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

.email:hover {
    color:#f4804e;
}

