'/* Global styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #fadfb4;
  color: #333;
  margin: 0;
  line-height: 1.6;
}
  

/* Main content expands to push footer down */
main {
  padding-top: 120px;
  flex: 1;
}

/* Apply this to the parent container of the logo */
/* HEADER */
.site-header {
  background-color: #fadfb4;
  padding: 2rem 0 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative; 
  z-index: 100;
  text-align: center; /* ensures all child elements are centered */
}

/* Logo container */
.logo-container {
  display: flex;
  flex-direction: column;   /* stack logo and title vertically */
  align-items: center;      /* center horizontally */
  justify-content: center;  /* center vertically (if needed) */
  width: 100%;
  background-color: #fadfb4;
  padding-bottom: 0.5rem;
}

/* Logo image */
.logo {
  width: 280px;   /* force larger display */
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  max-width: none;           /* prevents scaling down by parent */
}

/* Title under logo */
.site-title {
  font-family: 'Playfair Display', serif;
  color: #974418;
  font-size: 2rem;
  margin-top: 0.5rem;
  text-align: center;
}





/* Navigation bar centered */
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  ga
  padding: 0;
  margin: 1rem 0 0;
}

.main-nav a {
  text-decoration: none;
  color: #974418;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.main-nav a:hover {
  color: #b17457;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin-top: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #974418;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

nav a {
  color: #974418;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #974418; /* hover matches the logo accent */
}

  /* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #fff8ec;
  gap: 2rem;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  color: #b17457;
  font-size: 2.4rem;
}

.hero-photo img {
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Alternating content boxes */
.alt-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #fff;
  flex-wrap: wrap;
}

.alt-box.left {
  flex-direction: row;
  background: #fff8ec;
}

.alt-box.right {
  background: #fff;
  flex-direction: row-reverse;
}

.alt-box img {
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.alt-box .text {
  max-width: 500px;
}

.alt-box h3 {
  font-family: 'Caveat', cursive;
  color: #b17457;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.alt-box p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #dba15d;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #b17457;
}

.multi-links .btn {
  margin-right: 1rem;
}

/* Footer */
footer {
  background: #974418;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}
  
<link rel="stylesheet" href="style.css">
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */


/* Header Styling */


nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}


/* Hero Section */


.overlay {
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
  max-width: 600px;
}

.btn-primary {
  background-color: #b17457;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 1.5rem;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #8e5b3e;
}


/***********************
 WHO WE ARE PAGE
************************/
.biography {
  background-color: #fadfd4;
  padding: 4rem 2rem;
}

.biography .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual bio cards */
.bio {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

/* Alternate layout for the second bio */
.bio-reverse {
  flex-direction: row-reverse;
  background: #ffffff
}

/* Bio images */
.bio img {
  width: 280px;              /* fixed display width */
  height: 280px;             /* fixed display height */
  object-fit: contain;         /* ensures even cropping */
  object-position: top;   /* centers the face/subject */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Bio text */
.bio-text {
  flex: 1;
}

.bio-text h2 {
  font-family: "Playfair Display", serif;
  color: #b17457;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.bio-text p {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

/***********************
 RESPONSIVE DESIGN tablet 
************************/
@media (max-width: 900px) {
  .bio,
  .bio-reverse {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .bio img {
    width: 70%;
    max-width: 280px;
    height:250px;
    margin-bottom: 1.5rem;
  }

  .bio-text {
    text-align: center;
  }

  .bio-text p {
    text-align: justify;
  }
}

/*phones*/

@media (max-width: 480px) {
  .biography {
    padding: 2rem 1rem;
  }

  .bio {
    padding: 1.2rem;
  }

  .bio img {
    max-width: 220px;
    height: 250;
    margin-bottom: 1rem;
  }

  .bio-text h2 {
    font-size: 1.4rem;
  }

  .bio-text p {
    font-size: 1.05rem; /* slightly larger for readability */
    line-height: 1.6;
  }
}


/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #fadfb4; /* light cream */
  color: #7E3514; /* dark gray */
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #fadfb4; 
  color: #ffffff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  width: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #f5c518; /* soft gold hover */
}

/* Hero Section (if used) */
.hero {
  background-color: #ab0f00; /* coral accent */
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}



/* Main content expands to push footer down */
main {
  flex: 1;
}

  /* Footer Styling */


/* Optional responsive layout for icons */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links {
  margin: 15px 0;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-icon {
  width: 30px; /* adjust icon size */
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2); /* slight zoom effect on hover */
}

.footer p {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #fff;
}

/* Responsive for small screens */
@media (max-width: 480px) {
 .social-icon {
  width: 10px;          /* same width for both icons */
  height: 10px;         /* same height for both */
  object-fit: contain;  /* keeps logo proportion correct */
  vertical-align: middle;
  margin: 0 5px;        /* small space between them */
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2); /* nice hover effect */
}

