@charset "utf-8";
/* CSS Document */
/* Contact Page Styles */
.contact-page {
    background-color: #f2efed;
    background-image: url("../Images/backgrounds/Contactpagebg.svg");
    background-size: cover;
    font-family: 'Barlow Semi Condensed', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
	height: 100vh;
}

/* Contact Heading Styles */
.contact-heading {
    width: 100%;
    text-align: left;
	padding: 0 10%;  /* Add padding to give space on the sides */
    position:relative;
	margin-top: 99px;
}

.contact-heading h1 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: bold;
    font-size: 54.6px;  /* Adjust font size as needed */
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.contact-subheading {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-style: italic;
    font-size: 36px;  /* Adjust font size as needed */
    color: #000000;
    margin-top: 20px;
    max-width:100%;
    left: 85.1px;
    top: 392.3px;
}

/* Contact Information Styles */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 50px; /* Adjust margin as needed */
    padding-left: 10%;
    padding-right: 10%;
	flex-wrap: wrap;
	flex-direction: row;
	margin-bottom: 100px;
	position: relative;
	align-items: flex-start;
}

.contact-details,
.contact-operating-hours,
.follow-us{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 18px; /* Adjust font size */
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
	flex: 1 1 calc(33.333% - 20px); /* 3 items per row with gap */
	max-width: 359.9px;
	box-sizing: border-box;
	text-align: left;
}
.follow-us {
	font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 36px; /* Adjust font size */
    color: #000000;
	font-style: italic;
    margin-top: 20px;
	text-align: left;
	width: 100%;
}
.handle {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: normal;
}

/* Adjusting spacing for smaller screens */
@media (max-width: 768px) {
    .contact-heading h1 {
        font-size: 36px; /* Adjust font size for mobile */
		
    }
    .contact-subheading {
        font-size: 16px; /* Adjust font size for mobile */
		
    }
	/* Adjust the layout for smaller screens */
    .contact-info {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center align content */
		margin-top: 30px;
		text-align: center;
    }

    .contact-details,
    .contact-operating-hours,
    .follow-us {
        flex: 1 1 100%; /* Full width for each section */
		text-align: center;
		max-width: none;
	}

    /* Adjust Menu Button */
    .menu-button {
        left: 10px; /* Keep aligned with the left */
        top: 10px;  /* Keep aligned vertically */
        width: 30px;
        height: 30px;
    }

    /* Adjust Follow Us and Handle for smaller screens */
	.follow-us{
		margin-top: 20px;
		
	}
    .handle {
        font-size: 18px
    }
}