
/* Body and the fonts       */
body {
    background-color: #e8d9c4; /* rustic light brown */
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #3a2f2a;
}
/*2 different google fonts*/
h1, h2 {
    font-family: 'Open Sans', serif;
}
h3{
  font-family: 'Cormorant Garamond', serif;
}


/* Header section and tagline*/
header {
    background-color: #f5f5f5;
    padding: 10px 30px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo + Title */
.logo-and-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-and-title img {
    height: 60px;
    width: auto;
}

.title-text h1 {
    margin: 0;
    font-family: 'Quintessential', cursive;
    font-size: 24px;
}

.title-text .tagline {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #555;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-family: 'Quintessential', cursive;
}

.main-nav ul li a:hover {
    color: #855d3d;
}



.tagline {
    font-size: 1rem;
    margin-top: 5px;
}

/*navigation section for the top of pages (clickable)*/
nav ul {
    list-style: none;
    background-color: #b49a82;
    padding: 10px;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 12px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main a:link {
  color: #23022e; /* Russian Violet */
}

main a:visited {
  color: #a53860; /* Raspberry Rose */
}

main a:hover {
  color: #de89be; /* Persian Pink */
  text-decoration: none;
}

main a:focus {
  color: #b10f2e; /* Rosewood */
  outline: 2px solid #b10f2e; /* for accessibility */
  outline-offset: 2px;
}

main a:active {
  color: #4c3b4d; /* English Violet */
}
footer a:link {
  color: #e5eafa; /* Lavender Web - light */
}

footer a:visited {
  color: #a53860; /* Raspberry Rose */
}

footer a:hover {
  color: #23022e; /* Russian Violet */
  text-decoration: underline;
}
nav ul {
  display: flex;
  justify-content: center;
  flex-direction: row; /*default to row*/
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;

}

nav li {
  margin-right: 10px; /* spacing between buttons */
}

nav ul {
  display: flex;
  justify-content: center;
  flex-direction: row; /*default to row*/
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;

}
.western {
    font-family: 'Rock Salt', cursive;  /* western/decorative font */
    font-weight: bold;                  /* make it bold */
    font-size: 20px;                    /* adjust as needed */
    color: #333;                        /* dark gray for readability */
}

.quintessential {
    font-family: 'Quintessential', cursive;  /* your chosen font */
    font-weight: normal;                      /* optional: adjust boldness */
    font-size: 23px;                          /* adjust size as needed */
    color: #333;                              /* dark gray for readability */
}


nav li {
  margin-right: 10px; /* spacing between buttons */
}

nav a:link, nav a:hover {
  
  font-size: 1.0rem;
  padding: 15px 32px;
  text-decoration: none;
  border-radius: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
nav a:link {
  background-color: #855e3de7; 
  color: #e5eafa; 
}

nav a:hover {
  background-color: #8a1202; /* Red */
  color: #f0f0f0;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center; /* center the whole grid */
    margin: 40px auto;
    max-width: 900px; /* optional: keeps grid from stretching too wide */
}

.info-box {
    background-color: #855d3da2;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.center-box {
    justify-self: center; /* centers this specific box in the grid */
    width: 300px;         /* optional: same width as top boxes */
}

.info-box h2 {
    font-family: 'Quintessential', cursive;
    margin-bottom: 10px;
    font-size: 22px;
}

.info-box p {
    font-size: 16px;
}


/* the announcment "banner" that i have in the home page*/

.info-banner {
    background-color: #d9c2a3;
    padding: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}


/* Image on home page*/

.home-img img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}
label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto 20px auto;
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 60px;  /* Add this line - creates space at bottom */
}

.contact-box {
    background-color: #b49a82;
    padding: 40px;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    
}

textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: vertical; /* user can resize height only */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* optional professional font */
}

.disclaimer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* professional font */
    font-weight: bold; /* makes text bold */
    font-size: 16px;
    color: #333; /* dark gray for readability */
    margin-bottom: 15px; /* spacing from the next input */
}



form {
    display: flex;
    flex-direction: column;
}

