*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    text-decoration: none;
    color: black;
}  

/* LEFT SIDE (text) */
.about-text{
    width: 100%;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
}

.about-text p{
    position: relative;
    margin: 2rem;               /* override your global p margin */
    line-height: 1.8rem;
}

/* RIGHT SIDE (image) */
.about-img{
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
}

/* OVAL IMAGE */
.about-img img{
    max-width: 15%;
    height: auto;
    object-fit: cover;
    border-radius: 60%;
}

h1{
    position: relative;
    text-align: center;
    font-family: "DM Serif Display", serif;
    margin-top: 4rem;
}

h2{
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 5rem;
}

a{
    color: #667061;
    text-decoration: none;
}

a:active{
  color: #292d26;
}

img{
    width: static;
    margin-right: 0;
    background-repeat: no-repeat;
}

.home{
    background: url("./Images/JeremyKochman-1.jpg");
    background-size:cover;
    background-position: center;
    background-position-y: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;         
}

.imgBox {
    display:flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
}

.imgBox .box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    position: relative;
    width: 8rem;
    cursor: pointer;
    transition: 0.3s;
    transform-origin: center;
}

.imgBox .box .overlay{
    position: absolute;
    top: 0.5rem;
    left: 0;
    align-items: flex-start;
}

.imgBox .box .overlay span{
    font-size: 1.5rem;
    font-weight: 200;
    position: static;
}

.imgBox:hover > .box:not(:hover){
    filter: blur(2px);
}

.imgButton{
    width: auto;
    height: 2rem;
    display: flex;
}

.banner{
    position:relative;
    text-align: left;
    font-size: 7rem;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner a{
    display: flex;
    align-items: center;
}

.page {
    background-color: #fef9f0;  /* pick your color */
}

.gallery {
    column-count: 3;
    column-gap: 0.25rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    margin-top: 3rem;
}

.gallery img {
    width: 100%;
    margin-bottom: 0.25rem;
    display: block;
    break-inside: avoid; /* prevents awkward splits */
}

@media (max-width: 900px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 500px) {
    .gallery {
        column-count: 1;
    }
}

label{
    font-size: 0.9rem;
}

/* Form layout */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 60rem;
  margin: 0.7rem;
}

/* Labels */
label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Inputs + textarea */
input,
textarea {
  width: 100%;
  padding: 1rem;
  background-color:#b5b0a365;
  border: 1px solid #B48B5E;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.2s ease;
}

/* Focus state */
input:focus,
textarea:focus {
  border-color: #B48B5E;
  box-shadow: 0 0 0 3px #b48a5e1e;
}

/* Textarea size */
textarea {
  min-height: 3.5rem;
  resize: vertical;
}

/* Name row */
.name-row {
  display: flex;
  gap: 1rem;
  width: 90%;
  max-width: 60rem;
}

.name-row .form-group {
  flex: 1;
}

/* Mobile */
@media (max-width: 500px) {
  .name-row {
    flex-direction: column;
  }
}

.submit-btn {
  width: 90%;
  max-width: 30rem;
  padding: 14px;
  margin-top: 1rem;
  border: none;
  border-radius: 8px;
  background: #b8c5bd;
  color: black;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover effect */
.submit-btn:hover {
  background: #667061;
}

/* Click effect */
.submit-btn:active {
  transform: scale(0.98);
}

/* Optional: disabled state */
.submit-btn:disabled {
  background: #fef9f0;
  cursor: not-allowed;
}
