
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 2rem;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
 
}

.hero-btns a {
  padding: 1rem 2rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  background-color: #00b0ff;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}

.hero-btns a:hover {
  background-color: #007bbf;
}

footer {
  background-color: rgba(0, 0, 0, 0.4); /* Black with 50% opacity */
  color: white;
  padding: 1rem 5rem;
  border-top: 1px solid #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .social-icons i {
  font-size: 2rem;
  margin-right: 1rem;
}








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

body {
  background: linear-gradient(135deg, #141e30, #243b55); /* Gradient background */
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 5rem; /* To prevent content from hiding under the navbar */
  
  background: url('img/bigimg.jpg') no-repeat center center; /* Image centered */
  background-size: cover; /* Ensures the image covers the entire background */
  font-family: 'Inter', sans-serif !important; /* Default body font */
}


h1, h4 {
  text-align: center;
  margin-top: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  color: white; /* White font color */
}

h4 {
  font-size: 1.2rem;
  background: linear-gradient(to right, #f3fbff, #00e0ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

navbar {
  background-color: transparent;
  border: 2px !important;
  border-bottom: 3px rgb(255, 255, 255) !important;
  padding: 1rem 5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 600;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.5rem;
}

.logo a {
  text-decoration: none;
  color: white;
}

.logo span {
  color: #00b0ff;
}

.buttons {
  display: flex;
 
  gap: 1rem;

  border: none;
  border-radius: 8px;
  color: white;

  padding: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  outline: none;

 
  
 
}

.buttons a {

  text-decoration: none;
  color: white;
  border-radius: .5rem; 
  background-color: #00b0ff;
  transition: background-color 0.2s ease-in-out;
  font-size: medium;
  padding: 0.75rem 1rem;
  margin: 0 0.3rem;
  cursor: pointer;
   

}

.buttons a:hover {
  background-color: transparent;
}

.code-area {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem;
  width: 100%;
}

.editor {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.editor textarea {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  height: 300px;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  resize: none;
}

.editor label {
  background-color: #1c1c1c;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

iframe {
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  border: 1px solid #555;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background-color:rgba(0, 0, 0, 0.5);
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {

  .copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    right: 0rem;
    width: 6rem;
    height: 3rem;
    background-color:rgba(0, 0, 0, 0.5);
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: x-small;
  }
  .section-title {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: small;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #f3fbff, #00e0ff);  
    -webkit-background-clip: text;
    color: transparent;
  }
  .buttons {
    display: flex;
    flex-direction: row !important;
  
    
      gap: 0.4rem; /* Reduce the gap between buttons */
      padding: 2px 4px !important ; /* Make buttons smaller */
      font-size: smaller !important;
      
  
  
    border: none;
    border-radius: 8px;
    color: white;
  
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    outline: none;
  
   
    
   
  }
}



.copy-btn:hover {
  background-color: #007bbf;
}

.section-title {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: large;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #f3fbff, #00e0ff);  
  -webkit-background-clip: text;
  color: transparent;
}
@media screen and (max-width: 480px) {

  .copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    right: 0rem;
    width: 6rem;
    height: 2rem;
    background-color:rgba(0, 0, 0, 0.5);
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: x-small;
  }
  .section-title {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: small;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #f3fbff, #00e0ff);  
    -webkit-background-clip: text;
    color: transparent;
  }
}


.footer {
  background-color: transparent;
  color: white;
  padding: 1rem 5rem;
  border-top: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .social-icons i {
  font-size: 2rem;
  margin-right: 1rem;
  
}
.social-icons i{
  color: rgb(255, 255, 255) !important;
}

@media screen and (max-width: 480px) {

  .social-icons i{
    font-size: 1rem !important;
    display: flex;
    flex-direction: row  !important;
 
  }
}



@media screen and (max-width: 768px) {
  .code-area {
      flex-direction: column;
      padding: 2rem;
  }

  .editor {
      width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
      padding: 1rem 2rem;
  }

  footer {
      padding: 1rem 2rem;
  }

  footer .logo {
      margin-bottom: 1rem;
  }

  .buttons {
      flex-direction: column;
  }

  .buttons a {
      width: 100%;
      text-align: center;
  }
}


h1, h2, h3, h4, .logo, .cta-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
}
h1{
  font-family: Bricolage Grotesque;
    font-size: 4.5rem !important;
    margin: 0.5rem !important;
}
@media screen and (max-width: 480px) {

  h1{
    font-family: Bricolage Grotesque;
      font-size: 2rem !important;
      margin: 0.5rem !important;
  }
}


