/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffe4c4;
    color: #ffffff;
}

/* --- Navigation Bar Styling --- */
/* --- Navigation Bar Styling (Cleaned) --- */
nav {
    background-color: #2a2a2a; /* Dark background */
    padding: 1em 0;
}

.navbar {
    list-style: none; /* Remove default list styling */
    display: flex;
    justify-content: center; /* Centers the links horizontally */
    gap: 2rem; /* Space between links */
    margin: 0;
    padding: 0;
}

.navbar li a {
    color: #c09d7d; /* Skin-tone color for the links */
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem; 
    transition: color 0.3s ease; 
}

.navbar li a:hover {
    color: #553b1d; /* Bright pink on hover */
    text-decoration: underline;
}
/* ... rest of your cleaned CSS ... */

/* --- Main Content Section and Boxes --- */


/* Headings styling */
h1, h2, h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #c7a07a;
    text-shadow:
      -1px -1px 0 #000,
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000;
}

/* Lists and links */
ul, ol {
    line-height: 1.6;
}

a {
    /* Set color for all non-nav links */
    color: #c09d7d; 
}

/* Card styling - Added margin-bottom for spacing between cards */
.card {
    background-color: #645e57;
    border-radius: 20px;
    text-align: center;
    height: auto;
    width: 520px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    /* Center the card and add space below */
    margin: 10px auto 40px auto; 
}

/* Paper box styling - Added margin-bottom for spacing between boxes */
.paper-box {
    background-color: #645e57;
    border-radius: 20px;
    text-align: center;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    /* Add space below the box */
    margin-bottom: 40px; 
}
.contact-card {
    background-color: #645e57;
    border-radius: 20px;
    text-align: center;
    height: auto;
    width: 520px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    /* Center the card and add space below */
    margin: 10px auto 40px auto; 
}
.card1 {
   background-color: #645e57;
    border-radius: 20px;
    text-align: center;
    height: auto;
    width: 520px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    /* Center the card and add space below */
    margin: 100px auto 400px auto; 
  
} 
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}