/* Reset minimal defaults */
* {
    box-sizing: border-box;
    
  }
  
  /* Body and background setup */
  body {
    margin: 0;
    padding: 0;
    /* font-family: 'inclusive' 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    height: 100vh;
    background: linear-gradient(-45deg, rgba(76, 175, 80, 0.1), #121212, #121212, #121212);
    /* background: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%); */
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: #fff;
    /* overflow: hidden; */
    position: relative; /* Add position relative here */
    cursor: none;
  }

  /* Custom green round cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  /* background: #00FF00; */
  /* color: #fff; */
  border: 2px solid #00FF00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  /* Smooth movement */
  transition:
    left 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.1s cubic-bezier(0.4,0,0.2,1);
  transform: translate(-50%, -50%);
}
  
  /* Animated Gradient */
  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  

 nav {
      display: flex;
      justify-content: space-between; /* Pushes logo left & other items right */
      align-items: center; /* Vertically centers items */
      /* padding: 10px 20px; */
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 5rem;
      position: relative;
      z-index: 2;
    }

        
        
        /* Logo 3: Tech-Style */
        .logo3 {
            font-family: 'Courier New', monospace;
            font-size: 2.5em;
            color: #00FF00;
            position: relative;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

      
        .logo3::after {
            content: '_';
            animation: blink 1s infinite;
            color: #00FF00;
        }
        
        .logo3 .brackets {
            color: rgba(0, 255, 0, 0.6);
            font-size: 1.2em;
        }
        
        
        
        @keyframes glow {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
       
        
        .nav-preview {
            /* background: rgba(0, 0, 0, 0.8); */
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            margin-top: 15px;
            border: 1px solid rgba(0, 255, 0, 0.2);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
        }

        .nav-preview:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
          transition: all 0.3s ease-in-out;
        }



    .nav-right-section {
      display: flex;
      align-items: center;
      gap: 25px; /* Space between Call Me button & toggle */
}

.call-me-btn {
      font-family: "Inclusive Sans", sans-serif;
      letter-spacing: 1px;
      font-size: 1rem;
      background-color: #00FF00;
      color: #121212;
      padding: 8px 20px;
      border-radius: 5px;
      cursor: pointer;
    }
        

    .menu-toggle {
      cursor: pointer;
      font-size: 1.5rem;
      color: #00FF00;
      /* display: none; */
      display: block;
    }

    

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 32%;
        background-color: #111;
        padding-top: 4rem;
        padding-left: 2rem;
        gap: 1rem;
        transition: right 0.5s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.5);
        
      }

      .nav-links.active {
        right: 0;
        
      }

      .close-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
      }

    .nav-links a {
      color: #121212;
      font-weight: normal;
      font-family: "Inclusive Sans", sans-serif;
      letter-spacing: 1px;
      width: 60%;
      text-align: center;
      background-color: #00FF00;
      border-radius: 6px;
      text-decoration: none;
      padding: 0.9rem;
    }


    .nav-links a:hover {
      background: #1b0;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      backdrop-filter: blur(0px); /* Start with no blur */
      background-color: rgba(0, 0, 0, 0.0);
      transition: 
        backdrop-filter 0.5s ease-in-out,
        background-color 0.5s ease-in-out,
        opacity 0.5s ease-in-out,
        visibility 0.5s ease-in-out;
      opacity: 0;
      visibility: hidden;
      z-index: 1;
    }

    .overlay.active {
      backdrop-filter: blur(6px);
      background-color: rgba(0, 0, 0, 0.3);
      opacity: 1;
      visibility: visible;
    }



    


    /* Overall container for the top section and main content */

    .overall-container {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

    }

    .top-section {
      position: relative;
      width: 80%;
      /* height: 80vh; */
      margin: auto;
      display: flex;
      flex-direction: column;
    }

    .top-section .acme-regular {
    font-size: 2rem;
    font-family: "Acme", sans-serif;
    font-weight: 400;
    font-style: normal;
}

    .my-picture-texts {
      display: flex;
      justify-content: space-between;
    }

    .my-picture {
      width: 40%; 
      height: 60vh;
      overflow: hidden;
      border-radius: 8px; 
    }

    .my-picture img {
      width: 100%;
      height: auto;
      transition: transform 0.8s ease; /* Smooth zoom */
    }

    .my-picture img:hover {
      transform: scale(1.06);
    }

    .texts-form {
      width: 53%;
      display: flex;
      flex-direction: column;
    }

    .texts-form p {
      /* font-family: "Arima", system-ui; */
      line-height: 32px;
      margin-block-start: 1em;
      margin-block-end: 1.5em;
      /* color: #999999; */
      color: #8cb38c;
      font-family: "Inclusive Sans", sans-serif;
      font-size: 15px;
      font-weight: lighter;
    }


    /* Form Styles */
