/*
Theme Name: CLEA Custom Theme
Theme URI: https://www.cleaworld.com
Author: CLEA
Description: Custom Elementor-ready WordPress theme for CLEA sanitaryware brand.
Version: 1.0
*/

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#main.site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.site-header {
  background-color: transparent;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}
.site-header .logo {
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
}

.logo img {
  width: 130px;
  height: 40px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 0.95rem;
}

.catalogue-button {
  background-color: #70728b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
}

.site-footer {
  background-color: #0f0e2c;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-left {
  flex: 1;
  min-width: 250px;
}
.footer-left .logo {
  font-size: 2rem;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 1rem;
  margin-top: 10px;
  color: #aaa;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
   .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header > .top-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 15px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .catalogue-button {
    display: none;
  }

   .site-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-left {
    margin-bottom: 20px;
  }
}