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

:root {
  /* Base (neutrals) */
  --base-100: #F4F4EF;  /* lightest background */
  --base-400: #C8C5B9;  /* light secondary bg */
  --base-600: #59564D;  /* subdued text */
  --base-900: #1D1C1A;  /* primary text / high contrast */

  /* Green - Primary Brand */
  --green-100: #E2F5E7; /* subtle background tint */
  --green-400: #3E8E48; /* button hover / highlights */
  --green-600: #1D5B2C; /* header, primary brand */
  --green-900: #0D2D16; /* deep accents */

  /* Orange - Accent / CTA */
  --orange-100: #F9D2C3; /* soft highlights */
  --orange-400: #E97A4F; /* default button color */
  --orange-600: #D75C33; /* strong CTA, icon, active state */
  --orange-900: #A43E21; /* dark accents, shadows */
}



body {
    font-family: Arial;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;

}

a {
    text-decoration: none;
    color: var(--orange-600);
    &:hover {
        text-decoration: underline;
    }
}


header {
    padding-top: 10px;
    padding-bottom: 10px;
    display : flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: var(--green-600);
    

    .logo-holder{
        display: flex;
        padding: 10px;
        align-items: center;

        .logo{
            display: flex;
            margin-right: 20px;
        }
        .logo-text{
            flex:1;
        }
    }

    nav {
        display: flex;
        align-items: center;
        ul {
            display: flex;
            list-style-type: none;
            gap: 5px;
            li {
                display: inline-block;
                a {
                    display: inline-block;
                    padding: 10px 20px;
                    color: var(--orange-600);
                    &:hover {
                        background-color: var(--orange-100);
                        border-radius:10px;
						text-decoration:none;
                    }
                }
            }
        }
        .mobile-toggle {
            display: none;
            color: var(--base-900);
            padding: 10px;

            @media (max-width: 768px) {
                display: inline-block;
                position: absolute;
                right: 20px;
                top: 20px;
            }
        }
    }

    @media (max-width: 1024px) {
        flex-direction:column;
		align-items:center;
    }

    @media (max-width: 768px) {
        flex-direction:column;
		align-items:center;
        nav {
			margin-top:10px;
			width:100%;
            ul {
                display: none;
                flex-direction: column;
                text-align: center;
                width: 100%;
                a {
					width:100%;
				}
				&.active {
					display:flex;
				}
            }
        }
    }
}


/* Centre stage */
/* MAIN LAYOUT */
main {
  background-color: var(--base-100);
}

/* Outer hero container */
.main-holder {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

/* Photo column */
.photo {
  flex: 0 0 260px;             /* fixed-ish width on desktop */
  aspect-ratio: 3 / 4;         /* keeps it portrait */
  border-radius: 50%;          /* circle/oval frame */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Actual image */
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills the frame without distortion */
  object-position: 50% 25%;    /* adjust to keep your face centred */
}

/* Text column */
.intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--orange-600);
  font-weight: 600;
}

/* Text block in intro */
.main-text-holder {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Buttons row */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Re-use your .button styles – they already look nice */




.button {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: var(--green-900);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .15rem;
  transition: background-color .25s ease, transform .15s ease;
  position: relative;
  overflow: hidden;
  background-color: var(--green-100);
  border: 2px solid var(--green-400);
  margin-right: 1rem; /* space between buttons */
}

.button:hover,
.button:focus {
  background-color: var(--green-400); /* darker teal on hover */
  transform: translateY(-2px);
  outline: none;
  text-decoration: none;
}
  
.button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .main-holder {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .photo {
    flex: 0 0 auto;
    width: 60vw;          /* scale photo with viewport */
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}



footer {
    padding-top: 1rem;
    display : flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: var(--green-600);
    padding-bottom: 0;
    
    .footer-container{
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 100%;

        .footer-item {
            flex: 1 1 180px;
            min-width: 160px;
            margin: 1rem 0;
            margin-left: 1rem;
        }

        .footer-item h4 {
            margin: 0 0 0.5rem 0;
            color: var(--base-900);
            font-size: 1rem;
        }

        .footer-item p {
            margin: 0 0 0.5rem 0;
            color: var(--orange-600);
            line-height: 1.4;
        }

        /* links */
        .footer-item a {
            display: inline-block;
            color: var(--orange-600);
            text-decoration: none;
            margin-right: 0.75rem;
            margin-bottom: 0.25rem;
        }

        .footer-item a:hover,
        .footer-item a:focus {
            text-decoration: underline;

        }
    }

    @media (max-width: 768px) {
        padding-top: 1rem;
        padding-bottom: 0;
        
        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0;
        }
        .footer-item {
            width: 100%;

        }
        .footer-item a { 
            margin-right: 0.5rem; 

        }
    }
}