@charset "utf-8";
/* CSS Document */
/* About Page Styles */

/* General Styles */
body {
    font-family: 'Barlow SemiCondensed', sans-serif;
	background-image: url("../Images/backgrounds/page2bg.svg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
    background-color: #e6c068;
    margin: 0;
    padding: 0;
	height: 100%;
	overflow: hidden;
}

main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
	padding: 20px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.heading-icon {
    position: absolute;
    top: 10px;
    right: 40px;
	margin: 0;
    z-index: 3;
	margin-bottom:100px;
}

/* Menu Button */
.menu-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 3;
}

.nav-menu {
    display: none;
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 60px;
    left:20px;
    width: auto;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 10;
	transition: all 0.3s ease; /* Smooth transition */
	white-space:nowrap;
	text-align: left;
	max-width: 300px;
}
.nav-menu.show {
    display:flex; 
}

.nav-menu a {
    text-decoration: none;
    color:#e6c068 ;
    font-weight: bold;
    padding: 5px 0;
	display: block;
}

.nav-menu a:hover {
    text-decoration: underline;
}
.menu img:hover {
    transform: scale(1.1);
}

/* Main Sections */
/* Intro Text and Second Paragraph */
.intro-container {
    display: flex; /* Align the text blocks horizontally or vertically */
    flex-direction: column; /* Change to row for horizontal alignment if needed */
    align-items: flex-end; /* align items to the right*/
    justify-content: flex-start;
    text-align: center; /* Center align text */
    max-width: 70%;
    margin: 20px auto ; /* Space around the container */
    gap: 10px; /* Space between the intro-text and second-paragraph */
    z-index: 2;
	padding-right: 10px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    font-weight: bold;
    font-style: italic;
	text-align: right;
	max-width: 100%;
	margin-top: 50px;
}

.second-paragraph {
    font-size: 18px;
	line-height: 1.8;
    color: #000000;
    z-index: 2;
    text-align: left;
    max-width: 100%;
	font-weight:400;
	margin: 20px auto;
	padding-left: 0px;
}

/* Highlights and Services */

.highlight-text {
	font-family: 'Antonio', sans-serif;
	text-align: left;
    font-size: 24px;
    font-weight: bold;
	font-style: italic;
    color: #614900;
	text-shadow: 74px -43px 100px rgba(0, 0, 0, 0.31);
    margin: 20px auto;
	max-width: 80%;
    z-index: 2;
	padding-left:140px
}

.services-list {
    margin: 20px auto;
    padding-left: 40%;
    list-style-type: disc;
    max-width: 80%;
    color: #000;
	z-index: 2;

}

.service-list li {
	margin-bottom: 50px;
	font-size:18px;
	line-height: 1.6;
}

.services-list strong {
    color: #b3892b;
}

/* Vision and Mission */
.vision-mission {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
    gap: 20px; /* Space between sections */
    margin: 20px auto;
	max-width: 80%;
	margin-top:50px;
}

.vision-section, .mission-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
	flex: 1;
}

.vision-section img, .mission-section img {
    flex-shrink: 0;
    width: 100px;
    height: auto;
}

.vision-text, .mission-text {
    font-size: 16px;
    color: #000;
    max-width: 300px;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #000;
}

@media (max-width: 768px) {
	body {
		overflow: auto;
	}
	main { 
	height: auto;/* Allow main content to adjust height naturally */
	}
	
	.intro-container {
        max-width: 70%; /* Reduce width for smaller screens */
		align-items: flex-start;
    }
	
	.intro-text, .second-paragraph {
        font-size: 16px;
		max-width: 100%;
		tex-align: center;
		margin: 10px auto;
	}
	.second-paragraph {
        margin-right: 0; /* Remove fixed right margin */
        margin-left: 0;
        padding-left: 0px;
		text-align: justify;/* Add padding for readability */
    }
	
	.vision-mission {
		flex-direction: column; /* Stack items vertically */
	}
    .vision-section, .mission-section {
        flex-direction: row; /* Ensure images and text remain side-by-side */
    }
	
    .menu-button {
        top: 10px;
        left: 10px;
    }

    .heading-icon {
        top: 10px;
        right: 30px;
        width: 25%;
    }
	 .nav-menu {
        width: auto; /* Adjust to fit smaller screens */
        left: 5%;
        right: 5%;
    }
	.service-list {
		padding-left: 5%; /* Reduce indentation */
		padding-right: 5%;
        max-width: 90%; /* Allow the list to take full width */
        margin: 20px auto; /* Center the list */
        text-align: left; /* Ensure the list items are aligned to the left */
    }

    .services-list li {
        font-size: 16px; /* Adjust font size for smaller screens */
        margin-bottom: 10px; /* Slightly reduce spacing between items */
		line-height: 1;/* Add breathing room between lines */
		max-width: 90%;
    }
}


