@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: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #6A67EC, #6A67EC);
}

.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;
    }

    .navbar ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white; /* Change mobile menu background to white */
        flex-direction: column;
        width: 100%;
        text-align: right;
        padding-right: 20px;
        left: 50%;
        transform: translateX(-50%)
    }

    .navbar ul li {
        margin: 15px 0;
    }

    .navbar ul.show {
        display: flex;
    }

    .navbar ul li a {
        color: #68CAF2; /* Change link color to black for better visibility on white background */
    }
}

/* Hero Section */
.hero {
    height: 83vh;
    width: 100%;
    background: linear-gradient(135deg, #6A67EC, #6A67EC);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  /* Slide Image */
  .hero img {
    width: 100%;
    height: auto;
    max-width: 1200px; /* limits large image from stretching too much */
    display: block;
  }
  
  /* Responsive: Mobile */
  @media (max-width: 600px) {
    .hero img {
      max-width: 95%;
    }
  }

.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; */
    

  }
  

/* 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 img {
        width: 100px; /* Adjust for smaller screens */
    }
}

/* 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: 1000;
}

.fab:hover {
    background-color: #db8db3;
}

.whatsapp-button {
    position: fixed;
    bottom: 70px; /* Adjusted to be above the footer */
    right: 90px; /* Slightly moved to the left from fab */
    background-color: #25D366;
    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: 1000;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.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: 1px solid #e1e1e1;
    z-index: 1000;
}



.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, .whatsapp-button {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .dark-mode-toggle {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .logo-container img {
        width: 100px;
    }
}