.form-group {
  margin-bottom: 15px;
  box-sizing: border-box;
}

.form-group input {
  width: 100%;
  font-family: "Inclusive Sans", sans-serif;
  letter-spacing: 1px;
  padding: 20px 15px;
  background-color: #212121;
  color: #8cb38c;
  border: none;
  /* border: 1px solid #00FF00; */
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:hover {
  border: 0.1px solid #8cb38c;
}

.submit-btn {
  letter-spacing: 1px;
  font-size: 1rem;
  background-color: #00FF00;
  color: #121212;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #00CC00;
}

#successMessage {
  display: none;
  color: green;
  margin-top: 10px;
}


    /* Mobile Styles */
    @media (max-width: 768px) {

      nav {
        padding: 2rem 3rem;
      }

       /* Logo 3: Tech-Style */
        .logo3 {
            font-size: 1em;
        }
        
        .logo3 .brackets {
            font-size: 1em;
        }

        .nav-preview {
            padding: 10px 15px;
            border-radius: 50px;
            /* display: inline-block; */
            margin-top: 5px;
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
            /* border: 1px solid rgba(0, 255, 0, 0.2); */
        }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: #111;
        padding-top: 4rem;
        padding-left: 1.5rem;
        gap: 1.5rem;
        transition: right 0.4s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.5);
      }

      .nav-links.active {
        right: 0;
      }

      .close-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
      }

      .my-picture-texts {
      display: flex;
      flex-direction: column;
    }

    .my-picture {
      width: 90%; 
      height: 60vh;
      margin: auto;
      overflow: hidden;
      border-radius: 8px; 
    }

    .my-picture img {
      width: 100%;
      height: 100%;
      transition: transform 0.8s ease; /* Smooth zoom */
    }

    .texts-form {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
    }


     .texts-form p {
      line-height: 30px;
      margin-block-start: 1.5em;
      font-size: 15px;
      
    }


    /* Form Styles */
    .form-group {
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .form-group input {
      width: 100%;
      padding: 20px 15px;
      font-size: 14px;
      box-sizing: border-box;
    }

    .submit-btn {
      font-size: 14px;
      padding: 12px 23px;
      border: none;
    }

    .footer {
                padding: 40px 30px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .social-links {
                order: -1;
            }
    }


     @media (max-width: 480px) {
            .footer {
                padding: 30px 20px 20px;
            }

            .footer-content {
                gap: 30px;
            }
        }

  
  /* Container styles */
  .container {
    position: relative; /* Optional, but ensures the content is properly aligned */
    background: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    max-width: 400px;
    margin: auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  
  /* Optional: Style for audio player or content container */
  .player {
    margin-top: 20px;
    z-index: 10;
    position: relative;
  }
  
  
  .cover {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .title {
    margin-top: 1.5rem;
    font-size: 1.75rem;
  }
  
  .artist {
    margin: 0.5rem 0 1.5rem;
    font-size: 1rem;
    color: #555;
  }
  
  .player {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    display: block;
    text-decoration: none;
    background: #222;
    color: #fff;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .btn:hover {
    background: #444;
  }
  
  .signup {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .signup input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .signup button {
    padding: 0.5rem 1rem;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
  }
  
  .signup button:hover {
    background: #444;
  }
  






  /* Footer */

  .footer {
            /* background: linear-gradient(135deg, #4a5d3a 0%, #2c3e2c 50%, #1a1a1a 100%); */
            border-radius: 12px;
            padding: 30px 80px 40px;
            max-width: 95%;
            margin: 1rem auto;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            display: grid;
            /* background-color: red; */
            grid-template-columns: 3fr 1fr;
            gap: 80px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            color: white;
        }


         /* Logo 3: Tech-Style */


          
        .logo-cont {
            /* background: rgba(0, 0, 0, 0.8); */
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            /* margin-top: 5px; */
            border: 1px solid rgba(0, 255, 0, 0.2);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
        }

        .logo-cont:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
          transition: all 0.3s ease-in-out;
        }


        .logo {
            font-family: 'Courier New', monospace;
            font-size: 2.0em;
            color: #00FF00;
            position: relative;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

      
        .logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: #00FF00;
        }
        
        .logo .brackets {
            color: rgba(0, 255, 0, 0.6);
            font-size: 1em;
        }


        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 14px;
            max-width: 400px;
        }

        .footer-section {
          display: grid;
           grid-template-columns: 1fr 1fr 1fr;
           gap: 80px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
            font-weight: 400;
            margin-bottom: 24px;
        }


        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .footer-bottom .social-links {
            display: flex;
            gap: 16px;
        }

        .footer-bottom .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .footer-bottom .social-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }
