@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
:root {
  --primary-color: #fa5b0f;
  --primary-color-dark: #c03d00;
  --secondary-color: #01143e;
  --text-light: #ecf1fa;
  --text-dark: #000;
  --text-muted: #838383;
  --background-light: #fff;
  --background-dark: #ecf1fa;
  --font-body: "Montserrat", sans-serif;
  --font-logo: 'Lobster', cursive;
  --border-light: #eee;
  --text-on-dark: #ecf1fa;
}
.fab, .fas, .far, .fal, .fad {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  visibility: visible !important;
  opacity: 1 !important;
}
.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--background-light);
  color: var(--text-dark);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--text-dark);
}
.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.full-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.title h1 {
  color: var(--text-dark);
  display: inline-block;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.title h1::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -2px;
  left: 0;
  width: 70%;
}
.title p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 2px;
}
.text-center {
  text-align: center !important;
}
.text-center .title h1::before {
    margin: 0 auto;
    left: 0;
    right: 0;
}
header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0 15px;
  border-bottom: 1px solid rgba(250, 91, 15, 0.5);
  z-index: 100;
  transition: background-color 0.5s ease, border-color 0.5s ease;
}
header.fixed {
  position: fixed;
  background-color: var(--background-light);
  border-color: var(--border-light);
  animation: fixHeader 0.5s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@keyframes fixHeader {
  from { transform: translateY(-100%); }
  to { transform: translateY(0%); }
}
header .container .row {
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}
.brand-name a {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-on-dark);
  font-family: var(--font-logo);
}
header.fixed .brand-name a {
  color: var(--text-dark);
}
.hamburger {
  display: none;
}
.hamburger .fas {
  font-size: 22px;
  background-color: var(--text-light);
  color: var(--primary-color);
  height: 34px;
  width: 40px;
  border-radius: 4px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border-light);
}
.navbar ul {
  list-style: none;
}
.navbar ul li {
  display: inline-block;
  margin-left: 35px;
}
.navbar ul li a {
  font-size: 15px;
  line-height: 72px;
  color: var(--text-on-dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}
header.fixed .navbar ul li a {
  color: var(--text-dark);
}
.navbar ul li a::before {
  content: "";
  height: 2px;
  background-color: var(--primary-color);
  width: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.navbar ul li a:hover::before,
.navbar ul li a.active::before {
  width: 100%;
  left: 0;
  right: auto;
}
.language {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(236, 241, 250, 0.9);
  border-radius: 5px;
  padding: 4px;
  list-style-type: none;
  display: flex;
  gap: 5px;
}
header.fixed .language {
    background-color: var(--background-dark);
}
.language li a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 3px;
    display: block;
}
.language li a.active2 {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.home {
  background-image: url('../img/background.webp');
  background-position: center center;
  background-size: cover;
  height: 100vh; 
  overflow: hidden;
  padding: 0 15px;
}
.home-content .block {
  max-width: 800px;
  color: var(--text-on-dark);
  padding-left: 35px;
  border-left: 3px solid var(--primary-color);
}
.home-content .block h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.home-content .block h6 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
.home-content .block h9 a {
    color: var(--text-on-dark);
    text-decoration: underline;
}
.home-content #wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.home-content .social1 a {
    height: 4em;
    width: 4em;
    background-color: var(--text-dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.home-content .social1 a i {
    font-size: 2em;
}
.home-content .social1 a:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.home-content .textbox2 {
    color: var(--text-on-dark);
    border: 2px solid rgba(0,0,0,0.5);
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    font-size: 1.3em;
    padding: 0.5em 1em;
    transition: all 0.3s ease;
    -webkit-box-decoration-break: clone; 
    box-decoration-break: clone;
    line-height: 1.6;  
  }
.home-content .textbox2:hover {
    background-color: rgba(0,0,0,0.7);
    border-color: var(--primary-color);
}
.updates-section {
  padding: 100px 15px;
  background-color: var(--background-light);
}
.about {
  padding: 100px 15px;
  background-color: var(--background-light);
}
.about-content .img {
  flex: 0 0 40%;
  max-width: 40%;
}
.about-content .img img {
  width: 100%;
  border-radius: 25px;
  display: block;
}
.about-content .text {
  flex: 0 0 60%;
  max-width: 60%;
  padding-left: 40px;
}
.about-content .text .text-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.about-content .text .about-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.about-content .text .text-header-info h4 {
  margin-bottom: 5px;
}
.about-content .text .text-header-info h5 {
  margin-bottom: 0;
}
.about-content .text h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.about-content .text h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.about-content .text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-content .text h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--text-dark);
}
.about-content .text h6 span {
  color: var(--primary-color);
}
.about-content .social {
  margin-top: 20px;
}
.about-content .social a {
  height: 40px;
  width: 40px;
  background-color: var(--text-dark);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.about-content .social a i {
    color: var(--text-light);
    font-size: 16px;
}
.about-content .social a:hover {
  background-color: transparent;
  color: var(--text-dark);
}
.about-content .social a:hover i {
    color: var(--text-dark);
}
.services, .neler {
  padding: 100px 15px 70px;
  background-color: var(--background-dark);
}
.service-content, .neler-content {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.box {
  background-color: var(--background-light);
  flex: 1 1 calc(33.33% - 40px);
  min-width: 280px;
  margin-bottom: 30px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.box .icon {
  height: 60px;
  width: 60px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box .icon .fa, .box .icon .fas {
  font-size: 25px;
  color: var(--text-light);
}
.box h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.box span {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
}
.box .button {
    margin-top: 15px;
}
.box .button a {
    font-size: 14px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
}
.box .button a:hover {
    background: var(--secondary-color);
}
.message {
  background-color: var(--secondary-color);
  padding: 60px 15px;
}
.message .row {
  align-items: center;
  justify-content: space-between;
}
.message-text {
  flex: 1;
  max-width: 66%;
}
.message-text h2 {
  font-size: 22px;
  color: #ecf1fa;
  font-weight: 400;
  line-height: 1.6;
}
.message .button {
  margin-left: 20px;
}
.message .button a {
  font-size: 16px;
  color: #ecf1fa;
  background-color: transparent;
  border: 2px solid #ecf1fa;
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.message .button a:hover {
  background-color: #ecf1fa;
  color: var(--secondary-color);
}
.contact {
  padding: 100px 15px;
  background-color: var(--background-light);
}
.contact .content-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.contact .info-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.list-info {
    list-style: none;
}
.list-info li {
    margin-bottom: 20px;
}
.media {
    display: flex;
    align-items: center;
}
.info-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}
.info-type {
    font-weight: 600;
    margin-bottom: 5px;
}
.info-value {
    color: var(--text-muted);
}
.info-value a {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
}
.blog {
    padding: 100px 15px;
    background-color: var(--background-dark);
}
.blog-home-content article {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.blog-home-content article:last-child {
    border-bottom: none;
}
.muzik-container {
    padding: 120px 15px 70px;
    background-image: url('../img/background.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.muzik-container .title p {
    color: #ddd;
}
.muzik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.muzik-card {
    text-align: center;
    transition: transform 0.3s ease;
}
.muzik-card:hover {
    transform: scale(1.05);
}
.muzik-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.muzik-card .textamanasitext {
    color: #ecf1fa;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}
.muzik-card .button {
    display: inline-block;
    padding: 8px 24px;
    color: var(--text-on-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
}
.muzik-card .button:hover {
    background: var(--primary-color);
    color: var(--text-on-dark);
}
.overlay {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  padding: 20px;
  background: var(--background-light);
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.popup h2 {
  margin-top: 0;
  color: var(--text-dark);
}
.popup .close {
  position: absolute;
  top: 15px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: var(--primary-color);
}
.popup .content {
  max-height: 40vh;
  overflow-y: auto;
  padding: 15px;
}
.popup .content .button2 {
    display: block;
    margin: 10px auto;
    font-size: 15px;
    padding: 10px 20px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    max-width: 250px;
}
.popup .content .button2:hover {
    background: var(--primary-color);
    color: var(--text-on-dark);
}
.updates-container {
    flex: 0 0 100%;
    max-width: 800px;
    margin: 0 auto;
}
.updates-list {
    list-style: none;
    padding: 0;
}
.updates-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}
.updates-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block; 
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
}
.updates-list .asd {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.updates-list .asd2 {
    color: var(--text-muted);
    line-height: 1.6;
}
footer {
  padding: 70px 15px;
  background-color: var(--primary-color-dark);
  color: var(--text-on-dark);
  text-align: center;
}
.footer-logo {
  font-size: 45px;
  font-family: var(--font-logo);
  margin-bottom: 20px;
}
footer .social a {
  color: #ccc;
  font-size: 20px;
  margin: 0 12px;
  transition: all 0.3s ease;
}
footer .social a:hover {
  color: var(--text-light);
  transform: scale(1.2);
}
footer .footer-links {
    margin-top: 20px;
}
footer .footer-links a {
    color: #ccc;
    text-decoration: underline;
    margin: 0 10px;
    font-size: 14px;
}
footer .footer-links a:hover {
    color: var(--text-light);
}
.copyright {
  background-color: var(--secondary-color);
  padding: 25px 15px;
  text-align: center;
}
.copyright p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-on-dark);
}
.copyright .renewable-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.copyright .renewable-container img {
  height: 7em;
  width: auto;
}
.copyright .renewable-energy {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0;
}
html[data-theme='dark'] {
  --secondary-color: #022069;
  --text-light: #1f2937;
  --text-dark: #f3f4f6;
  --text-muted: #9ca3af;
  --background-light: #111827;
  --background-dark: #1f2937;
  --border-light: #374151;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --secondary-color: #022069;
    --text-light: #1f2937;
    --text-dark: #f3f4f6;
    --text-muted: #9ca3af;
    --background-light: #111827;
    --background-dark: #1f2937;
    --border-light: #374151;
  }
}
html[data-theme='dark'] .language {
    background-color: rgba(31, 41, 55, 0.9);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .language {
    background-color: rgba(31, 41, 55, 0.9);
  }
}
.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--text-on-dark);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 2147483647; 
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
}
.theme-toggle:hover {
    transform: scale(1.1);
}
.theme-toggle .fa-sun {
  display: none;
}
html[data-theme='dark'] .theme-toggle .fa-sun {
  display: block;
  color: #f3f4f6;
}
html[data-theme='dark'] .theme-toggle .fa-moon {
  display: none;
}
html[data-theme='dark'] .theme-toggle {
    color: var(--text-dark);
    background-color: var(--background-dark);
}
@media (max-width: 991px) {
    .about-content .img,
    .about-content .text {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    .about-content .img {
        margin-bottom: 30px;
    }
    .message-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .message .button {
        flex: 1 1 100%;
        text-align: center;
        margin-left: 0;
    }
}
@media (max-width: 767px) {
  header {
    position: fixed;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 15px;
  }
  header .container .row {
      min-height: auto;
  }
  header .brand-name a {
    color: var(--text-dark);
  }
  .language {
      display: none; 
  }
  header .hamburger {
    display: block !important;
  }
  .navbar {
    position: absolute;
    background-color: var(--background-light);
    width: 100%;
    left: 0;
    top: 56px; 
    padding: 15px;
    border-top: 1px solid var(--border-light);
    display: none;
  }
  .navbar.show {
    display: block;
  }
  .navbar ul li {
    display: block;
    margin-left: 0;
    text-align: center;
  }
  .navbar ul li a {
    line-height: 42px;
    color: var(--text-dark);
  }
  .navbar ul li a::before {
      bottom: 5px;
  }
  .home-content .block h2 {
      font-size: 2.5rem;
  }
   .home-content #wrapper {
      flex-direction: column;
      text-align: center;
  }
  .box {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .about-content .text .text-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
