/* Plain white background for index.html */
.plain-bg {
    background-color: #ffffff;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Remove background image for gallery.html */
.bgimg {
    background: none; /* Remove background image */
}

.topleft{
    position: absolute;
    left: 12vw;
    top: 12vh;
    z-index: -1;
    height: 40%;
}

.rightmiddle{
    position: absolute;
    left: 30vw;
    top: 6vh;
    z-index: -2;
    height: 70%;
}

.rightbottom{
    position: absolute;
    left: 60vw;
    top: 46vh;
    z-index: -1;
    height: 50%;
}

.textmidbox{
    margin-left: 10vw;
    background-color: #FFDF00;
    width: 80vw;
    height: 98vh;
}

.textbox{
    color: inherit;
    font-size: 1.5rem;
    text-decoration-line: inherit;
}

.greenbox{
    background-color: gold;
    border-radius: 10px;
    color: darkgoldenrod;
    font-family: "Papyrus", fantasy;
    margin-top: 6vh;
    margin-left: 85vw;
    padding: 0.5rem;
    width: max-content;
}

.icon{
    height: 24px;
    width: 24px;
    padding-top: 0.6rem;
}

i.fa-instagram{
    /*color: greenyellow;*/
    color: #FD1D1D;
}

i.fa-twitter{
    color: #00acee;
}

/* Adjusted styles for body */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8; /* White bone theme */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Placeholder to make content large */
.main-placeholder {
    height: 70vh; /* Adjust height as needed */
    width: 100%;
}

/* Gallery styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    max-width: 200px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    width: 150px; /* Ensure consistent width */
    height: 150px; /* Ensure consistent height */
    object-fit: cover; /* Maintain aspect ratio while filling dimensions */
}

/* Gallery image styles for bg2.png */
.gallery img[src="assets/bg2.png"] {
    transform: none; /* Remove zoom effect */
    transition: none; /* Remove transition */
    width: 150px; /* Match width of other images */
    height: 150px; /* Match height of other images */
    object-fit: cover; /* Maintain aspect ratio while filling dimensions */
}

/* Left-aligned gallery styles */
.gallery.left-aligned {
    justify-content: flex-start; /* Align images to the left */
    align-items: flex-start; /* Align images to the top */
    margin-left: 20px; /* Add some spacing from the left edge */
    margin-top: 20px; /* Add spacing from the top */
    flex-direction: column; /* Stack images vertically */
    gap: 15px; /* Add spacing between images */
}

/* Gallery styles for white space on the left */
.gallery.white-space-left {
    position: absolute;
    left: 0; /* Align to the left edge */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap: 15px; /* Add spacing between images */
    padding-left: 20px; /* Add spacing from the left edge */
}

/* Gallery link styles */
.gallery-link {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #F4D565; /* Updated button color */
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.gallery-link:hover {
    background-color: #d4b04e; /* Slightly darker hover effect */
}

/* Back to Home link styles for gallery */
.back-home-link {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #F4D565; /* Updated button color */
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.back-home-link:hover {
    background-color: #d4b04e; /* Slightly darker hover effect */
}

/* Letters button styles */
.letters-link {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #ff69b4; /* Love pink */
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    display: inline-block;
    z-index: 2;
}

.letters-link:hover {
    background-color: #e055a1; /* Slightly darker on hover */
}

/* Letters section styles */
.letters-section {
    margin-top: 40px;
    padding: 24px 32px;
    background-color: #ff69b4; /* Love pink */
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255, 105, 180, 0.15);
    width: 80vw;
    max-width: 600px;
    text-align: center;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 1.3rem;
}
    padding: 24px 32px;
    background-color: #ff69b4; /* Love pink */
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255, 105, 180, 0.15);
    width: 80vw;
    max-width: 600px;
    text-align: center;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 1.3rem;
}

.letters-link {
    position: absolute;
    top: 50px; /* Just below the Gallery button (which is at top: 10px + height + margin) */
    right: 10px;
    background-color: #ff69b4; /* Love pink */
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    display: inline-block;
    z-index: 2;
}

.letters-link:hover {
    background-color: #e055a1; /* Slightly darker on hover */
}
