*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: Inter, sans-serif;
    background-color: #050202;
    color:#F5F5F5;
}
nav{
    background-color: #050202;
    color:#C9A94A;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    font-family: Inter, sans-serif;
    position: fixed;
    width: 100%;
    top: 0;
}
nav h2{
    font-size: 30px;
    font-weight: 600;
    color: #C9A94A ;
  
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    gap: 20px;
}
nav ul li{
    font-size: 20px;
    font-weight: 600;
}
nav ul li a{
    text-decoration: none;
    color: #C9A94A;
}
nav ul li a:hover{
    color: #FF6B35;
}
nav ul li a.active{
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.hero{
    background-color: #050202;
    padding: 100px 20px;
    text-align: center;
    font-family: Inter, sans-serif;
    height: 70vh;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.hero h1{
    font-size: 40px;
    font-weight: 500;
    color: #C9A94A;
}
.hero p{
    font-size: 15px;
    color: #CFCFCF;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.hero button{
    background-color: #C9A94A;
    color: #050202;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hero button:hover{
    background-color: #FF6B35;
    color: #050202;
}
h2{
    color: #C9A94A;
    margin: 20px 0;
    text-align: center;
}

.usage{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Inter, sans-serif;
    color: #C9A94A;
}
.code-window {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .code-header {
    background-color: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .code-header span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .code-header .red {
    background-color: #ff5f56;
  }
  .code-header .yellow {
    background-color: #ffbd2e;
  }
  .code-header .green {
    background-color: #27c93f;
  }
  
  .code-window pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
    font-size: 14px;
    color: #d4d4d4;
  }
  
  .code-window code.blue {
    color: #4fc3f7; 
  }
  
.smtp{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: space-between;
    font-family: Inter, sans-serif;
    color: #C9A94A;
}
.img{
    height: auto;
    max-width: 600px;
    margin: 20px auto;
  
    border-radius: 10px;

}
img{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.urls{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, sans-serif;
    color: #C9A94A;
}




footer{
    background-color: #050202;
    color: #C9A94A;
    padding: 20px;
    text-align: center;
    font-family: Inter, sans-serif;
}
footer p{
    margin: 10px 0;
}
footer a{
    color: #FF6B35;
    text-decoration: none;
}


/*Responsive Design for Mobile Devices*/
@media (max-width: 1024px) {
    /* Nav */
    nav {
        padding: 10px 20px;
        justify-content: space-between;
    }
    nav h2 {
        font-size: 26px;
    }
    nav ul {
        gap: 15px;
    }
    nav ul li {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        padding: 80px 20px;
        height: auto;
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 15px;
        max-width: 90%;
    }

    /* Code block */
    .code-window {
        max-width: 95%;
    }
    .code-window pre {
        font-size: 15px;
    }
}

/* Mobile landscape and smaller */
@media (max-width: 768px) {
    /* Nav */
    nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    nav h2 {
        font-size: 24px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Hero */
    .hero {
        padding: 60px 15px;
        text-align: center;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 14px;
    }
    .hero button {
        padding: 10px 16px;
        font-size: 16px;
    }

    /* Code block */
    .code-window {
        max-width: 100%;
        border-radius: 6px;
    }
    .code-window pre {
        padding: 12px;
        font-size: 14px;
        white-space: pre-wrap;
        word-break: break-word;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    /* Nav */
    nav h2 {
        font-size: 20px;
    }
    nav ul li {
        font-size: 16px;
    }


    .hero {
        padding: 50px 10px;
    }
    .hero h1 {
        font-size: 2opx;
    }
    .hero p {
        font-size: 13px;
    }
    .hero button {
        font-size: 15px;
        padding: 8px 14px;
    }

    .code-window pre {
        font-size: 13px;
        padding: 10px;
    }
}