/*
Theme Name: Dynamo
Theme URI:
Author: Julien Otis
Author URI: https://myballs.fun
Description: mon site
Version: 2.6
License: Copyright Julien Otis
License URI:
Tags: blog, portefolio, cv
Text Domain: monportefolio
Test de template
*/

/* General Styles */
/* style.css */

/* General Styles */
body {
    font-family: sans-serif; /* Choose a suitable font */
    line-height: 1.6;
    color: #333; /* Dark gray text */
    margin: 0; /* Remove default body margin */
}

a {
    color: #007bff; /* Blue links */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add some side padding */
}

/* Header Styles */
#fh5co-header {
    background-color: #f8f9fa; /* Light gray background for header */
    padding: 20px 0; /* Add padding top and bottom */
}

#fh5co-header-section .nav-header {
    display: flex;
    justify-content: space-between; /* Align logo and menu */
    align-items: center;
}

#fh5co-logo {
    font-size: 3rem;
    font-weight: bold;
}

.sf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.sf-menu li {
    margin-left: 20px; /* Spacing between menu items */
}

.sf-menu a {
    padding: 10px;
    color: #333;
}

.sf-menu li.active a, .sf-menu a:hover {
    color: #007bff; /* Highlight active/hovered menu item */
}

/* Hero Section */
.fh5co-hero {
    position: relative;
    height: 500px; /* Adjust as needed */
    overflow: hidden;
}

.fh5co-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.fh5co-cover {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.fh5co-hero .desc {
    color: white;
    text-align: center;
    display: flex; /* Use flexbox */
    justify-content: center;
    align-items: center;
    width: 100%; /* Make sure it takes full width */
    height: 100%; /* Make sure it takes full height */
}

.fh5co-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Schedule Section */
#fh5co-schedule-section {
    padding: 60px 0;
}

.schedule {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.schedule li {
    margin: 0 10px;
}

.schedule a {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
}

.schedule a.active, .schedule a:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.schedule-container .schedule-content {
    display: none; /* Hide all schedule content initially */
}

.schedule-container .schedule-content.active {

    display: block; /* Show active schedule content */
}

.program {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.program img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.program small {
    display: block;
    margin-bottom: 10px;
    color: #777;
}

.program h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.program span {
    color: #999;
}

/* Footer Styles */
#footer {
    background-color: #333;
    color: white;
    padding: 60px 0;
}

#footer h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
}

.contact-form .form-control {
    background-color: transparent;
    border: 1px solid #555;
    color: white;
}

.btn-send-message {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.copy-right {
    padding-top: 40px;
    border-top: 1px solid #555;
    text-align: center;
}

.fh5co-social-icons {
    margin-bottom: 20px;
}

.fh5co-social-icons a {
    margin: 0 10px;
    font-size: 1.2rem;
    color: white;
}

.fh5co-social-icons a:hover {
    color: #007bff;
}



/* Responsive Design - Adjust breakpoints as needed */
@media (max-width: 768px) {
    .sf-menu {
        flex-direction: column; /* Stack menu items vertically */
    }

    .sf-menu li {
        margin: 10px 0;
    }

    .fh5co-hero h2 {
        font-size: 2rem;
    }

    .program {
        text-align: left; /* Align program content to the left */
    }
    .program img {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        float: left; /* Make the image float left */
        margin-right: 15px; /* Add space between image and text */
    }
}
/* style.css (or your main CSS file) */

/* ... other styles ... */

/* Header Styles - Sleek Buttons */
.sf-menu a {
    padding: 10px 20px; /* Adjust padding as needed */
    color: #333; /* Text color */
    border: none; /* Remove default border */
    background-color: transparent; /* Transparent background */
    border-radius: 5px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transitions for all properties */
    font-weight: 500; /* Slightly bolder text */
    text-transform: uppercase; /* Optional: Make text uppercase */
    letter-spacing: 0.5px; /* Optional: Add letter spacing */
}

.sf-menu li.active a,
.sf-menu a:hover {
    color: #fff; /* White text on hover/active */
    background-color: #007bff; /* Blue background on hover/active */
    /* Add a subtle box-shadow on hover (optional) */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Optional: Style the "Toggle" button (if needed) */
.js-fh5co-nav-toggle {
    /* ... your toggle button styles ... */
    background: transparent;
    border: none;
    color: #333; /* Or a color that matches the logo */
    font-size: 20px; /* Adjust as needed */
    cursor: pointer;
}
.js-fh5co-nav-toggle:focus{
    outline: none;
}

.js-fh5co-nav-toggle i:nth-child(2){
    margin: 0 auto;
    width: 20px;
}
.js-fh5co-nav-toggle i:nth-child(3){
    margin-left: auto;
    width: 10px;
}



/* Responsive - Adjust button styles for smaller screens if needed */
@media (max-width: 768px) {
    .sf-menu a {
        padding: 8px 15px; /* Slightly smaller padding */
        font-size: 0.9rem; /* Slightly smaller font size */
    }
}
