body{
    background-color: #f5f9f3;
}

nav {
    background-color: darkblue;
    height: 80px;
    width: 100%;
    display: flex;   /* Makes items inside the nav arrange in a row (flex layout) */
    align-items: center;   /* Vertically centers the items inside the navigation bar */
    justify-content: space-between;  /* Pushes logo to the left and menu to the right */
    padding: 0 20px;  /* Adds space on the left and right inside the navigation bar */
}

/* LOGO + TITLE */
.logo-area {
    display: flex;  /* Places the logo and title next to each other horizontally */
    align-items: center;
}

.logo {
    height: 55px;      /* Controls the size (height) of the logo image */
    margin-right: 15px; /* Adds space between the logo and the title */
}

.site-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* NAV MENU */
nav ul {
    margin: 0;   /* Removes the default outer space of the list */
    padding: 0;  /* Removes the default inner space of the list */
    list-style: none;  /* Removes the bullet points from the list */
}

nav ul li {
    display: inline-block;  /* Makes the list items appear in a horizontal row */
    margin: 0 15px;  /* Adds space between the menu items */
}

nav ul li a {
    color: white;
    font-size: 18px;
    padding: 8px 12px;  /* Adds space inside each link to make it look like a button */
    text-decoration: none;
}

nav ul li a:hover {
    background-color: yellow;
    color: black;
    border-radius: 5px;  /* Makes the hover background have slightly rounded corners */
}


/* ===============================
   GALLERY PAGE STYLES
================================ */

/* Gallery container */
.gallery-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 images per row */
    gap: 20px;
}

/* Individual gallery item */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

/* Gallery images */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Zoom effect on hover */
.gallery-item:hover img {
    transform: scale(1.2);
}

/* Optional caption styling */
.gallery-caption {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    background-color: #f4f4f4;
}



/* =================== CONTACT PAGE =================== */
form {
  max-width: 500px;              
  margin: 20px auto;             
  padding: 15px;
  border: 1px solid #ccc;        
  border-radius: 6px;
  background: #f9f9f9;           
}

form label {
  display: block;                
  margin: 8px 0 4px;
}

form input,
form textarea {
  width: 100%;                   
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
}
form button {
  background: #2e8b57;           
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #246b45;           /* Darker green on hover */
}






/* ===============================
   SERVICES PAGE STYLES
================================ */

/* ID – used ONCE */
/* ===============================
   SERVICES SECTION
================================ */

/* Unique services section */
#services {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Reusable section heading */
.section-title {
    text-align: center;
    font-size: 32px;
    color: darkblue;
    margin-bottom: 12px;
}

/* Reusable intro paragraph */
.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services grid layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual service card */
.service-card {
    background-color: gold;
    
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Service title */
.service-title {
    color: maroon;
    margin-bottom: 10px;
}

/* Service description text */
.service-text {
    line-height: 1.6;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}




