@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

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

body {
    font-family: 'Roboto Slab', serif;
    background-color: #fff4ea;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

/* Logo */
.logo img {
    height: 40px;
}

/* Navigation Links */
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00aaff;
}
.nav-links .active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
  }

/* Connect MetaMask Button */
.connect-btn {
    background-color: #00aaff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.connect-btn:hover {
    background-color: #0088cc;
}

/* Contact Form Styling */
.contact-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    text-align: center;
    margin: 100px auto 0; /* Ensures it doesn’t get blocked by the navbar */
}

h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    width: 100%;
    background-color: #00aaff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #0088cc;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
    color: #333;
    transition: 0.3s;
    font-weight: bold;
}

.social-links a:hover {
    color: #0088cc;
}
