@import url("./fonts.css");
@import url("./reset.css");

/* CSS kodları buraya gelecek */
body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: #000000;
}
/* deniz/header-started */

.header {
  width: 100%;
}

.header__announcement {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #000000;
  text-align: center;
  padding: 10px 0;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
}

.header__navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
}

.header__logo img {
  width: 30px;
  height: 19px;
}

.header__nav-links {
  list-style: none;
  display: flex;
  gap: 80px;
}

.header__nav-links li a {
  color: #848895;
  text-decoration: none;
  font-size: 18px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #848895;
  border-radius: 2px;
}

.header__menu-toggle {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__announcement {
    font-size: 14px;
  }
  .header__navbar {
    display: flex;
    justify-content: flex-start;
    padding: 10px 20px;
    position: relative;
  }
  .header__logo {
    position: absolute;
    right: 20px;
  }
  .header__hamburger {
    display: flex;
    margin-bottom: 10px;
  }
  .header__nav-links {
    display: none;
    flex-direction: column;
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    gap: 10px;
    padding: 20px 10px;
    border: none;
  }
  .header__nav-links li a {
    color: #848895;
    font-size: 16px;
    padding-left: 20px;
  }
  .header__menu-toggle:checked ~ .header__nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 49px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
  }
}

/* BEYZANURMETE-HERO-SECTİON-START */
.hero {
  position: relative;
  z-index: -1;
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: url("../images/right.jpg") left top no-repeat, url("../images/left.jpg") right top no-repeat;
  background-size: contain;
  margin-top: -54px;
}

.hero h1 {
  text-align: center;
  font-family: Helvetica;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 75.6px;
  letter-spacing: 0.68px;
  margin-bottom: 10px;
}

