/* Lato */
@font-face {
    font-family: 'Lato Regular';
    src: url('/fonts/Lato-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Bold';
    src: url('/fonts/Lato-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Black';
    src: url('/fonts/Lato-Black.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Light';
    src: url('/fonts/Lato-Light.ttf') format('truetype');
    font-style: normal;
}


*,
*::after,
*::before {
	box-sizing: border-box;
}


:root {
	font-size: 16px;
	--page-padding: 1.5rem;
	--color-text: #000000;
	--color-link: rgba(255,255,255,0.6);
	--color-link-hover: #fff;
}


/* MENU */
/* Basic styling for the menu */
.frame {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0rem 3rem;
    position: relative;
}

.frame__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Menu items */
.frame__menu-item {
    text-decoration: none;
    color: #233b44;
    font-size: 1.2rem;
}

/* Hide the menu items by default for mobile screens */
.menu-items {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.open_icon {
    fill: #233b44;
}
.close_icon {
    fill: white; 
}

#sidebar-active {
    display: none;
}

.open-sidebar-button,
.close-sidebar-button {
    display: none;
}

@media (max-width: 768px) {
    .menu-items {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 300px;
        height: 100%;
        background-color: #233b44;
        box-shadow: -3px 0 3px rgba(0, 0, 0, 0.5);
        transition: 0.75s ease-out;
    }

    nav a {
        width: 100%;
        padding: 10px 30px;
        color: white;
        cursor: pointer;
        font-size: 1.2rem;
    }

    .close-sidebar-button {
        display: block;
        padding: 20px;
    }

    .open-sidebar-button {
        display: block;
        padding-top: 2rem;

    }

    #sidebar-active:checked ~ .menu-items {
        right: 0;
    }

    #sidebar-active:checked ~ #overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        background: rgba(0, 0, 0, 0.20);
    }
}


a {
    position: relative; 
    text-decoration: none; 
    color: #233b44;
    overflow: hidden; 
    font-family: 'Lato Regular';
}


/* LOGOS */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 10vw;  
    height: auto;
}

/* Set a fixed position for logos once the animation completes */
.fixed-logo,
.fixed-shade-logo, .fixed-text-logo {
    animation: none !important;
    transition: none !important;
    position: fixed !important;
}

/* Fixed position for logo (top-left) */
.fixed-logo {
    top: 6vh !important;
    left: 6vw !important;
    width: 5vw; 
    z-index: -1;
}

/* Fixed position for shade-logo (bottom-right) */
.fixed-shade-logo {
    bottom: -25%;
    right: -15%;
    width: 50vw; 
    opacity: 0.4;
}

.fixed-text-logo {
    top: 3vh;
    left: 10vw;
    width: 20vw;
}

body {
    margin: 0;
	color: #233b44;
	background-color: #fdf3e4;
	font-family: 'Lato Regular';
	height: 100vh;
	overflow-y: scroll;
    scroll-behavior: smooth;
    cursor: default; 
	font-family: "area-variable", sans-serif;
	font-variation-settings: "slnt" 0, "wdth" 150, "wght" 500, "INKT" 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* CUSTOM CURSOR */
#cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    border-radius: 50%;
    background-color: rgba(184, 145, 91, 0.6); 
    border: 1px solid #b8915b;
    pointer-events: none;
    z-index: 99999;
    display: none;
    transition: transform 0.15s ease-out;
}

i {
	font-style: normal;
	font-family: "Lato Light";
}

