/* ----------------- Variables ----------------- */
:root {
    --LgPddng: 250px;
    --MdPddng: 125px;
    --SmPddng: 50px;
}

/* ----------------- Body ----------------- */
body{
  font-family: "High Tower Text", "Times New Roman", serif;
}

main {
    
    padding-left: var(--LgPddng);
    padding-right: var(--LgPddng);
    margin: 0;
  	font-size: 20px;
}

/* ----------------- Header ----------------- */
header {
    position: sticky;
    top: 0;
    background-color: gainsboro;
    color: #6B2E2E;
    z-index: 1000;
    transition: all 1s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
}

header.shrink {
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* ----------------- Nav ----------------- */
nav {
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #6B2E2E;
}

/* ----------------- Header Content ----------------- */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1500px;
    margin-left: var(--LgPddng);
    margin-right: var(--LgPddng);

}

.header-content img {
    width: 200px; 
    max-height: 400px; /* limit height */
    object-fit: cover;
    border-radius: 8px;
    padding: 5px;
}

.header-content h1 {
    width: 80%;   /* 2/3 width */
    font-size: 56px;
    text-align: left;
    padding: 10px; /* reduced from 100px */
    margin: 0;
}

/* ----------------- About Section ----------------- */
.contact-content, .services-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1500px;
  margin: 20px auto;
}

.contact-content img, .services-content img {
  flex: 1;             /* roughly 1/3 width */
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.contact-content p, .services-content p {
  flex: 2;             /* roughly 2/3 width */
  font-size: 18px;     /* bigger and readable */
  line-height: 1.8;    /* improves readability */
  margin: 0;
}

section {
    margin-top: var(--MdPddng);
}

/* ----------------- Typography ----------------- */
p, li, ul {
    font-size: 20px;
    line-height: 1.6;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}