/* base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: disc;
    text-decoration: none;
}

a {
    color: white;
}
a:visited {
    color: white;
}
a:hover {
    color: #808080;
}

body {
    background-color: #f7f7f5;
    font-family: "Source Sans 3", sans-serif;
}

a[href^="tel"] {
  color: #000 !important;
}

a[href^="mailto"] {
  color: #000 !important;
}

.header {
    display: flex;
    justify-content: space-between; /* Puts space between logo & menu */
    align-items: center; /* Vertically centers them */
    width: 100%;
    padding: 5px;
}

.logo {
    /* Your logo styles */
    margin-right: auto; /* Pushes menu to the far right */
}

.resized-img {
  width: 250px; /* Sets a fixed width */
  height: auto; /* Automatically adjusts height to maintain aspect ratio */
}

/* Container to stack label above hamburger */
.menu-wrapper {
    display: flex;
    flex-direction: column; /* Vertical stack */
    align-items: flex-end;   /* Right justify children */
    cursor: pointer;
}

/* Style for the "MENU" text */
.menu-label {
    font-size: 1rem;
    color: #6a6a6a;         /* Matching your span color */
    margin-bottom: 2px;     /* Small gap between text and icon */
    font-weight: bold;
    text-align: right;      /* Ensures text alignment is flush right */
}
/* off-screen-menu */
.off-screen-menu {
    background-color:  rgb(0, 0, 0);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    transition: .3s ease;
}
.off-screen-menu.active {
    right: 0;
}



/* nav */
nav {
    padding: 1rem;
    display: flex;
    background-color: rgb(0, 0, 0);
}



/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #6f7f73;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

main {
    max-width: 1500px;
    margin: 40px auto; /* Centers the main content on the page */
    padding: 40px;
    background-color: #f7f7f5;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container {
    display: flex; /* Activates the flexbox layout */
    align-items: start; /* Aligns the items vertically in the center */
    gap: 40px; /* Adds space between the left and right sides */
}

.left-side {
    flex: 1; /* Takes up 1 part of the available space */
}

.right-side {
    flex: 2; /* Takes up 2 parts of the available space (making it twice as wide as the image side) */
}

.left-side img {
    max-width: 100%; /* Ensures the image is responsive and fits its container */
    height: auto; /* Maintains the image's aspect ratio */
    display: block; /* Removes any default bottom margin from the image */
}

h1, h2 {
    color: #2e2e2e;
}

p {
    color: #666;
    line-height: 1.5;
}


/* Optional: Add a media query for responsive design on smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stacks the items vertically on small screens */
    }
}
ul li, ol li {
  list-style-position: inside;
}