@font-face {

    font-family: 'Compagnon';

    src: url('../fonts/compagnon/fonts/Compagnon-Bold.otf') format('opentype');

    font-weight: bold;

    font-style: normal;

}



@font-face {

    font-family: 'GothamRounded';

    src: url('../fonts/gotham-rounded/GothamRnd-Book.otf') format('opentype');

    font-weight: normal;

    font-style: normal;

}



@font-face {

    font-family: 'GothamRounded';

    src: url('../fonts/gotham-rounded/GothamRnd-Medium.otf') format('opentype');

    font-weight: 500;

    font-style: normal;

}



@font-face {

    font-family: 'GothamRounded';

    src: url('../fonts/gotham-rounded/GothamRnd-Bold.otf') format('opentype');

    font-weight: bold;

    font-style: normal;

}

  



body {

    font-family:  'GothamRounded';

    margin: 0;

    padding: 0;

    background-color: #f0f0f0;

    color: #68CAF2;

    overflow-x: hidden;

}





h1, h2, h3 {

    font-family: 'Compagnon';

    font-weight: bold;

    text-align: center;

    font-size: 2.5rem;

    

  }

  

  em, i {

    font-family: 'GothamRounded';

  }

  

  p.light {

    font-family: 'GothamRounded';

  }

  

  em {

    font-family: 'GothamRounded';

  }



  a {

    color: inherit;         /* or use brand color */

    text-decoration: none;  /* remove underline */

  }

  a:hover {

    text-decoration: underline; /* Optional: for hover effect */

    color: #EC93BE;

  }



.dark-mode {

    background-color: #121212; /* Dark background */

    color: #ffffff; /* Change font color to white */

}



.about-container {

    max-width: 1200px;

    margin: 40px auto;

    padding: 20px;

    /* display: grid

; */

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 20px;

}



/* Navigation menu */

.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    /* background-color: #EC93BE; Change navbar background to black */

    padding: 10px 20px;

    position: sticky; /* Make the navbar sticky */

    top: 0; /* Stick to the top */

    z-index: 1000;

    box-shadow: none;

    background: linear-gradient(135deg, #6A67EC, #6A67EC);

}

/* Responsive: Mobile */

@media (max-width: 600px) {

    .navbar {

        padding: 10px 15px;

    }

    .navbar ul li a {

        font-size: 0.95rem;

    }

}

/* Responsive: Tablet */

@media (min-width: 601px) and (max-width: 1024px) {

    .navbar {

        padding: 10px 18px;

    }

}



.navbar .logo {

    font-size: 1.5rem;

    font-weight: bold;

    color: white; /* Logo color */

}



.navbar ul {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    gap: 15px;

    align-items: center; /* Align items vertically in the menu */

    font-style: italic;

}



.navbar ul li {

    margin: 0;

}



.navbar ul li a {

    color: white; /* Change text color to white in dark mode */

    text-decoration: none;

    font-size: 1rem;

    padding: 8px 12px;

    transition: background-color 0.3s;

}



.navbar ul li a:hover {

    background-color: rgba(255, 255, 255, 0.2);

    border-radius: 4px;

}



/* Dark mode toggle button */

.dark-mode-toggle {

    background-color: transparent;

    border: 1px solid white; /* Border color in dark mode */

    padding: 5px 10px;

    border-radius: 20px;

    cursor: pointer;

    transition: background-color 0.3s;

}



.dark-mode-toggle:hover {

    background-color: rgba(255, 255, 255, 0.1);

}



/* Hamburger menu for mobile */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger div {

    width: 25px;

    height: 3px;

    background-color: white; /* Hamburger icon color */

    margin: 4px 0;

}



/* Mobile menu */

@media (max-width: 768px) {

    .hamburger {

        display: flex;

        z-index: 1001;

    }



    .navbar ul {

        display: none;

        position: fixed;

        top: 60px;

        left: 0;

        right: 0;

        background-color: white; /* Change mobile menu background to white */

        flex-direction: column;

        width: 100%;

        max-width: 100vw;

        box-sizing: border-box;

        text-align: left;

        padding: 20px;

        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

        max-height: calc(100vh - 60px);

        overflow-y: auto;

        z-index: 1001;

    }



    .navbar ul li {

        margin: 10px 0;

        width: 100%;

    }



    .navbar ul.show {

        display: flex;

    }



    .navbar ul li a {

        color: #68CAF2; /* Change link color to black for better visibility on white background */

        font-size: 1rem;

        padding: 12px 20px;

        display: block;

        width: 100%;

        box-sizing: border-box;

    }

}



/* Hero Section */
.hero {

    height: 100vh;

    min-height: 100vh;

    width: 100%;

    background: linear-gradient(135deg, #6A67EC, #6A67EC);

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    padding: 0;

  }

  

  /* Slide Image */

  .hero img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

  }

  

  /* Responsive: Mobile */

  @media (max-width: 600px) {

    .hero {

      height: 100svh;

      min-height: 100svh;

      padding: 0;

    }

  }

  

  /* Responsive: Tablet */

  @media (min-width: 601px) and (max-width: 1024px) {

    .hero {

      height: 100vh;

      min-height: 100vh;

      padding: 0;

    }

  }



.hero h1, .hero p, .hero .cta-button {

    z-index: 1; /* Ensure the text and button stay on top of the video */

    /* animation: fadeIn 2s ease-out; */

}



.bg-video {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 0;

}



.hero h1 {

    font-size: 3rem;

    margin: 0 0 10px 0;

}



.hero p {

    font-size: 1.2rem;

    margin-bottom: 20px;

}



