/* Full background image */
@font-face {
  font-family: 'Fields';
  src: url('../content/Fields-SemiBold.otf') format('opentype');
  font-weight: 600; /* semibold */
  font-style: normal;
}
.about-wrapper {
    background-image: url("Light Sky.jpg"); 
	background-repeat:no-repeat; 
	background-position:center center;
	background-attachment: fixed;
    background-size: cover;
    padding: 20px;
}

.about-container {
    display: flex;
    max-width: 900px;
    height:800px;
    margin: auto;
    gap: 25px;
align-items: Flex-start;
}

/* Smaller photo */
.about-photo img {
    width: 400px;        /* reduced size */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
align-items: flex-start;
display: block;
}

/* Rounded text box */
.about-text {
    display: block;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.85);
    padding: 5px;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      margin-top: 0 !important;
}

.about-text > :first-child {
  margin-top: 0 !important;
}


about-text h1,
.about-text h2,
.about-text h3,
.about-text p {
  margin-top: 0 !important;
}