input,
select {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-group input {
    width: auto;
}


/* About Page*/

/* Story Box */
.story-box {
    background-color: #865d5452;  /* light background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto 20px auto;  /* center horizontally with spacing below */
    box-sizing: border-box;
}

.about-boxes {
    display: flex;
    justify-content: center; /* center both boxes horizontally */
    gap: 40px;               /* space between boxes */
    flex-wrap: wrap;         /* stack on smaller screens */
    margin-top: 30px;        /* spacing from story section */
    margin-bottom: 60px;  /* Add this - creates space at bottom */
}

.info-box {
    background-color: #865d5452;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.info-box h2 {
    margin-bottom: 15px;
}

.info-box ul,
.info-box ol {
    margin: 0;
    padding-left: 20px;
}

.about-img-box {
    text-align: center; /* centers the image horizontally */
    margin: 20px 0;     /* spacing above and below the image */
}

.about-img-box img {
    max-width: 300px;   /* adjust as needed for size */
    width: 100%;        /* makes it responsive */
    height: auto;       /* keeps original aspect ratio */
    border-radius: 10px; /* optional: rounded corners */
}


th {
  background-color:  #e2ba9f /* header color for background */


}

td {
  border: 1px solid #f7f3f0;   /* border around each of the cell */
  padding: 10px;            /* space inside of th cells */
  text-align: left;
}

tr:nth-child(even) {
  background-color: #bea38ca2; /* color for better readibility */
}



/* Gallery pagte            */
/* Intro text */
.gallery-intro {
    text-align: center;
    max-width: 600px;
    margin: 70px auto;
    font-weight: bold;
}

/* Grid container */
#pictures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* responsive columns */
    gap: 20px;        /* space between boxes */
    padding: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Boxes for images remain the same */
.col {
    background-color: #865d5452;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* keeps captions at bottom */
    align-items: center;
    height: 300px; /* fixed height for all boxes */

}

/* Hover effect */
.col:hover {
    transform: translateY(-5px);
}

/* Images inside boxes */
.col img {
    width: 100%;          /* fills box width */
    height: 200px;        /* fixed height for consistency */
    object-fit: cover;    /* crops images to fit box without stretching */
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
}


/* Captions */
.col figcaption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color:#3d251e;
}

/* Seasonal gallery uses the same grid as main gallery */
#seasonal-pictures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

#seasonal-pictures .col {
    background-color: #865d5452;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
  
}

#seasonal-pictures .col:hover {
    transform: translateY(-5px);
}

#seasonal-pictures .col img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

#seasonal-pictures .col figcaption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #3d251e;
}



/* Footer on all the pages             */

footer {
    background-color: #855d3da2; /* matches header for consistency */
    padding: 20px 30px;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 0;
    font-family: 'Cosmic Sans', cursive;
}

.social-links a {
    margin-left: 10px;
    display: inline-block;
}

.social-links img {
    width: 50px;    /* size of icon */
    height: 50px;
    transition: transform 0.2s ease;
}

.social-links img:hover {
    transform: scale(1.1);  /* small zoom on hover */
}
.facebook-link img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

.facebook-link img:hover {
    transform: scale(1.1);
}



/* Media section   */
@media screen and (max-width: 600px) {

    /* Header stacks vertically */
    .header-inner {
        flex-direction: column;
        align-items: center;  /* Center everything */
        gap: 15px;
        text-align: center;
    }

    .home-img img {
        max-width: 350px;  /* Much smaller on mobile */
    }

    /* Logo and title section */
    .logo-and-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-and-title img {
        max-width: 100px;  /* Make logo smaller on mobile */
    }

    /* Navigation stacks vertically */
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    nav ul li {
        display: block;
        margin: 8px 0;
    }

    /* Main image gets much smaller */
    .image-section img {
        width: 100%;
        max-width: 400px;  /* Limits how big it can get */
        height: auto;
    }

    /* Gallery boxes adapt to mobile */
    .col {
        height: auto;
    }
    
    .col img {
        height: auto;
    }

    /* Info section stacks */
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .center-box {
        width: auto;
        justify-self: auto;
    }
}