/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, Verdana, arial;
  color: #1a1a1a;
  background-color: #fafafa;
  line-height: 1.6;
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================
   CONTAINER
   ======================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================
   NAV (2 columns)
   ======================== */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__brand a {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links button {
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #800000;
  color: #fff;
  border: 0px;
  font-size: 0.9rem;
  font-weight:bold;
  transition: color 0.2s;
}

.nav__links button:hover {
  color: #800000;
  background-color: #fff;
  border: 1px solid #800000;
  padding: 14px 24px;
}

/* ========================
   HERO (75% / 25%)
   ======================== */
.hero {
  margin: 5rem auto;
  padding: 5rem 0;
  min-height: 300px;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__main {
  flex: 0 0 75%;
  max-width: 75%;
}

.hero__aside {
  flex: 0 0 25%;
  max-width: 25%;
}

.hero__main h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero__main p {
 font-size: clamp(0.75rem, 4vw, 1.5rem);
  //font-size: 1.5rem;
  color: #555;
  max-width: 55ch;
}

.btn {

  display: inline-block;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #800000;
  color: #fff;
  border: 0px;
  font-size: 0.9rem;
  font-weight:bold;
  transition: color 0.2s;
 
  
}

.btn:hover {
  color: #800000;
  background-color: #fff;
  border: 1px solid #800000;
  padding: 14px 24px;
}

/* ========================
   SPLIT SECTION (50/50)
   ======================== */
.split-section {
  padding: 4rem 0;
  border-top: 1px solid #e5e5e5;
}

.section-title{
  text-align:center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.split-section__inner {
  display: flex;
  gap: 2rem;
}

.split-section__col {
  flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}

.split-section__col h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.split-section__col p {
  color: #555;
  font-size: 0.95rem;
}



.about_me, .lets_connect{
	margin: 50px auto;
}




/* ========================
   FOOTER
   ======================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  background-color: #fff;
}

.site-footer p {
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}

/* ========================
   RESPONSIVE
   ======================== */

/* Tablet: stack hero, shrink nav links */
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
  }

  .hero__main,
  .hero__aside {
    flex: 0 0 100%;
    max-width: 100%;
	text-align:center;
  }

  .split-section__inner {
    flex-direction: column-reverse;
  }

  .split-section__col {
    flex: 0 0 100%;
    max-width: 100%;
  }

.split-section:nth-child(even) .split-section__inner {
    flex-direction: column;
}



  }
}

/* Mobile: compact nav */
@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    gap: 0.75rem;
    //align-items: flex-start;
  }

  .nav__links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero {
    padding: 3rem 0;
  }
  .hero p{
	  font-size: 0.75rem;
  }
}