/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-BoldItalic.ttf")
    format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair/PlayfairDisplay-BlackItalic.ttf")
    format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* Author HTML Template Styles */
:root {
  --gold: #d1b17b;
  --dark: #0e0f10;
  --muted: #999;
  --light: #f2f2f2;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  background: #0b0b0c;
  color: #fff;
}
html {
  scroll-behavior: smooth; /* enables smooth scrolling */
}
a {
  color: #fff;
  text-decoration: none;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 10px;
  border-radius: 6px;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 600;
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
}
nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-right:100px ;
}
nav ul {
  display: flex;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .cta {
  margin-left: 45px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 80px;
  width: auto;
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("../img/about_us_bg.jpg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero .content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 20px;
  align-items: center;
  margin-top: 72px;
}
.kicker {
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 800;
  font-size: 39px;
}
.kicker.about {
  font-size: 20px !important;
}
.bookcontent{font-family: "Playfair Display", serif;color: #baa376 !important;font-size: 18px;font-weight: 700;}
.title {
  font-size: 56px;
  line-height: 1.08;
  margin: 0.25em 0;
  font-weight: 350;
  color: #b9a375;
}
.subtitle {
  color: #ddd;
  max-width: 56ch;
}
.book-shots {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.book-shots img {
  width: 100%;
  border-radius: 8px;
}
.section {
  position: relative;
  padding: 90px 0;
  background: #121212;
}
.section.bg-dark {
  background: url("../img/about_us_bg.jpg") bottom/cover no-repeat;
}
.section.book {
  background: url("../img/book_bg.png") center/cover no-repeat;
}
.section.contact {
  background: url("../img/contact_bg.png") center/cover no-repeat;
  color: #222;
}
.section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.circle {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 70px;
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h2 {
  font-size: 42px;
  margin: 0.2em 0;
  font-family: "Playfair Display", serif;
}
.p {
  color: #cfcfcf;
}
footer {
  background: #0b0b0c;
  border-top: 1px solid #222;
}
footer .cols {
  background: url("../img/footer_bg.png") center/cover no-repeat;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  padding: 120px 5%;
}
.copy {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #565656;
  background-color: #baa376;
}
.btn.outline{
margin-right: 80px;  
}

@media (max-width: 980px) {
  .hero .content,
  .section .grid {
    grid-template-columns: .95fr;
  }
  .subtitle{max-width: 600px !important;}
  .book-shots {
    justify-content: flex-start;
  }
  .title {
    font-size: 37px;
  }
  .h2 {
    font-size: 32px;
  }
  nav ul {
    gap: 16px;
  }
  .navul{display: none !important;}
  .circle {
    width: 85%;
    height: 85%;
    object-fit: cover;
  }
  .kicker{font-size: 30px !important;}
  .btn.outline{
    margin-right: 0px;  
    }
    .social{
      display: none;
    }
 
}
