@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 120px;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    color: #fff;
}

.logo p {
    font-size: 12px;
    color: #999;
}

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

nav .menu li {
    margin: 0 10px;
}

nav .menu li a {
    color: #999;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    transition: color 0.3s, font-size 0.3s;
}

nav .menu li a:hover {
    color: #fff;
    font-size: 17px;
}

nav .menu li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #fff;
    border-radius: 6px;
    transition: width 0.3s;
}

nav .menu li a:hover::before {
    width: 100%;
}

.toggle-menu {
    display: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
}

.toggle-menu::before,
.toggle-menu::after {
    width: 100%;
    max-width: 30px;
    height: 4px;
    object-fit: cover;
    border-radius: 200px;
    content: "";
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s;
    top: 30px;
    right: 10px;
}

.toggle-menu::before {
    transform: translateY(-8px);
    box-shadow: 0 8px 0 #fff;
}

.toggle-menu::after {
    transform: translateY(8px);
}

.toggle-menu.active::before {
    transform: translateY(0) rotate(-45deg);
    box-shadow: none;
}

.toggle-menu.active::after {
    transform: translateY(0) rotate(45deg);
}

.hero-section {
    min-height: 50vh;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 16px;
    color: #999;
    max-width: 600px;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 12px 24px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background-color: #e63939;
    transform: scale(1.05);
}

.intro-section, .team-section, .photobooth-section, .join-section {
    padding: 40px 5%;
    min-height: 50vh;
}

.intro-section h2, .team-content h1, .photobooth-content h1, .join-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

hr {
    width: 80px;
    height: 4px;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    margin: 15px 0;
}

.team-content p, .photobooth-hero p, .join-text p {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #999;
}

.voir-plus-btn {
    padding: 8px 16px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.voir-plus-btn:hover {
    background-color: #ccc;
    transform: scale(1.05);
}

.photobooth-hero {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.photobooth-hero img {
    width: 50%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.photobooth-features h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.photobooth-features ul {
    list-style: none;
    font-size: 14px;
    color: #999;
}

.photobooth-features ul li {
    margin-bottom: 10px;
}

.photobooth-features ul li strong {
    color: #fff;
}

.photobooth-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.photobooth-gallery img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.photobooth-testimonials h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.join-text {
    text-align: center;
    margin-top: 30px;
}

.contact-form {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.contact-form h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.google-form-btn {
    display: block;
    padding: 10px 18px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    transition: background-color 0.3s, transform 0.3s;
    margin: 10px auto;
}

.google-form-btn:hover {
    background-color: #ccc;
    transform: scale(1.05);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    color: #fff;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 14px;
    color: #999;
}

.footer {
    background-color: #000;
    padding: 25px 0;
    text-align: center;
}

.footer-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    transition: transform 0.3s;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

.footer p {
    font-size: 12px;
    color: #999;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.linkedin-logo:hover .social-icon,
.site-logo:hover .social-icon {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 600px) {
    header {
        padding: 0 3%;
    }

    nav .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    nav .menu.responsive {
        display: flex;
    }

    .toggle-menu {
        display: flex;
    }

    .hero-section, .intro-section, .team-section, .photobooth-section, .join-section {
        padding: 30px 3%;
    }

    .hero-section h1, .team-content h1, .photobooth-content h1, .join-content h1 {
        font-size: 20px;
    }

    .hero-section p, .team-content p, .photobooth-hero p, .join-text p, .testimonial p {
        font-size: 12px;
    }

    hr {
        width: 60px;
        height: 3px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .photobooth-hero {
        flex-direction: column;
    }

    .photobooth-hero img {
        width: 100%;
    }

    .photobooth-gallery img {
        width: 100%;
    }

    .contact-form {
        padding: 20px;
        margin: 30px auto;
    }

    .footer-gallery img {
        width: 80px;
        height: 80px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    header {
        padding: 0 5%;
    }

    .hero-section h1, .team-content h1, .photobooth-content h1, .join-content h1 {
        font-size: 26px;
    }

    hr {
        width: 90px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .photobooth-hero img {
        width: 45%;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    header {
        padding: 0 8%;
    }

    .hero-section h1, .team-content h1, .photobooth-content h1, .join-content h1 {
        font-size: 28px;
    }

    hr {
        width: 100px;
    }
}

@media (min-width: 1201px) {
    header {
        padding: 0 10%;
    }

    .hero-section h1, .team-content h1, .photobooth-content h1, .join-content h1 {
        font-size: 30px;
    }

    hr {
        width: 120px;
        height: 5px;
    }
}
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btn {
    padding: 12px 24px;
    background-color: #e63946;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background-color: #d32f3f;
    transform: scale(1.05);
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 200px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.services-preview {
    padding: 40px 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.testimonial-highlight {
    padding: 40px 5%;
    text-align: center;
}

.testimonial-highlight .testimonial {
    max-width: 600px;
    margin: 0 auto 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.cta-section {
    padding: 40px 5%;
    background-color: #000000;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sticky Footer Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    background-color: #2a2a2a;
    padding: 25px 0;
    text-align: center;
    color: #999;
}

.footer-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    transition: transform 0.3s;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

.footer p {
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.linkedin-logo:hover .social-icon,
.site-logo:hover .social-icon {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .intro-features {
        flex-direction: column;
        align-items: center;
    }

    .service-card img {
        height: 120px;
    }

    .footer-gallery img {
        width: 80px;
        height: 80px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo-text {
    display: inline-block;
}
