/*
 Theme Name:   Twenty Twenty-Five Child
 Description:  A child theme for Twenty Twenty-Five
 Author:       Your Name
 Template:     twentytwentyfive
 Version:      1.0.0
*/


/* Add your custom styles below */
/*Theme Name: Scaleloop
Description: Professional digital consultancy website
Version: 1.0*/

/*Theme Name: Scaleloop
Description: Professional digital consultancy website
Version: 1.0*/

/* Header */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-transparent {
  background: transparent;
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

.logo img {
  height: 2.5rem;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.desktop-nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.desktop-nav a:hover {
  color: #1d4ed8;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  transition: all 0.2s ease;
  margin: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}

.dropdown-menu a:hover {
  color: #2563eb;
  background: #dbeafe;
}

.chevron-down {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.dropdown:hover .chevron-down {
  transform: rotate(180deg);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #374151;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: white;
  display: none;
  flex-direction: column;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-logo {
  height: 2rem;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #374151;
}

.mobile-nav-content {
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-nav-item {
  display: block;
  font-weight: 500;
  color: #1f2937;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  text-align: center;
}

.mobile-nav-item.dropdown {
  border-bottom: none;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  color: #1f2937;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  background: none;
  border: none;
  text-align: center;
  cursor: pointer;
}

.mobile-nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.mobile-nav-dropdown {
  margin-top: 0.5rem;
  display: none;
  text-align: center;
}

.mobile-nav-dropdown.active {
  display: block;
}

.mobile-nav-dropdown a {
  display: block;
  color: #6b7280;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  margin: 0.25rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.mobile-nav-dropdown a:hover {
  color: #2563eb;
  background-color: #dbeafe;
}

/* Footer */
.site-footer {
  background: white;
  color: #374151;
  padding: 4rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2563eb;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  margin: 0.125rem 0;
}

.footer-column a:hover {
  color: #2563eb;
  background-color: #dbeafe;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 767px) {
  .footer-bottom.no-border {
    border-top: none;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
}

.footer-description {
  color: #2563eb;
}

.footer-copyright {
  color: #6b7280;
}

.footer-copyright {
  margin-top: 0.5rem;
}

/* Mobile Footer Dropdowns */
.mobile-footer-dropdown {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
  position: relative;
}

.mobile-footer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #2563eb;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0;
}

.mobile-footer-toggle svg {
  transition: transform 0.2s ease;
}

.mobile-footer-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.25rem;
  background: white;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 1rem;
  display: none;
}

.mobile-footer-content.active {
  display: block;
}

.mobile-footer-content a {
  display: block;
  color: #374151;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0.375rem;
  margin: 0.25rem 0;
}

.mobile-footer-content a:hover {
  color: #2563eb;
  background-color: #dbeafe;
}
