/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Define a custom font for the headers (Quicksand) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
}

/* Style the navigation menu with Quicksand for buttons */
header {
    background-color: peachpuff;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #ff6f61;
    transition: background-color 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

nav a:hover {
    background-color: #ff4c3a;
}

/* Style the main content section */
.section {
    padding: 40px;
    text-align: center;
}

.image-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
}

.dateandtime {
    width: 100%
    max-width: 900px;
    height: auto;
    text-align: left;
}

/* Style the contact form with Montserrat for text boxes */
.contact-section {
    background-color: peachpuff;
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: peachpuff;
    padding: 20px;
    border-radius: 20px;
}

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

label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Use Montserrat for text boxes */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif; /* Montserrat font for text boxes */
}

/* Style the "SEND YOUR MESSAGE" button */
.peachy-button {
    background-color: #ff6f61;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.peachy-button:hover {
    background-color: #ff4c3a;
}

/* Media Query for Portrait Mode */
@media (orientation: portrait) {
    .peachy-button {
        padding: 10px 15px; /* Adjust button padding for portrait mode */
        font-size: 16px; /* Reduce font size for portrait mode */
    }

    /* Adjust top navigation buttons for portrait mode */
    nav a {
        padding: 8px 12px; /* Adjust button padding for portrait mode */
        font-size: 12px; /* Reduce font size for portrait mode */
    }
}

/* Style the post container */
.post {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text content */
    //background-color: peachpuff;
    //padding: 25px;
    //border-radius: 20px;
    //max-width: 900px;
}

/* Style the image (you can adjust the width and height as needed) */
.post-content img {
    width: 600px; /* Adjust to your desired image width */
    height: auto;
    max-width: 100%; /* Ensure it doesn't exceed its container width */
    border-radius: 20px;
}

/* Style the text content */
.post-text {
    margin-top: 20px; /* Add spacing between image and text */
    max-width: 900px; /* Ensure text doesn't exceed image width */
    overflow: hidden; /* Hide overflowing content */
    margin: 20px auto;
    text-align: justify;
}

/* Style the text inside the post-text div */
.post-text p {
    margin: 10px 0; /* Add spacing between paragraphs */
}

/* Style the footer element */
footer {
    text-align: center;
    background-color: #f0f0f0;
    padding: 10px 0;
    font-size: 12px; /* Adjust the font size as needed */
}

/* Style the copyright text */
footer p {
    margin: 0;
}

/* Style the "Welcome to website" section */
.welcome {
    text-align: center;
    font-size: 50px; /* Adjust to your desired size, using viewport units */
    font-family: 'Montserrat', sans-serif; /* Use the Quicksand font */
    font-weight: 100;
    margin-bottom: 20px; /* Add spacing below the text */
}

.welcome-image {
    display: inline-block; /* Allow text and image to be inline */
    max-width: 100%; /* Limit the width of the image */
    height: 10px; /* Maintain image aspect ratio */
    vertical-align: middle; /* Vertically align the image with text */
    margin-left: 10px; /* Add spacing to the left of the image */
}
