.header-with-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #2c789c;
    color: white;
    padding: 15px 20px;
    font-family: 'Oswald', Arial, sans-serif;
    text-align: center;
}

.header-with-image img.header-logo {
    height: 50px;
    margin-right: 10px;
}



.small-button {
    background-color: #4e94b5;
    color: white;
    padding: 5px 10px;
    font-size: 0.9em;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.small-button:hover {
    background-color: #337799;
}





.green-button {
    background-color: #228B22;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paddockchat-button {
    background-color: #007C80;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 1.2em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-link {
    color: #FFFFFF; /* Hex code for a shade of blue */
    text-decoration: none;
  }

  .custom-link:hover {
    color: #FFFFFF; /* Hex code for a shade of green */
  }

body {
    /*font-family: Arial, sans-serif;*/
    font-family: 'Oswald', Arial, sans-serif;
    
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #2c789c;
    color: white;
    padding: 15px 20px;
    text-align: center;
    /*font-family: 'Nerko One', cursive;*/
    font-family: 'Oswald', Arial, sans-serif;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #333;
    /*font-family: 'Nerko One', cursive;*/
    font-family: 'Oswald', Arial, sans-serif;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #4e94b5;
    color: black;
}

section {
    padding: 20px;
  /*font-family: 'Nerko One', cursive;*/
    font-family: 'Oswald', Arial, sans-serif;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-post h3 {
    font-size: 1.8em;
    margin-top: 10px;
    /*font-family: 'Nerko One', cursive;*/
    font-family: 'Oswald', Arial, sans-serif;
}

.blog-post p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.blog-post .date {
    font-size: 0.9em;
    color: #999;
    margin-top: 5px;
}

.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.product-card h3 {
    margin: 15px 0;
    font-size: 1.5em;
}

.product-card p {
    font-size: 1em;
    color: #666;
}

.product-card .price {
    font-size: 1.2em;
    color: #2c789c;
    margin: 10px 0;
}

.product-card button {
    background-color: #2c789c;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card button:hover {
    background-color: #1a5673;
}

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



.comment-container {
    border: 3px solid #3498db; /* Blue border */
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Space inside the container */
    max-width: 600px; /* Maximum width of the box */
    margin: 20px auto; /* Center the box with automatic margins */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add a slight shadow for depth */
    box-sizing: border-box; /* Includes padding and border in width calculation */
}

.comments-display-container {
    border: 3px solid #2ecc71; /* Green border */
    background-color: #eafaf1; /* Light green background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Space inside the container */
    max-width: 600px; /* Maximum width of the box */
    margin: 20px auto; /* Center the box with automatic margins */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add a slight shadow for depth */
}

#commentForm {
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
}

#nameInput, 
#commentInput {
    width: 100%; /* Full width of the container */
    max-width: 100%; /* Ensure it does not exceed the container's width */
    padding: 10px; /* Add some padding inside the input fields */
    margin-bottom: 15px; /* Space between fields */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners for inputs */
    box-sizing: border-box; /* Include padding and border in width calculation */
    background-color: #fff; /* White background for the inputs */
}

#commentForm button {
    width: 100%; /* Full width button */
    max-width: 100%; /* Ensure the button fits the container */
    padding: 10px; /* Space inside the button */
    background-color: #3498db; /* Blue button background */
    color: white; /* White text on the button */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth hover effect */
}

#commentForm button:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

#commentsSection div {
    border-bottom: 1px solid #ccc; /* Add a line between comments */
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .comment-container,
    .comments-display-container {
        width: 90%; /* Reduce width for smaller screens */
        padding: 15px; /* Adjust padding for better fit */
    }

    #nameInput, 
    #commentInput, 
    #commentForm button {
        width: 100%; /* Ensure form elements are responsive */
        max-width: 100%; /* Make sure they fit the container */
    }
}





.container {
    display: flex;
    flex-direction: row-reverse; /* Image on the right for larger screens */
    border: 2px solid #000; /* Border around the box */
    padding: 15px; /* Increased padding for a bit more breathing room */
    max-width: 800px; /* Increased maximum width for larger screens */
    width: 90%; /* Slightly wider for medium-sized screens */
    margin: 20px auto; /* Center the container */
    box-sizing: border-box; /* Includes padding and border in the width calculation */
    overflow: hidden; /* Prevents overflow issues */
}

/* Image styling */
.image-box img {
    width: 100%; /* Make the image responsive */
    max-width: 300px; /* Restrict maximum size of the image */
    height: auto; /* Maintains the aspect ratio */
    margin-left: 20px; /* Space between the text and the image */
    margin-right: 40px; /* Increased space to the right of the image */
}

/* Text styling */
.text-box {
    display: flex;
    align-items: center; /* Centers the text vertically */
}

/* Media query for slightly smaller screens */
@media (max-width: 1000px) {
    .container {
        max-width: 95%; /* Expand the container width slightly for medium-sized screens */
        padding: 15px; /* Maintain padding for readability */
    }
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align items */
        width: 100%; /* Full width to fit the screen */
        padding: 10px; /* Add padding to fit content */
    }

    .image-box img {
        max-width: 90%; /* Limit image width to 90% of the container */
        margin-left: 0; /* Remove left margin to center the image */
        margin-right: 0; /* Remove right margin for mobile */
        margin-bottom: 15px; /* Add space below the image */
    }

    .text-box {
        justify-content: center; /* Center the text */
        text-align: center; /* Center-align text for mobile display */
        padding: 0 10px; /* Add padding to the text for better readability */
    }
}

.read-more-btn {
    background-color: #4e94b5;
    color: white;
    padding: 5px 10px;
    font-size: 0.9em;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #337799;
}
