
/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
    color: #333333;
}

/* Navbar Styles */
header #Navbar {
    background-color: #1E2A38; /* Darker navy for better contrast */
    color: white;
    padding: 20px;
    text-align: center;
}

#Navbar h1 {
    display: inline-block;
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

nav ul {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 20px; /* Increased spacing for better readability */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #007B83; /* Brighter on hover */
    border-radius: 5px;
    color: #ffffff;
}

main {
    padding: 40px;
}

.form-container {
    max-width: 450px;
    margin: 40px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #2A3A4F;
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
    transition: border 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    border-color: #007B83;
}

button.btn {
    background-color: #007B83;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #005f6b;
}

footer {
    background-color: #2A3A4F;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.grid-section {
    padding: 40px;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reptile-card, .sale-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reptile-card img, .sale-card img {
    max-width: 100%;
    border-radius: 5px;
}

.btn-small {
    background-color: #2A3A4F;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
}

.btn-small:hover {
    background-color: #007B83;
}
/* Purchase Page Styles */
.purchase-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.purchase-details {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.image-gallery {
    flex: 1;
}

#main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}

.thumbnail:hover {
    border-color: #007B83;
}

.reptile-info {
    flex: 1;
}

.reptile-info h2 {
    font-size: 2em;
    color: #2A3A4F;
}

.price {
    font-size: 1.8em;
    color: #007B83;
    margin: 10px 0;
}

.details-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.details-list li {
    margin-bottom: 10px;
}

.seller-info {
    margin-top: 30px;
}

.seller-info h3 {
    margin: 0;
    color: #2A3A4F;
}

.btn {
    background-color: #007B83;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.btn:hover {
    background-color: #005f6b;
}

.contact-btn {
    background-color: #4CAF50;
}

.contact-btn:hover {
    background-color: #388E3C;
}
