/* Import Google Fonts */
/* Caveat: 400, 700 and Grandiflora: 400 */
@import url('https://fonts.googleapis.com/css?family=Caveat:400,700|Grandiflora+One:400|Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800');
/* Set green background and white text */
body {
    background-color: #2df154; /* Green background */
    /* Gradient Background */
    background: linear-gradient(to bottom, #2df154 0%, #2df154 0%, #1f4d28 60%, #1f4d28 100%);
    
    background: linear-gradient(180deg, #2df154, #1f4d28);
   
    color: #fff; /* White text */
    font-size: 16px; /* Default font size */
    font-family: 'Sarabun', sans-serif; /* Use Sarabun font */
}

h1, h2, h3, h4, h5, h6 {
    color: #fff; /* White text for headings */
    font-family: 'Grandiflora One', cursive; 
    font-weight: bold;
    text-shadow:#0b3314 0px -2px 3px; /* Add shadow to heading */
}

h2 {
    font-size: 4em; /* Larger heading */
    border-top: dashed 4px #FFFFFF70;
    padding-top: 0.6em;
    margin-top: 0.6em;
    
    border-bottom: solid 3px #06260e50;
    padding-bottom: 0.75em;
    margin-bottom: 0.6em;
}
    h2 span {
        font-size: 0.75em;
    }
h3 {
    font-size: 3em;
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
}
h4 {
    font-size: 2em;
}
/*media query for smaller screens*/
@media (max-width: 768px) {
    h2 {
        font-size: 2.25em; /* Larger heading */
    }
    h3 {
        font-size: 1.75em;
    }
    h4 {
        font-size: 1.5em;
    }
}

hr {
    border-color: #02130650;
    margin: 2em 0;
    clear: both;
    width: 100%;
}
a {
    color: #fff; /* White text for links */
    text-decoration: underline; 
}
a:hover {
    color: #f0f0f0; /* Slightly off-white text on hover */

}

a.btn{
    text-decoration: none;
}

hr.split {
    border-color: #02130650;
    border-width: 2px;
    margin: 1em 0;
}

.note{
    font-size: 0.8em;
}

/* Style the header */
.jumbotron {
    background-color: transparent; /* Transparent background */
    margin-bottom: 0; /* Remove default margin */
    padding: 80px 0; /* Adjust padding */
    font-family: 'Grandiflora One', cursive; /* Use Grand Hotel font for the heading */
    text-transform: uppercase; /* Uppercase text */
    
    color:#021306; /* Dark green text */
}
.jumbotron img {
    max-height: 200px; 
    max-width: 90%; 
    margin: auto;
}

.jumbotron h1 {
    color:#06260e;
    font-size: 5em; /* Larger heading */
    text-shadow:#FFFFFF50 0px 2px 4px; /* Add shadow to heading */
    font-weight: bold;
}
.jumbotron p{
    font-family: 'Caveat', cursive; /* Use Caveat font for the text */
    text-shadow:#FFFFFF50 0px 2px 4px; /* Add shadow to heading */
    font-size: 1.3em;
}
/*media query for smaller screens*/
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 4em; /* Larger heading */
    }
    .jumbotron p{
        font-size: 1.2em;
    }

}


/* Style the navigation menu */
.navbar {
    background-color: #19341d; /* Dark background */
    border-color: #19341d; /* Dark border */
    text-align: center;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
    text-align: center; /* Center align the navigation entries */
    position: fixed; /* Make the navbar fixed */
    top: 0; /* Align to the top */
    width: 100%; /* Set full width */
    z-index: 1000; /* Set z-index to make sure it's on top */
}

 .navbar-brand {
    color: #fff; /* White text for brand */
    text-decoration: none;
    font-family: 'Grandiflora One', cursive; /* Use Grand Hotel font for the brand */
    font-weight: bold;
}

.navbar-brand img {
    max-height: 34px;
}

.navbar-nav > li > a, .navbar-toggler-icon {
    color: #fff; /* White text for links */
    text-decoration: none;
}
.navbar-nav > li.active > a {
    background-color: #06260e; /* Darker background on active */
}


.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    background-color: #0f2e14; /* Darker background on hover/focus */
}

/* Style the content sections */

.container img:first-child {
    max-height: 200px; max-width: 80%; margin: auto;
}

.container hr.header {
    margin-top: 0; margin-bottom: 15px; border-width: 15px;
}

.container h3 {
    color: #fff; /* White text for headings */
}

.container p, .container ul{
    color: #f0f0f0; /* Slightly off-white text for paragraphs */
    font-size: 1.3em;
    font-weight: 200;
}

.container p, .container ul.checklist{
    list-style: none;  
    margin: 0 10%; 
    padding: 0;
}

.container ul h4 {
    font-size: 1.5em;
}

.container ul li {
    margin-bottom: 1em;
}
/*media query for smaller screens*/
@media (max-width: 768px) {
    .container img:first-child {
        max-width: 50%;
    }
    .container img.large {
        max-width: 80%;
    }
    .container p, .container ul{
        font-size: 1.2em;
    }
    .container ul h4 {
        font-size: 1.1em;
    }
    .container ul {
        text-align: left;
    }
}

/* Style the footer */
footer {
    background-color:#021306; /* Dark green background */
    color: #fff; /* White text */
    padding: 20px 0; /* Adjust padding */
    margin-top: 4em;;
}

.mobile {
    display: none;
}
/*media query for smaller screens*/
@media (max-width: 768px) {
    .mobile {
        display: block;
    }
}