:root {
  --color-primary-bg: #163e3e;
  --color-text-light: #ffffff;
  --color-text-muted: #d2d2d2;
  --gradient-1: linear-gradient(90deg, #b45253 38.94%, #eda35a 100%);
  --gradient-2: linear-gradient(90deg, #eda35a 0%, #b45253 76.44%);
  --gradient-3: linear-gradient(90deg, #cadcae 0%, #1ed5ff 100%);
  --font-heading: 'Baskervville', serif;
  --font-subheading: 'Libre Baskerville', serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Lato', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  background-color: var(--color-primary-bg);
  color: var(--color-text-light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

section {
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}


.hero-section {
  background-color: var(--color-primary-bg);
  padding: 50px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-header {
  text-align: center;
  margin-bottom: 40px;
}

.hero-header .logo {
  width: 35%;
  margin: 0 auto;   
  display: block;
  line-height: 1;
  margin-top: -150px;
}

@media (max-width: 768px) {
  .hero-header .logo {
    width: 70%;       /* make it larger for mobile */
    margin-top: -50px; /* bring it down */
  }
}


.hero-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.hero-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 45%;
  max-width: 555px;
}

.hero-illustration-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Approximate height */
    margin-bottom: 20px;
}

.hero-illustration-kaan, .hero-illustration-ismet {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 150%;
    width: 100%;
    size: 2rem;
    margin-bottom: 100px;
}
.hero-illustration-deco1, .hero-illustration-deco2 {
    position: absolute;
    display: none; /* Hidden for simplicity, can be positioned with more info */
}

.hero-person-details {
  margin-top: 15px;
}

.name-title {
  font-family: var(--font-subheading);
  font-weight: 400;
  margin: 0;
}

.name-title .first-name {
  font-size: 32px;
  line-height: 1.2;
  display: block;
}

.name-title .last-name {
  font-size: 64px;
  line-height: 1.1;
  display: block;
}

.name-kaan {
  background: linear-gradient(90deg, #b45253 38.94%, #eda35a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.name-ismet {
      background: linear-gradient(90deg, #b45253 38.94%, #eda35a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.3;
  margin: 25px 0;
  max-width: 470px;
}

.social-link img {
  width: 90px;
  margin: 20px auto 0;
}

.hero-ampersand {
  font-family: var(--font-subheading);
  font-size: 128px;
  color: #eda35a;
  align-self: center;
  padding-bottom: 150px;
  padding-left: 10%;
  padding-right: 7%;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hero-column {
    width: 80%;
  }
  .hero-ampersand {
    padding-bottom: 0;
    font-size: 80px;
  }
  .name-title .first-name { font-size: 28px; }
  .name-title .last-name { font-size: 50px; }
  .quote { font-size: 22px; }
}

@media (max-width: 768px) {
    .hero-illustration-wrapper {
        height: 350px;
    }
}



.features-section {
  display: flex;
  flex-direction: column;
}

.feature-banner {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.feature-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.feature-title {
  position: relative;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  color: var(--color-text-light);
  margin: 0;
}

.feature-title .capital {
  font-family: var(--font-body);
  font-size: 250px;
}

@media (max-width: 1200px) {
  .feature-title {
    font-size: 150px;
  }
  .feature-title .capital {
    font-size: 200px;
  }
}

@media (max-width: 768px) {
  .feature-banner {
    height: 400px;
  }
  .feature-title {
    font-size: 80px;
  }
  .feature-title .capital {
    font-size: 100px;
  }
}



.why-us-section {
  background-color: var(--color-primary-bg);
  padding: 120px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-us-left {
  padding-right: 60px;
}

.why-us-heading {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;  
  max-width: fit-content;
  background: linear-gradient(90deg, #cadcae, #1ed5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-heading .g-and-o {
  display: block;
  font-size: 200px;
  line-height: 1;
  margin-top: 20px;
  background: linear-gradient(90deg, #cadcae, #1ed5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 15%;
}

.why-us-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
  padding-left: 60px;
  border-left: 3px solid #cadcae;
  justify-items: center;
  align-items: start;
}

.why-us-right .impact-item:first-child {
  grid-column: 1 / -1; /* spans both columns */
  justify-self: center;
}

.impact-item {
  text-align: center;
  background: none;
}

.impact-icon {
  height: 100px;
  margin: 0 auto 20px;
}

.impact-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #cadcae, #1ed5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-description {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .why-us-left {
    text-align: center;
    padding-right: 0;
  }
  .why-us-right {
    padding-left: 0;
    border-left: none;
  }
  .why-us-heading { font-size: 72px; }
  .why-us-heading .g-and-o { font-size: 150px; }
  .impact-description { font-size: 20px; }
}

@media (max-width: 768px) {
  .why-us-section { padding: 80px 0; }
  .why-us-heading { font-size: 48px; }
  .why-us-heading .g-and-o { font-size: 100px; }
  .impact-title { font-size: 36px; }
  .impact-description { font-size: 18px; }
}



.site-footer {
  background-color: var(--color-primary-bg);
  padding: 80px 0 40px;
  border-top: 1px solid #cadcae;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
  
}

.footer-tagline {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: right;
  max-width: 215px;
  align-self: flex-end;
  text-align: left;
  margin-right: 7rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column {
  padding: 0 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-column:first-child {
  border-left: none;
}

.footer-col-title {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  font-size: 18px;
  line-height: 1.6;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #cadcae;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.copyright {
  font-family: 'Lateef', serif;
  font-size: 18px;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials img {
  height: 32px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  font-size: 20px;
  color: var(--color-text-muted);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-branding {
    align-items: center;
  }
  .footer-tagline {
    text-align: center;
    align-self: center;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .footer-column {
    border-left: none;
    padding: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }
}


