@charset "utf-8";

/* Import fonts */
@font-face {
    font-family: Indie;
    src: url("IndieFlower-Regular.ttf");
}

/* Index HTML */
/* Basic Styling */
body {
    background-color: grey;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: grey;
}

/* Main Titles */
h1 {
    color: #e75480;
    text-align: center;
    font-size: 55px;
    font-family: Indie, cursive;
    margin: 20px 0;
}

h2, h3 {
    font-family: Indie, cursive;
    color: white;
}

p {
    font-family: Indie, cursive;
    font-size: 15px;
    text-align: center;
    color: white;
    margin: 10px;
}
/* Navigation */
nav {
    margin-top: 10px;
}

.toplinks {
    background-color: #333;
    overflow: visible;
}

.toplinks ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #333;
}

.toplinks a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.toplinks li {
    margin: 0 15px;
}
/* Submenu Color */
ul.submenu {
    color: black;
}
/* Containers */
.title-container {
    color: lightpink;
    background-color: lightpink;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.corner-pic {
    width: 100px;
    height: auto;
    border-radius: 50%;
    margin-right: 15px;
}
/* Sidebar, gallery, policies, and sections */
.sidebar,
.policies,
section#main,
section#topics > article {
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.policies h2,
.policies h3 {
    color: white;
    font-family: Indie, cursive;
    text-align: center;
    margin-bottom: 10px;
}

/* Specific for gallery */
.gallery {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}
.gallery-img-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}
/* Footer and header specific styles */
header {
    background-color: grey;
    color: pink;
    text-align: center;
    padding: 10px 0;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: Indie, cursive;
}
/* Services Section */
.services-showcase {
    text-align: center;
    padding: 30px 10px;
    background: linear-gradient(to bottom right, #ffcce0, #ffb3d9);
    border-radius: 20px;
    margin: 30px auto;
    width: 90%;
    max-width: 1000px;
}

.services-showcase h2,
.booking-cta h2 {
    font-family: Indie, cursive;
    font-size: 32px;
    color: grey;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-card {
    background-color: white;
    color: grey;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    font-family: Indie, cursive;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}
/* Booking Call To Action */
.booking-cta {
    text-align: center;
    padding: 1rem;
    margin: 2rem auto;
    background-color: white;
    border-radius: 15px;
    max-width: 600px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-cta p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: Indie, cursive;
}
/* Contact*/ 
.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .contact-box {
    background-color: white;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    font-family: 'IndieFlower', cursive;
    width: 350px;
    max-width: 90%;
    text-align: center;
  }
  
  .contact-box h2 {
    color: #ff69b4; /* soft pink for titles */
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .contact-box p {
    font-size: 18px;
    margin: 10px 0;
  }
  
  .contact-box a {
    color: #333;
    text-decoration: underline;
  }

.contact-box p, .contact-box strong, .contact-box a {
    color: #333;
    font-size: 18px;
    display: block;
    visibility: visible;
}
  
  .hours-list {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
  }
  
  .hours-list li {
    font-size: 16px;
    margin-bottom: 8px;
  }
/* Search Bar */
.search-container input {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px;
}

.search-container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: pink;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #ff99cc;
}

#search-result {
    margin-top: 15px;
    font-size: 16px;
    color: black;
}
/* End of Index HTML */

/*Search HTML */
.search-page {
    background-image: url('backgroundimg.jpg'); /* Replace with your actual image filename */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: 'IndieFlower', cursive; /* Match your other pages' font */
    color: grey;
}

/* Center the whole container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* Style the search box container */
.search-container {
    background: rgba(255, 255, 255, 0.5); /* Light white background for readability */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.search-heading {
    color: black;
    font-family: Indie, cursive;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style the input box and button */
#search-box {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid pink;
    border-radius: 10px;
    font-size: 16px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: pink;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: hotpink;
}
/* Style the search result message */
#search-result {
    margin-top: 15px;
    font-weight: bold;
    color: darkred;
}
/* End of Search HTML */

/* About html */
nav {
    background-color: #ffc0cb; /* pink */
    padding: 10px 0;
}
  
nav ul.mainmenu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
  
nav ul.mainmenu li a {
    text-decoration: none;
    color: grey;
    font-family: Indie, cursive;
    font-size: 1.1rem;
}
  
nav ul.mainmenu li a:hover {
    color: black;
    text-decoration: underline;
}

.about-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: black;
    font-family: Indie, cursive;
}

.black-heading {
    color: black;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
}
.about-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-pic {
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.paragraph-box {
    background-color: pink;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.paragraph-box p {
    color: black;
}

.journey-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.media-box {
    text-align: center;
    max-width: 300px;
}

.media-box img, .media-box video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
    text-align: center;
}

.journey-photo {
    margin-top: 30px;
    text-align: center;
}

.journey-photo img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: black;
}

.audio-section {
    margin-top: 40px;
    text-align: center;
}

.audio-section audio {
    width: 100%;
    max-width: 400px;
}

.audio-section h3 {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
/* End of About Html */

/* Mobile styles (overrides) */
@media screen and (max-width: 768px) {
    .gallery-img {
        width: 100%;
    }
 
    .container {
        padding: 10px;
    }

    nav.horizontal ul {
        background-color: black;
    }

    nav.horizontal li {
        text-align: center;
        padding: 10px;
    }

    nav.horizontal a {
        color: black;
        display: block;

    }

    nav.horizontal a:hover {
        background-color: black;
    }
    nav.toplinks ul.mainmenu {
        display: flex;
        flex-direction: column; /* Stacks the menu items vertically */
        padding: 0;
        margin: 0;
        list-style: none;
        background-color: black; /* Optional for visibility */
      }
    
      nav.toplinks ul.mainmenu li {
        text-align: center;
        padding: 10px;
      }
    
      nav.toplinks ul.mainmenu a {
        display: block;
        color: white; /* Adjust for contrast */
        text-decoration: none;
      }
 }

