@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #000;
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    display: none;
}
/* Add these styles to the existing CSS file */



.video-nav, .audio-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-nav:hover, .audio-control:hover {
    background: rgba(255, 255, 255, 0.2);
}

.audio-control {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* Update existing styles */
.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

/* Add styles for the project section */
#project .project-title {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Add styles for the contact form */
.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-check-label {
    color: white;
}

.contact-form .btn-primary {
    background-color: #4CAF50;
    border: none;
}

.contact-form .btn-primary:hover {
    background-color: #45a049;
}


.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    position: relative;
}
.project-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    position: relative;
}
.parallax-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: #000;
}
.parallax-section .scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    padding-bottom: 20px;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    
    z-index: 10;
}
.video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.5s ease-out;
    transform: scale(1.1);
}

.parallax-video.active {
    opacity: 1;
    transform: scale(1);
}

/*.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}*/

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    top: 25%;
    transform: translateY(-50%);
}

.main-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background-color: #4CAF50;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.video-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.video-nav, .audio-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-nav:hover, .audio-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/*.audio-control {
    position: absolute;
    top: 20px;
    right: 20px;
}*/

.audio-control.active i {
    color: #4CAF50;
}

#bird-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}


.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    padding-top: 40px;
    padding-bottom: 20px;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    z-index: 10;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
}

/* Activites Section */
.activities-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
}

.activity-tab {
    position: relative;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-tab:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.activity-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.activity-logo i {
    font-size: 32px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-tab:hover .activity-logo {
    transform: translate(-50%, -20px) scale(1.2);
    background: #4CAF50;
}

.activity-content {
    position: relative;
    padding: 120px 20px 20px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.activity-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.activity-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    text-align: center;
}

.activity-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.activity-tab:hover .activity-content {
    opacity: 0;
    transform: translateY(-20px);
}

.activity-tab:hover .activity-image {
    opacity: 1;
    background-color: #fff;
}

/* Add overlay on hover */
.activity-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.activity-tab:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .activities-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-container {
        grid-template-columns: 1fr;
    }
    
    .activity-tab {
        min-height: 350px;
    }
}

/* Animation for scroll indicator */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
/* End Activites */
/* haute-couture */

#haute-couture {
    background-color: #800080;
    color: #fff;
}
.logo-container {
    width: 500px; /* Adjust as needed */
    height: 400px;
    perspective: 1000px; /* Essential for 3D effect */
}
.logo-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
}
.logo-container:hover .logo-flipper {
    transform: rotateY(180deg);
}
.logo-front, .logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.logo-back {
    transform: rotateY(180deg);
}
.logo-front img, .logo-back img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* End haute-couture */
/* Video Section */
#project {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#project-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.project-title {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
  text-align: left;
  padding: 0;
}

.project-title span {
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .project-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 2.5rem;
  }
}


/* End Video Section */
/* About Section */
.section {
    background-color: #000000;
    color: #ffffff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-grid {
    width: 100%;
}

.about-header {
    padding: 40px;
}

.about-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.discover {
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
}

.stats-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:nth-child(2n) {
    border-right: none;
}

.stat-box:nth-child(3),
.stat-box:nth-child(4) {
    border-bottom: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-style: italic;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 3rem;
    }
}
/* End About Section */
/* Contact Section */
#contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    color: #ffffff;
    position: relative;
}

.contact-email {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: -1px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.activities-containers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.activity-tabs {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-tabs:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}
.activity-contents {
    position: relative;
    padding: 25px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.activity-contents p{
  margin-bottom: 0px;
  font-weight: 400;
  text-align: left;
}
.activity-contents h3{
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 600;
}
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: auto;
    justify-content: center;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-email {
        font-size: 3rem;
    }

    .nav-links {
        gap: 2rem;
        margin-bottom: 10vh;
    }

    .social-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-email {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }
}
/* End Contact Section */
.progress-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.progress-dot.active {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.progress-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.progress-dot:hover .progress-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .project-title {
        font-size: 2rem;
    }

    .progress-indicator {
        display: none;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}
/* News CSS */
.image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: visible;
    padding: 60px 0;
}

.slider-track {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 65%;
    max-width: 600px;
    height: 400px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide.prev, .slide.next {
    opacity: 0.6;
    pointer-events: auto;
}

.slide.prev {
    transform: translateX(-55%);
}

.slide.next {
    transform: translateX(55%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.slide.active .slide-inner {
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0) 100%);
    color: white;
}

.slide-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.slide-content p {
    font-size: 16px;
    opacity: 0.8;
}

.slider-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.prev-btn, .next-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

@media (max-width: 1024px) {
    .slide {
        width: 80%;
    }
    
    .slide.prev {
        transform: translateX(-45%);
    }
    
    .slide.next {
        transform: translateX(45%);
    }
}

@media (max-width: 768px) {
    .slide {
        width: 90%;
    }
    
    .slide.prev {
        transform: translateX(-55%);
    }
    
    .slide.next {
        transform: translateX(55%);
    }
}
/* Updated styles for the news popup */
.news-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(112 112 112 / 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-popup.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.news-popup-content {
  background-color: #000;
  margin: 20px;
  padding: 0;
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  height: 95%;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-popup.show .news-popup-content {
  transform: scale(1);
}

.news-popup-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 40px;
}

.close-popup {
  position: absolute;
  top: 5px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.close-popup:hover,
.close-popup:focus {
  color: #000;
}

#popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#popup-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

#popup-description {
  color: #ffffff;
  line-height: 1.8;
  font-size: 16px;
}

#popup-description p {
  margin-bottom: 15px;
}

/* Scrollbar styles for webkit browsers */
.news-popup-scroll::-webkit-scrollbar {
  width: 8px;
}

.news-popup-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.news-popup-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.news-popup-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive styles */
@media (max-width: 768px) {
  .news-popup-content {
    width: 95%;
    height: 95%;
  }

  .news-popup-scroll {
    padding: 30px;
  }

  #popup-title {
    font-size: 24px;
  }

  #popup-description {
    font-size: 14px;
  }
}


.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: row; /* Keep the row direction */
  }

  .footer-left, .footer-right {
    flex: 1; /* Adjust flex to maintain layout */
  }

  .footer-nav {
    justify-content: flex-end; /* Keep links aligned to the right */
  }

  .footer-link {
    margin-left: 0.5rem; /* Reduce margin for smaller screens */
    font-size: 0.8rem; /* Slightly reduce font size if needed */
  }
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column; /* Stack vertically on very small screens */
    align-items: flex-start;
  }

  .footer-left, .footer-right {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 1rem;
    justify-content: center;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-link {
    margin-left: 0;
    margin-right: 0.5rem;
  }
}

#canvas {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}