.content {
	padding: var(--page-padding);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.text-large {
	font-size: clamp(1.5rem,5vw,3rem);
	font-family: "Lato Bold";
	max-width: 900px;
	margin: 0 0 0.85em 0;
	line-height: 1.2;
}

.content--highlight {
    display: flex; /* Enable flexbox */
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    text-align: center; /* Center the text itself */
    width: 100%; /* Ensure full width */
    height: 100%; /* Full height of its parent */
	position: relative;
}

.text-large {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: "Lato Bold";
    max-width: 900px;
    margin: 0 0 0.85em 0;
    line-height: 1.2;
    text-align: center; /* Ensure text alignment within the paragraph */
}


.content--sticky {
	width: 100vw;
	position: sticky;
	top: 0rem;
	--offset: 0rem;
	top: var(--offset);
	height: calc(100vh - var(--offset));
}

.content--grid,
.content--grid .content__inner {
	display: grid;
	overflow: hidden;
	grid-column-gap: 5vw;
	grid-row-gap: 2vh;
	align-content: center;
	grid-template-areas: 'content-img' 'content-title' 'content-text';
	justify-items: center;
}

.content--grid:has(.content__inner) {
	display: block;
	padding: 0;
}

.content__inner {
	width: 100%;
	height: 100%;
	border-radius: 0 0 2rem 2rem;
}

.content--card {
	display: flex;
	flex-direction: column;
	height: 80vh;
	width: 100vw;
	aspect-ratio: 0.8;
	top: 10vh;
	margin: auto;
	border-radius: 14px;
	text-align: center;
	margin-bottom: 5vh;
	width: 100% !important;
}

.content--card .content__title {
	font-size: clamp(1.5rem,4vw,3.5rem);
}

.content--card .content__title i {
	display: block;
}

.content--half {
	display: flex;
	flex-direction: column;
	gap: 3vh;
	text-align: center;
}

.content--half:nth-child(odd) {
	margin-left: auto;
}

.content__img--large {
	width: 60%;
	height: auto;
}

.content__img--small {
	height: 35%;
	width: auto;
}

.spacer {
	margin-top: 20vh;
}

.content__title {
	grid-area: content-title;
	letter-spacing: -0.095em;
	text-transform: uppercase;
	line-height: 1.2;
	font-weight: normal;
	font-size: clamp(2rem,6vw,5rem);
	margin: 0;
	font-variation-settings: "slnt" 0, "wdth" 400, "wght" 900, "INKT" 250;
}

.content__text {
	margin: 0;
	max-width: 800px;
	grid-area: content-text;
	text-align: center;
	line-height: 1.5;
	padding: 0 2rem;
	backface-visibility: hidden;
	font-family: "Lato Regular";
}

.content__text--narrow {
	max-width: 300px;
}

.content--intro {
	padding-top: 25vh;
	padding-bottom: 25vh;
	z-index: 2;
}

.content--outro {
	padding-top: 50vh;
	padding-bottom: 30vh;
}

.bg-1 { background: #e9c46a; color: #233b44; }
.bg-2 { background: #ededed; color: #233b44; }
.bg-3 { background: #fefaf0; color: #233b44;}
.bg-4 { background: #233b44; color: white; }
.bg-5 { background: white; color: #233b44; }

@media screen and (min-width: 63em) {
	body {
		--page-padding: 2rem 3rem;
	}
	.content--grid,
	.content--grid .content__inner {
		grid-template-areas: 'content-img content-title' 'content-img content-text';
		grid-template-columns: 30% 1fr;
		justify-items: start;
	}
	.content__text--left {
		text-align: left;
		align-self: start;
	}
	.content--card {
		width: 50vw;
	}
	.content--half {
		width: 50%;
	}
}

/* FOOTER */
/* Footer General Styling */

.site-footer {
    position: relative;
    background-color: #233b44; /* Dark background */
    color: #fff; /* White text */
    padding: 5rem 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.footer-container {
    display: flex;
    flex-direction: column; 
    width: 100%;
    max-width: 1200px;
    text-align: left; 
}

/* Navigation Section */
.footer-section-navigation {
    margin-bottom: 4rem; /* Space below navigation */
    border-bottom: 1px solid white; 
    padding-bottom: 3rem;
}

.footer-section-navigation h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: "Lato Light";
    color: white; 
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4rem; /* Space between links */
	font-family: "Lato Regular";
}

.footer-links a {
    font-size: 3rem; /* size of links in navigation */
}

.nav-link {
    color: #fff;
    font-size: 1.2rem; /* Larger font for navigation */
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #b8915b; /* Hover effect */
}

/* Contact Section */
.footer-contact {
    border-bottom: 1px solid white; 
    padding-bottom: 3rem;
    display: flex;
    gap: 7rem; /* Space between columns */
    justify-content: left; /* Align columns to the left */
}

.contact-column {
    display: flex;
    flex-direction: column; /* Stack content vertically */
}

.contact-column h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: "Lato Light";
    color: white; 
}

.contact-column a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 9px;
    line-height: 2;
}

.contact-column a:hover {
    color: #b8915b; /* Hover effect */
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1rem; /* Space between social links */
    justify-content: flex-start; /* Align to the left */
}

.social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
    text-decoration: underline;
}

.social-links a:hover {
    color: #b8915b; /* Hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 5rem; 
    }

    .footer-container {
        text-align: center; 
        padding: 0 2rem;
    }

    .footer-links {
        flex-direction: column; 
        gap: 1rem; 
        font-size: 2rem; 
    }

    .footer-contact {
        flex-direction: column; 
        align-items: center; 
        gap: 2rem;
    }

    .social-links {
        justify-content: center; 
    }

    .contact-column {
        align-items: center; 
    }
}

@media (max-width: 500px) {
    .site-footer {
        padding: 2rem 2rem; 
    }

    .footer-links a {
        font-size: 1.5rem; 
    }

    .footer-contact {
        gap: 0.5rem;
    }

    .contact-column a {
        font-size: 0.9rem; 
    }
}


/*  contact us container */
/* CONNECT WITH US - contact section */
.contact-us-container {
    position: relative;
    background: white;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto; 
    height: 90vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: center;
    text-align: center;
}

.contact-us-container .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
    text-align: center;
}

.contact-us-container .fade-in.show {
    opacity: 1;
    transform: translateY(0);
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.contact-us-container h1 {
    font-size: 3rem;
    font-family: "Lato Bold";
    text-align: center; 
    font-size: 3rem;
    margin: 0; 
}

.contact-us-container p {
    font-size: 1.5rem;
    font-family: "Lato Light";
    width: 80%;
    padding-bottom: 2rem;
    text-align: center; 
}

.contact-btn {
    position: relative;
    background-color: transparent;
    font-size: 1rem;
    color: #233b44;
    border: 1px solid #233b44;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.contact-btn:hover {
    background-color: #1a2d3635;
}

/* dynamic contact */
.contact-links {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    margin-top: 1rem; 
}

.contact-links a {
    color: #233b44;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0rem;
    border-bottom: 1px solid #233b44;
    transition: background-color 0.3s, color 0.3s;
    align-items: center;
}

.contact-links a:hover {
    color: #b8915b;
    border-bottom: 1px solid #b8915b;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    /* Adjust container width for smaller screens */
    .contact-us-container {
        width: 90%; /* Make the container width 90% on mobile */
        height: 60vh;
        padding: 2rem 1.2rem; /* Add padding for spacing */
    }

    /* Make h1 and p font sizes smaller for mobile */
    .contact-us-container h1 {
        font-size: 1.8rem; /* Smaller font for h1 */
    }

    .contact-us-container p {
        font-size: 1.2rem; /* Smaller font for paragraph */
    }

    .contact-btn {
        font-size: 0.9rem; 
        padding: 0.5rem 1rem; 
    }

    .contact-links a {
        font-size: 0.8rem; /* Smaller font size for links */
    }

    .contact-links {
        flex-direction: column; /* Stack the contact links vertically */
        gap: 0.2rem; /* Reduced gap between links */
    }
}

@media (max-width: 768px) {
    .fixed-logo {
        top: 10vh !important; 
        left: 12vw !important; 
        width: 10vw !important; 
    }

    .fixed-text-logo {
        top: 9vh !important; 
        left: 20vw !important;
        width: 40vw !important;
    }
}