.hero p {
  text-align: center;
  font-family: Helvetica;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.3px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 36px;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.start-building-btn {
  border: 1px solid #000;
  background: linear-gradient(99deg, #8c01fa -2.99%, #000 102.28%);
  color: #fff;
}

.read-docs-btn {
  border: 1px solid #fff;
  background: #000;
  color: #fff;
}

.start-building-btn:hover {
  background: linear-gradient(99deg, #fff -2.99%, #8c01fa 102.28%);
  color: #000;
  border-color: #8c01fa;
  box-shadow: 0 0 15px #8c01fa, 0 0 30px #8c01fa;
}

.read-docs-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 15px #fff, 0 0 30px #fff;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .hero-button {
    font-size: 0.75rem;
  }
}
/* BEYZANURMETE-HERO-SECTİON-finished */

/* deniz-trusted-brands-started*/
.partner-section {
  text-align: center;
  padding: 50px 20px;
  background: #000;
  margin-top: -100px;
}
.partner-heading {
  font-weight: 300;
  color: #6e82d9;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  height: auto;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

/* deniz-trusted-brands-finished*/
.number-section {
  font-family: Helvetica, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 90%;
  height: auto;
  margin: 100px auto;
  color: white;
  box-sizing: border-box;
  overflow: hidden;
}

.number-left {
  flex: 1;
  max-width: 320px;
  text-align: left;
}

.number-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.5;
}

.number-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.number-item {
  text-align: left;
}

.number-value {
  margin: 0;
}

.number-value--blue {
  background: linear-gradient(262deg, #19fb9b -8.01%, #8c01fa 100%);
  font-size: 100px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.number-value--green {
  background: linear-gradient(260deg, #0047ff -13.37%, #00bcd4 109.53%);
  font-size: 100px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.number-value--purple {
  background: linear-gradient(265deg, #00ffbd -5.84%, #025b8c 111.58%);
  font-size: 100px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.number-label {
  font-size: 16px;
  font-weight: 300;
  color: #aaa;
}
@media (max-width: 768px) {
  .number-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    margin: 50px auto;
  }

  .number-left {
    max-width: 100%;
  }

  .number-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .number-right {
    width: 70%;
    gap: 30px;
    align-items: center;
  }

  .number-item {
    text-align: center;
  }

  .number-value--blue,
  .number-value--green,
  .number-value--purple {
    font-size: 60px;
  }

  .number-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .number-section {
    margin: 50px auto;
  }

  .number-title {
    font-size: 24px;
  }

  .number-value--blue,
  .number-value--green,
  .number-value--purple {
    font-size: 50px;
  }

  .number-label {
    font-size: 12px;
  }
}
/* deniz-NumberSection-finished */
/* beyza-join-community-start */
.join-container > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid black;
}

.join-container {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 200px;
  margin-top: 50px;
}

.k1 {
  grid-column: span 1;
}
.big {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
}

.big .description {
  position: absolute;
  top: -60px;
  padding: 10px;
  font-family: Helvetica;
  font-size: 20px;
  left: 5px;
  color: #ffffff;
  font-size: 30px;
}

.orta {
  grid-row: span 2;
}
@media (max-width: 1500px) {
  .join-container > div > img {
    width: 100%;
    height: auto;
  }

  .big .description {
    font-size: 24px;
  }

  .big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .big .description {
    font-size: 24px;
    top: -45px;
  }

  .orta {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .join-container > div > img {
    width: 100%;
    height: auto;
  }

  .big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .big .description {
    font-size: 18px;
    top: -40px;
  }

  .orta {
    grid-column: span 1;
    grid-row: span 1;
  }

  .join-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 480px) {
  .join-container > div > img {
    width: 100%;
    height: auto;
  }

  .big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .big .description {
    font-size: 16px;
    top: -30px;
  }

  .orta {
    grid-column: span 1;
    grid-row: span 1;
  }

  .join-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
  }

  .join-container .big .description {
    font-size: 14px;
  }
}
/* deniz-footer-start */
.footer {
  background-color: #000;
  color: #c4c4c4;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 200px auto;
}

.footer-logo {
  flex: 1;
  text-align: left;
  
}

.footer-logo .logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
}

.footer-social .social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  background-color: white;
}

.footer-social .social-icons img:hover {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 2;
  justify-content: flex-start;
  flex-wrap: wrap;
}


.footer-column {
  gap:100px;
  margin: 0 auto;
}


.footer-column h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

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

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

.footer-column ul li a {
  color: #c4c4c4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}
.footer-language {
  position: relative;
}

.language-switcher {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
  cursor: pointer;
}

.language-switcher img.language-icon {
  width: 16px;
  height: 16px;
}

.language-switcher span {
  color: #c4c4c4;
  font-size: 14px;
  font-weight: 400;
}

.language-switcher .dropdown-arrow {
  font-size: 12px;
  color: #c4c4c4;
  transition: transform 0.3s ease;
}

.language-switcher:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-column {
    margin: 0;
  }

  .language-switcher {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer-social .social-icons img {
    width: 25px;
    height: 25px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 80px;
  }

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

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .language-switcher {
    font-size: 12px;
  }
}
/* deniz-feature-section-start */
.feature-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 50px;
  max-width: 1740px;
  height: auto;
  background-image: url("../images/featured.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.nowrap {
  white-space: nowrap;
}

.feature-header {
  flex: 1;
  margin-right: 50px;
}

.feature-header h1 {
  font-family: "Helvetica";
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  font-style: normal;
  margin-bottom: 20px;
}

.feature-header h1 span {
  color: #ff00ff;
}

.feature-header .live-data {
  font-family: "Roboto";
  font-size: 16px;
  color: #c4c4c4;
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
}
.feature-header .blue-dot {
  color: #00ffff;
  font-size: 1.2rem;
  margin-right: 5px;
}

.features-container {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-card {
  max-width: 340px;
  height: auto;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  background: url("") no-repeat center center;
}

.feature-card h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  border-left: 4px solid;
  padding-left: 10px;
  color: #fff;
}

.feature-card h2.fast {
  border-color: #00ffff;
}

.feature-card h2.scalable {
  border-color: #8000ff;
}

.feature-card h2.decentralized {
  border-color: #ffff00;
}

.feature-card h2.energy-efficient {
  border-color: #00ff00;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
  color: #c4c4c4;
  font-weight: 400;
}

.feature-card .highlight {
  font-family: "Halvetica";
  font-size: 18px;
  font-weight: 400;
  display: flex;
}
.feature-card .blue-dot {
  color: #00ffff;
  font-size: 1.5rem;
  margin-right: 8px;
}

.feature-card p span.highlight {
  color: #00ff00;
}
@media (max-width: 768px) {
  .feature-section {
    padding: 30px 20px;
  }

  .feature-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-header h1 {
    font-size: 2rem;
  }

  .feature-header .live-data {
    font-size: 0.9rem;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card h2 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-section {
    padding: 20px 15px;
  }

  .feature-header h1 {
    font-size: 1.8rem;
  }

  .feature-header .live-data {
    font-size: 0.8rem;
  }

  .features-container {
    gap: 10px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h2 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }
  @media (max-width: 320px) {
    .feature-section {
      padding: 15px 10px;
    }

    .feature-header h1 {
      font-size: 1.6rem;
    }

    .feature-header .live-data {
      font-size: 0.7rem;
    }

    .features-container {
      gap: 8px;
    }

    .feature-card {
      padding: 12px;
    }

    .feature-card h2 {
      font-size: 1.1rem;
    }

    .feature-card p {
      font-size: 0.7rem;
    }
  }
}
/* deniz-feature-section-start */

/* Banner Section */
.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../images/banner-back.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.banner-text h1 {
  margin-bottom: 20px;
  max-width: 600px;
  font-size: 32px;
  font-weight: 350;
  text-align: center;
}

.banner-start-building-btn {
  width: 175px;
  height: 50px;
  background: linear-gradient(99deg, #8c01fa -2.99%, #000 102.28%);
  color: white;
  border: 1px solid #000;
  border-radius: 36px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.banner-start-building-btn:hover {
  background: linear-gradient(99deg, #8c01fa -10%, #000 120%);
}
@media screen and (max-width: 768px) {
  .banner-text h1 {
    font-size: 24px;
  }

  .banner-start-building-btn {
    width: 100px; 
    height: 35px; 
    font-size: 14px; 
  }
}

@media screen and (max-width: 480px) {
  .banner-text h1 {
    font-size: 18px; 
  }

  .banner-start-building-btn {
    
    font-size: 12px; 
  }
}
/* Banner Section */

/* BEYZANURMETE-Features-Section-start */

.features-switcher-container {
  max-width: 1350px;
  background-color: black;
  margin: auto;
  padding: 40px;
}

.features-switcher-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.features-switcher-header h1 {
  color: #fff;
  font-family: "Helvetica";
  font-size: 39px;
  font-weight: 300;
}

.boxes {
  display: flex; 
  gap: 50px;
}

.box {
  color: #fff;
  padding: 10px 20px;
  font-family: "Helvetica", sans-serif;
  font-size: 15px;
  line-height: 27.3px;
  background-color: black;
  border-radius: 20px;
}

.box:hover {
  background-color: #A962FF;
}


.box:nth-child(1) { 
  border: 2px solid #A962FF; 
}

.features-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.image-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 10px;
}

.large-image {
  width: 100%;
  height: auto;
}

.small-image {
  width: 25%;
  height: auto;
  border-radius: 8px;
}

.text-section {
  width: 50%;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  padding-left: 48px; 
}

.text-section p {
  width: 400px;
  color: #fff;
  font-family: "Helvetica", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.learn-more {
  color: #A962FF;
  font-size: 20px;
  font-family: "Helvetica", sans-serif;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  margin-top: 10px;
}
 @media (max-width: 993px){
  .features-container {
    padding: 20px;
  }

  .features-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .features-header h1 {
    font-size: 28px; 

  }

  .boxes {
   
    gap: 20px;
  }

  .box {
    padding: 8px 15px;
    font-size: 13px; 
    border-radius: 15px;
  }

  .box:nth-child(1) {
    border: 2px solid #A962FF;
  }

  .features-content {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .image-section {
    width: 70%; 
    margin-bottom: 20px;
  }

  .text-section {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .text-section p {
    width: auto; 
    font-size: 16px; 
    line-height: 1.6;
  }
  .logos {
    gap: 70px; 
    justify-content: center;
  }

  .logos img {
    max-width: 80%; 
    margin-top: 10px;
  }


  .small-image{
  display: block; 
    margin: auto;
    
    
  }
}