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

html {
    scroll-behavior: smooth;
}

/* 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;
}

.image-container-logo img {
    width: 100%;
    max-width: 400px;
    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;
}

.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 */
}

.contact {
    text-align: center;
    font-size: 25px; /* 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 */
}

/* Style the post separator */
.post-separator {
    border-top: 1px solid #ccc; /* Adjust color and thickness as needed */
    margin: 20px 0; /* Add spacing above and below the separator */
}

/* Style the post separator */
.post-separator {
    text-align: center; /* Center the asterisks horizontally */
    font-size: 24px; /* Adjust font size as needed */
    margin: 20px 0; /* Add spacing above and below the separator */
}

.post-separator-img {
    display: block; /* Ensure it's displayed as a block element */
    margin: 20px auto; /* Center the image horizontally and add spacing */
    max-width: 100%; /* Make sure the image scales with the container */
    /*max-height: 64px;*/
}

/* Initial style for the header */
/* Initial style for the header */
#top-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: peachbuff; /* Adjust background color as needed */
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Style for the header when it pops back */
#top-section.popped {
    padding: 12px;
    background-color: peachbuff; /* Adjust background color as needed */
    font-size: 12px;
    box-shadow: none;
}

body {
    margin: 0;
    padding: 0;
    /*overflow: hidden; /* Hide overflow to prevent scrolling during animation */
}

.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use viewport height for full-screen coverage */
    background-color: peachbuff; /* Set background color for your logo */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Add animation transitions */
}

.logo-container img {
    max-width: 100%; /* Maintain maximum width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any residual spacing */
    margin: 0 auto; /* Center horizontally */
    background-color: peachbuff;
}

.main-content {
    opacity: 0;
    /* Style your main content as needed */
}
