body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fef7f7;
    color: #333;
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    width: 100%;
    background-color: #ffe0e6;
    padding: 1px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
header a:hover {
    color: #ff4da6;
    text-shadow: 0px 0px 10px rgba(255, 77, 166, 0.8); /* Glowing effect */
}

header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #d4007b;
    height: 20px;
    margin: 10px 0 0 0;
    line-height: 1.1;
    display: inline-block; /* Prevents weird text wrapping */
}
a {
    text-decoration: none;
    color: inherit; /* Makes the link the same color as h1 */
}
a:hover {
    /* shadow neon box */
	 /* color: #ff4da6;
    box-shadow: 0px 0px 15px rgba(255, 77, 166, 0.8); 
	 /* neon glow */	 
	 color: #ff4da6;
    text-shadow: 0px 0px 20px rgba(255, 77, 166, 0.8); /* Glowing effect */
}
nav {
    display: flex;
    justify-content: center; /* Ensures links are centered */
    margin: 15px 0 0 0;
}
nav a {
    margin: 0 5px;
    padding: 0px 0px;
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth hover effect */
    text-decoration: none;
    color: #d4007b;
    font-size: 18px;
}
nav a:hover {
	 /* shadow neon box */
	 color: #ff4da6;
    box-shadow: 0px 0px 15px rgba(255, 77, 166, 0.8); 
    /*color: #ff4da6;
    text-shadow: 0px 0px 20px rgba(255, 77, 166, 0.7);
    /* transform: scale(1.05); /* Slight pop effect */
}
.hero {
    background: url('fairytale-background.jpg') center/cover no-repeat;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.hero h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    height: 40px;
    margin-bottom: 100px;
}
section {
    padding: 40px;
    text-align: center;
}
section h3 {
    color: #d4007b;
}
.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}
.card {
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px;
    width: 50%;
}
.card h4 {
    color: #d4007b;
}
main {
    max-width: 800px;
    margin: 0 auto;
}
input, textarea {
    width: 92%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
}
#calendar {
    margin-top: 20px;
    min-height: 400px;
}
.custom-card {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.custom-card h4 {
    color: #d4007b;
}
footer {
    background-color: #ffe0e6;
    text-align: center;
    padding: 20px;
}
footer p {
    font-size: 14px;
}

/* Image layout styles */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center items horizontally */
	 align-items: center; /* Center items vertically if container has a height */
}

.image-card {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.image-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border: 2px solid #ffe0e6;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    main {
        padding: 10px;
    }
}
.child-entry-container {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reduce the gap between the child entries */
    max-width: 95%
}

.child-entry {
    display: flex;
    grid-template-columns: 1.5fr .5fr 1.5fr;
    gap: 5px; /* Reduce the gap between the input fields */
    align-items: center;
}

.child-entry input {
    font-size: 14px;
}
.child-entry input::placeholder {
    font-size: 12px; /* Placeholder font size */
    color: #888; /* Placeholder text color */
}
.child-entry button {
      padding: 8px;
      font-size: 14px;
     }
.remove-child {
    font-size: 12px;  /* Smaller text */
    padding: 2px 5px; /* Smaller padding */
    margin-left: 10px; /* Space it out from inputs */
    background-color: #ff4d4d; /* Red color for visibility */
    color: white; /* White text */
    border: none;
    border-radius: 3px; /* Slightly rounded corners */
    cursor: pointer;
}

.remove-child:hover {
    background-color: #cc0000; /* Darker red on hover */
}
.child-entry label {
    font-size: 1px; /* Adjust the font size for labels (descriptions) */
    font-weight: bold; /* Optional: Make the labels bold */
    margin-right: 1px; /* Space between label and input */
}