@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+Devanagari:wght@100..900&display=swap');

@font-face {
    font-family: 'Garamond';
    src: url('../fonts/Garamond.woff2') format('woff2'),
        url('../fonts/Garamond.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
	 
body {
      margin: 0;
      padding: 40px 10%;
      background: #000;
      color: #fff;
      font-family: "EB Garamond", serif;
      line-height: 1.6;}

h1 {
    font-family: "EB Garamond", serif;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 5px;}

.subtitle {
	font-family: "EB Garamond", serif;
    font-style: italic;
    font-size: 29px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 100;}

    .tagline {
    font-family: "EB Garamond", serif;
    font-size: 23px;
    margin-bottom: 40px;
    color: #fff;}

    h2 {
    font-size: 28px;
    font-family: "EB Garamond", serif;
    margin-bottom: 5px;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.8px;
    }

    h2::after {
      content: "";
      display: block;
      width: 30px;
      display: none;
      height: 2px;
      background: #fff;
      margin-top: 5px;
    }

    p {
    margin-bottom: 20px;
    font-family: 'Garamond';
    color: #fff;
    font-size: 19px;
    line-height: 27px;
    }
	
	ul{
		font-family: 'Garamond';
    color: #fff;
    font-size: 19px;
    line-height: 27px;
	padding-left: 17px;    
	}

	ul b{
		font-weight:600;}

    .byline {
      font-style: italic;
      margin-top: 10px;
    }

    .contact {
      margin-top: 40px;
    }

    .contact h2 {
      display: flex;
      align-items: center;
	  font-family: "EB Garamond", serif;
	  font-size:28px;
      gap: 8px;
    }

	.contact h2::after{
		display:none;}

    .contact svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    position: relative;
    top: 3px;
    }

    .email {
	font-style: italic;
    font-family: "EB Garamond", serif;
    font-size: 24px;
    margin-top: -11px;
    font-weight: 400;
    }

    @media(max-width:768px) {
      body {
        padding: 20px;
      }
      h1 { font-size: 28px; }
      .subtitle { font-size: 18px; }
      .tagline { font-size: 16px; }
    }	 