@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* Header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Herotica', sans-serif;
    margin: 0;
    background-color: #111;
    color: white;
    background-image: url('...'); 
    background-size: 100%;
   
    
}

header {
  background-color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "open sans", sans-serif;
}

/* Logo text */
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
    font-family: "barlow-medium", "barlow", sans-serif;
}

/* Navigation menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a.active {
    color: #f25f5c; 
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content:center;
}


.hero-content h1 {  
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  color: white;
  
}

.hero-content-sub h1 {  
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content:center;
  color: white;
  
}

.hero-content-sub h2 {  
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 300; 
  display: flex;
  align-items: center;
  justify-content:center;
  text-align: center;
  color: grey;
  
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content-sub h1 {
    font-size: 1.5rem;
  }
  .hero-content-sub h2 {
    font-size: 1.5rem;
  }
}

/* Footer text styles */


/* Footer section */
.site-footer {
    background-color: #111114;
    color: #ccc;
    padding: 50px 40px 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-column,
.footer-columnRight {
    flex: 1 1 300px;
    min-width: 220px;
    line-height: 1.6;
}

/* Align right column content */
.footer-columnRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-family: "open sans", sans-serif;

}

/* Social icons row */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Footer text styles */
.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-logo {
    font-family: "barlow-medium", "barlow", sans-serif;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column a, 
.footer-column p {
    text-decoration: none;
    color: #a2a2a2;
    transition: color 0.3s;
    font-family: "open sans", sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive behavior */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-columnRight {
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.team-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
}

.team-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
  position: relative;
}

.team-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: white;
  margin: 10px auto 0;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
   width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  
}

.team-member p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 5px 0;
}

.team-member .motivation {
  font-style: italic;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 90%;
  }
}

.dropdown-menu {
  margin:0;
}

/* Dropdown container */
nav ul li.dropdown {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Hide dropdown content by default */
nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #121212;
  list-style: none;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1001;
  text-align: right;
  height: 85.5;
}

.dropdown-menu::before {
  display:block;
  content:'';
  background-color: transparent;
  color: transparent;
  height:15px;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* Style dropdown links */
nav ul li .dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  white-space: nowrap;
  text-decoration: none;
  color:white;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Hover effect for dropdown items */
nav ul li .dropdown-menu li a:hover {
  color: #f25f5c;
}