.hero .cta-button {

    background-color: #21201E;

    color: white;

    padding: 12px 25px;

    border-radius: 25px;

    cursor: pointer;

    transition: background-color 0.3s, transform 0.3s;

}



.hero .cta-button:hover {

    background-color: #00796b;

    transform: scale(1.05);

}



@keyframes fadeIn {

    from { opacity: 0; transform: translateY(20px); }

    to { opacity: 1; transform: translateY(0); }

}





.about-container {

    max-width: 900px;

    margin: 20px auto;

    padding: 40px;

   

    border-radius: 16px;

    box-shadow: 0 4px 20px rgba(0,0,0,0.05);

    

    color: #EC93BE;

    text-align: justify;

    

  }

  

  .description {

    margin-top: -61px;

}

  .description h2 {

    /* margin-bottom: 20px; */

    color: #68CAF2;

    text-shadow: 1px 0 #55c9f4, -1px 0 #55c9f4, 0 1px #55c9f4, 0 -1px #55c9f4, 1px 1px #55c9f4, -1px -1px #55c9f4, 1px -1px #55c9f4, -1px 1px #55c9f4;

  }

  

  .description p {

    font-size: 18px;

    line-height: 1.6;

    /* margin-bottom: 20px; */

    

    

  }

  

  /* Responsive: Mobile */

  @media (max-width: 600px) {

    .about-container {

      padding: 20px;

      margin: 20px 10px;

    }

    .description {

      margin-top: 0;

    }

    .description h2 {

      font-size: 1.8rem;

      margin-bottom: 15px;

    }

    .description p {

      font-size: 16px;

      line-height: 1.5;

    }

  }

  

  /* Responsive: Tablet */

  @media (min-width: 601px) and (max-width: 1024px) {

    .about-container {

      padding: 30px;

      margin: 30px 20px;

    }

    .description h2 {

      font-size: 2.2rem;

    }

    .description p {

      font-size: 17px;

    }

  }

  

/* Logo styles */

.logo-container {

    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 1000;

}



.logo-container img {

    width: 150px;

    height: auto;

}



@media (max-width: 600px) {

    .logo-container {

      top: 10px;

      left: 10px;

    }

    .logo-container img {

        width: 80px; /* Adjust for smaller screens */

    }

}

/* Responsive: Tablet */

@media (min-width: 601px) and (max-width: 1024px) {

    .logo-container img {

        width: 120px;

    }

}



/* Container and Projects */

.container {

    max-width: 1200px;

    margin: 40px auto;

    /* padding: 20px; */

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 20px;

}



.project {

    background: white;

    border-radius: 12px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    overflow: hidden;

    transition: transform 0.3s, box-shadow 0.3s;

    cursor: pointer;

    display: flex;

    flex-direction: column;

}



.project:hover {

    transform: translateY(-5px);

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);

}



.project img {

    width: 100%;

    height: 200px;

    object-fit: cover;

    transition: transform 0.3s;

}



.project:hover img {

    transform: scale(1.05);

}



.project-content {

    padding: 15px;

}



.project-header {

    margin: 0;

    font-size: 1.4em;

    color: #333;

}



.project-label {

    font-size: 0.9em;

    color: #777;

    margin-top: 5px;

}



.buttons {

    margin-top: 10px;

    display: flex;

    justify-content: space-between;

    gap: 10px;

}



.buttons a {

    flex: 1;

    text-align: center;

    padding: 10px 0;

    color: white;

    border-radius: 8px;

    text-decoration: none;

    font-size: 0.9em;

    transition: background-color 0.3s;

}



.buttons a.visit {

    background-color: #00796b;

}



.buttons a.watch {

    background-color: #d32f2f;

}



.buttons a.download {

    background-color: #21201E;

}



.buttons a:hover {

    opacity: 0.8;

}



/* Floating Buttons */

.fab {

    position: fixed;

    bottom: 70px; /* Adjusted to be above the footer */

    right: 20px;

    background-color: #EC93BE;

    color: white;

    border: none;

    border-radius: 50%;

    width: 50px;

    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    transition: background-color 0.3s;

    z-index: 1200;

}



.fab:hover {

    background-color: #db8db3;

}




.sticky-footer .social-icon {

    margin: 0 10px;

    color: #EC93BE;

    font-size: 20px;

    transition: color 0.3s;

}



/* Sticky Footer */

.sticky-footer {

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #6A67EC;

    padding: 10px 0;

    text-align: center;

    border-top: none;

    z-index: 1100;

}







.sticky-footer .social-icon:hover {

    color: #007bff;

}



/* Adjust body padding to prevent overlap with sticky footer */

body {

    padding-bottom: 60px;

}



/* Back-to-top button positioning */

.back-to-top {

    position: fixed;

    bottom: 80px;

    right: 20px;

    z-index: 1100;

}



/* Media Queries for Hero Section */

@media (max-width: 600px) {

    .hero h1 {

        font-size: 2rem;

    }



    .hero p {

        font-size: 1rem;

    }



    .hero .cta-button {

        padding: 10px 20px;

        font-size: 0.9rem;

    }



    .fab {

        bottom: 20px;

        right: 20px;

        width: 45px;

        height: 45px;

        font-size: 20px;

        z-index: 1200;

    }



    .dark-mode-toggle {

        top: 10px;

        right: 10px;

        padding: 8px 12px;

        font-size: 14px;

    }



    .logo-container img {

        width: 80px;

    }

}

/* Responsive: Tablet */

@media (min-width: 601px) and (max-width: 1024px) {

    .fab {

        width: 48px;

        height: 48px;

        font-size: 22px;

        z-index: 1200;

    }

}



