/* Home page */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

/* centers the whole logo block (homepage only) */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* groups logo + tagline together */
.logo-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

/* logo image */
.logo {
    display: block;
}

.tagline-wrap {
    margin-top: 4px;
    align-self: flex-end;

    position: relative;
    top: -65px;
    left: -100px;
}

/* tagline styling */
.tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
}

/* menu stays fixed bottom-right */
.menu {
    position: fixed;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.6;
}

/* page styles */
/* top-right logo */
.top-logo {
    position: fixed;
    top: 20px;
    right: 30px;
}

.top-logo img {
    width: 125px;
    height: auto;
    display: block;
}

/* About Pages */
/* main content container */
.about-container {
    max-width: 1000px;
    margin-left: 80px;
    margin-top: 75px;
}

/* sections */
.about-section {
    margin-bottom: 60px;
}

/* section headers */
.about-section h1 {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #6F4E37;
}

/* paragraph text */
.about-section p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0;
}

/* slightly emphasized */
.vision-text, .mission-text {
    font-size: 18px;
    letter-spacing: 2px;
	text-indent: 25px;
}

/* slightly emphasized */
.cv-text{
    font-size: 18px;
    letter-spacing: 2px;
}

/* core values layout */
.core-values div {
    margin-bottom: 12px;
	text-indent: 25px;
	line-height: 2;
}

.core-values span {
    font-weight: 550;
    color: #6F4E37;
}

/* Contact Pages */
.contact-container {
    max-width: 1000px;
    margin-left: 80px;
    margin-top: 75px;
}

/* sections */
.contact-section {
    margin-bottom: 60px;
}

/* section headers */
.contact-section h1 {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #6F4E37;
}

/* paragraph text */
.contact-section p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0;
}

.planted-text {
    font-size: 18px;
    letter-spacing: 2px;
	padding-left: 25px;
}

/* =========================
   MOBILE OPTIMIZATION ONLY
   ========================= */
@media (max-width: 768px) {

    /* --- HOMEPAGE (mobile positioning tweak) --- */
	.container {
		height: 100vh;
		padding: 20px 20px 70px 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		text-align: center;

		transform: translateY(-20%); /* shift logo + tagline up */
	}

	.logo-block {
		align-items: center;
	}

	.container .logo {
		width: 75%;
		max-width: 280px;
		height: auto;
	}

	/* tagline reset + centered */
	.container .tagline-wrap {
		position: relative;
		top: 0px;     /* per your request */
		left: 0;
		margin-top: 10px;
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.container .tagline {
		font-size: 13px;
		letter-spacing: 1.5px;
		text-align: center;
	}

	/* move menu up proportionally */
	.container + .menu {
		position: absolute;
		bottom: 25%;
		left: 0;
		right: 0;
		justify-content: center;
		gap: 30px;
	}

    /* --- ABOUT + CONTACT --- */
    .about-container,
    .contact-container {
        margin: 0;
        padding: 100px 20px 40px 20px;
        max-width: 100%;
        text-align: center;
    }

    .about-section,
    .contact-section {
        margin-bottom: 40px;
    }

    .about-section h1,
    .contact-section h1 {
        font-size: 18px;
    }

    .about-section p,
    .contact-section p {
        font-size: 14px;
        line-height: 1.6;
    }

    .vision-text,
    .mission-text,
    .cv-text,
    .planted-text {
        text-indent: 0;
        padding-left: 0;
    }

    .core-values div {
        text-indent: 0;
        line-height: 1.6;
    }

    /* top logo (about/contact) */
    .top-logo {
        top: 15px;
        right: 20px;
    }

    .top-logo img {
        width: 90px;
    }

    /* menu BELOW content (about/contact only) */
    .menu {
        position: static;
        margin-top: 0px;
        margin-bottom: 30px;
        justify-content: center;
        width: 100%;
        gap: 30px;
    }

    .menu a {
        font-size: 14px;
    }
}
}