@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cinzel:wght@400;700;900&family=Lexend:wght@100;400;600;900&family=MuseoModerno:ital,wght@0,100;0,400;1,300;1,700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Lexend", serif; */
  
}

html {
  scroll-behavior: smooth;
  transition: 4s;


}
body {
  font-family: "Lexend", sans-serif; /* Default font for body text */
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif; /* Serif font for headings */
}

.hero_inner h1 {
  font-family: "Abril Fatface", serif; /* Specific font for hero title */
}

p, a {
  font-family: "Lexend", sans-serif; /* Readable sans-serif for paragraphs and links */
}


:root {
  /* glden color shades */
  --golden-light: #bd9a37;
  --golden-medium: #bc9b38;
  --golden-dark: #ba9a37;
  

  /* dark backgrounds  */
  --bg-dark-light: #211f20;
  --bg-dark-medium: #20131f;
  --bg-dark-medium2: #1a191f;

  --text-clr: #faebd7;
  --smoke-txt-clr: #7a7a7a;
  --btn-box-style: 1.2em 2em;

  interpolate-size: allow-keywords;
}
a, ul {
  text-decoration: none;
  list-style-type: none;
}


.header {
  /* font-family: "Abril Fatface", serif; */
  background-color: var(--bg-dark-light);
  background: url('../img/hero/hero.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  

}

nav label {
  color: var(--text-clr);
}

.open-menu, .close-menu {
  position: absolute;
  color: var(--text-clr);
  cursor: pointer;
  font-size: 1.5em;
  display: none;
}




.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.582);
}



.header .logo img {
  width: 150px;
  height: 150px;
}
.header .logo {
  position: relative;
}
.header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: relative;
  
}
.header nav button {
  display: none;
}

.header nav ul {
  display: flex;
}

.header nav ul li {
  margin-right: 2em;
  text-transform: uppercase;
  
}

.header nav ul li a {
  color: var(--golden-medium);
  padding: 0 10px;
  transition:  .3s ease-in-out;
  display: inline-block;
  position: relative;
}

.header nav ul li a::after {
  content: "";
  position: absolute;
  background: var(--golden-dark);
  height: 3px;
  width: 0;
  bottom: -10px;
  left: 0;
  box-shadow: 0 0 10px;
  transition: .3s;
  
}
.header nav ul li a:hover::after {
  width: 100%;
}

.header nav ul li a:hover  {
  transform: translateY(-5px);
  color: var(--text-clr);
}

.header .hero-content {
  position: relative;
  text-align: center;
  margin-top: 2em;
}

.header .hero-content .hero_inner h1 {
  color: var(--golden-medium);
  text-shadow: 0 0 10px;
  letter-spacing: 30px;
  font-size: 5em;
  
}

.header .hero-content .hero_inner h1.tracking-in-expand {
  -webkit-animation: tracking-in-expand 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: tracking-in-expand 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* keyframe css  for hero teeradi  */

/* ----------------------------------------------
* Generated by Animista on 2024-11-29 15:44:25
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation tracking-in-expand
* ----------------------------------------
*/
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}


.header .hero-content .hero_inner h4 {
  color: var(--text-clr);
  font-weight: 600;
  font-size: 1.2em;
  letter-spacing: 12px;
}

.header .hero-content .hero_inner .catchPhrase {
  color: var(--smoke-txt-clr);
  width: 65%;
  margin: 0 auto 2em;
  padding: 2em;
  font-weight: 500;
  
}

.header .hero-content .hero_inner a {
  background: var(--golden-dark);
  padding:  var(--btn-box-style);
  color: var(--bg-dark-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: .3s ease-in-out;
  
}

.header .hero-content .hero_inner a:hover {
  background: var(--bg-dark-light);
  color: var(--golden-light);
  box-shadow: 0 0px 10px var(--smoke-txt-clr);
} 




/* ------------about section-------------  */
main .about {
  margin: 2em 0;
  padding: 0 5%;
  
}

.about .about_content h2 {
  text-align: center;
  color: var(--golden-medium);
  font-size: 2em;
  padding: 1em 0 .2em;
  display: flex;
  align-items: center;
  justify-content: center;
  
  position: relative;
}

.about .about_content h2::before {
  content: ''; /* Required for the pseudo-element */
  position: absolute;
  bottom: 0; /* Adjust spacing between text and underline */
  left: 50%; /* Center the underline */
  transform: translateX(-50%); /* Correct centering */
  width: 5%; /* Adjust to make the underline shorter */
  height: 2.5px; /* Thickness of the underline */
  background-color: var(--golden-medium); /* Use your desired underline color */
  border-radius: 2px; /* Optional for rounded underline */
}

.about .about_content .about_intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
  transition: .3s ease-in-out;
  
}

.about .about_content .clip_image {
  font-size: 5em;
  width: 100%;
  background: url('../img/pictures/img-1.jpg') no-repeat;
  background-clip: text;
  background-position: center;
  background-size: cover;
  color: transparent;
  background-attachment: fixed;
}
.about .about_content .about_intro .intro_content {
  margin-left: 0;
}
.about .about_content .about_intro .intro_content p {
  width: 80%;
  display: flex;
  justify-self: end;
  line-height: 1.5em;
  color: var(--smoke-txt-clr);
  font-size: .85rem;
  

}

.about-inner-goal{
display: flex;
justify-content: space-between;
align-items: center;
}

.about_inner_content_txt {

width: 80%;
}


.about_inner_content_txt details {
color: var(--smoke-txt-clr);
padding: 0.5em 1em;
border-radius: 0.25em;
overflow: hidden;
width: 80%;
cursor: pointer;
}


.about_inner_content_txt details::details-content {

font-size: .85rem;
block-size: 0;
transition: block-size .8s,
content-visibility .8s;
transition-behavior: allow-discrete;
width: 100%;
}

.about_inner_content_txt details[open]::details-content {
block-size: auto;
}

.about_inner_content_txt details > p {
padding-block: 0.8em;
cursor: auto;
}

.about_inner_content_txt details summary {
color: var(--smoke-txt-clr);
line-height: 1.3;
list-style-position: outside;

}

.about_inner_content_txt details summary::marker {
color: var(--golden-light);
}

.about_inner_content_txt .media-images {
display: flex;
column-gap: 1.2em;
flex-wrap: wrap;
position: relative;
}


.about_inner_content_txt .media-images img {
width: 200px;
height: 250px;

border-radius: 8px;
object-fit: cover;

}


.about-inner-goal .images {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
margin-top: 2em;
}

.about-inner-goal .images .img-1 img{

width: 500px;
height: 500px;
/* float: right; */
/* position: absolute; */
/* top: 0; */
margin-top: 1.2em;
border: 4mm ridge rgba(189, 154, 55, 0.705);
transform: rotate(10deg);
}

.about-inner-goal .images .img-2 img {
width: 250px;
height: 250px;
position: relative;
}

/* .about .achieve_content
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
} */

/* .about .achieve_content {
  margin-top: 2em;
}

.about .achieve_inner {
  width: 65%;
  background: red;
}

.about .achieve_content .icon i {
  font-size: 3em;
  background: var(--golden-dark);
  padding: .2em;
  border-radius: 50%;
  margin-right: .2em;
  
}

.about .achieve_content:not(:last-child) {

  margin-bottom: 2em;
}

.about .achieve_content .achieve_content_text {
  color: var(--smoke-txt-clr);
  about_achieve
  
}
.achieve_content_text details {
display: inline-block;
background: tan;
}

.about .achieve_content .achieve_content_text h3 {
  margin-bottom: .2em;
}

.about .achieve_content .achieve_content_text p {
  width: 65%;
  box-shadow: 0px 5px 10px #00000016;
  padding: .3em 1.2em;
  border-radius: 20px
}

.achieve_content_text details {
display: block;
}


.about .about_achieve .img1 img{
  width: 400px;
  height: 400px;
  position: absolute;
  left: 60%;
  top: 10px;
  transform: rotate(10deg);
  border: 20px solid var(--text-clr);
  box-shadow: 0 0 5px #000000ac;
  border-block-end-style: groove;
writing-mode: horizontal-tb;
}

.about .about_achieve .img2 img {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 65em;
  top: 10em;
  transform: rotate(-10deg);
  border: 20px solid var(--text-clr);
  box-shadow: 0 0 5px #000000ac;
  border-block-end-style: groove;
writing-mode: horizontal-tb;
  
} */


/* blog styling  */

.blog-container {
  background: var(--bg-dark-medium2);
  margin-top: 9em;
}
.blog-container h1{
  text-align: center;
  color: var(--golden-medium);
  font-size: 2em;
  padding: 1em 0 .2em;
  display: flex;
  align-items: center;
  justify-content: center;
  
  position: relative;
}
.blog-container h1::before {
  content: ''; /* Required for the pseudo-element */
  position: absolute;
  bottom: 0; /* Adjust spacing between text and underline */
  left: 50%; /* Center the underline */
  transform: translateX(-50%); /* Correct centering */
  width: 5%; /* Adjust to make the underline shorter */
  height: 2.5px; /* Thickness of the underline */
  background-color: var(--golden-medium); /* Use your desired underline color */
  border-radius: 2px; /* Optional for rounded underline */
}
.blog_inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  width: 325px;
  background: var(--bg-dark-light); 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px hsla(0, 5%, 75%, 0.2);
  margin: 20px;
}

.card img {
  width: 100%;
  height: 300px;
}
.card_content {
  padding: 1em;
}
.card_content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-clr);
}

.card_content p {
  color: var(--smoke-txt-clr);
  font-size: 15px;
  line-height: 1.3;
}

.card_content .btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--golden-dark);
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  color: var(--text-clr);
  transition: .3s ease-in-out;
}

.card_content .btn:hover {
  background: var(--bg-dark-light);
  color: var(--golden-dark);
  box-shadow: 0 2px 5px var(--smoke-txt-clr);
}


/* contact us section  */
.contact-section {
  display: flex;
  max-width: 100%;
  padding: 40px;
  /* background: var(--bg-dark-light); */
  /* border-radius: 10px; */
  margin: 40px 0;
}

.contact-info {
  background: var(--golden-dark);
  color: var(--text-clr);
  padding: 30px;
  /* flex: 1; */
  border-radius: 10px;
  margin: 2em;
  width: 30%;
  transform: translate(50px, -5%);
  align-self: center;
  transition: .3s ease-in-out;
  /* height: 80%; */
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 20px 0;
  font-size: 1rem;
  display: flex;
  
  align-items: center;
  gap: 10px;
  /* border: 1px solid; */
}

.contact-info i {
  font-size: 1.2rem;
}

.contact-section .icon-contact {
  padding-top: 1em;
  padding-inline: 2rem;
}

.contact-section .icon-contact a {
  text-decoration: none;
  color: var(--text-clr);
}

.contact-section .icon-contact a i {
  font-size: 2em;
  padding-block: .2em;
  transition: .3s ease-in-out;

}
.contact-section .icon-contact a:hover i {
  color: var(--bg-dark-light);
  transform: translateY(-5px);
}

.contact-form {
  padding: 3em;
  width: 60%;
  /* flex: 3; */
  background: var(--bg-dark-medium2);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-form h2 {
  font-size: 1.5rem;
  color: var(--text-clr);
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 0.9rem;
  color: var(--smoke-txt-clr);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid var(--golden-medium);
  border-radius: 5px;
  background: var(--bg-dark-light);
  color: var(--text-clr);
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  display: inline-block;
  background: var(--golden-medium);
  color: var(--text-clr);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background: var(--golden-dark);
}


/* footer section  */
.footer {
  /* background: var(--bg-dark-medium); */
  background: url('../img/pictures/footer-svg.png');
  color: var(--text-clr);
  padding: 40px 20px;
  font-family: Arial, sans-serif;

  
}

.footer-top {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--golden-dark);
}


.footer-contact div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact i {
  font-size: 2rem;
  color: var(--golden-light);
  margin-bottom: 10px;
}

.footer-contact p {
  margin: 0;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.footer-links h3 {
  color: var(--golden-medium);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--text-clr);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--golden-light);
}

.subscribe form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe input {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid var(--golden-dark);
  border-radius: 5px;
  background: var(--bg-dark-medium2);
  color: var(--text-clr);
}

.subscribe button {
  background: var(--golden-medium);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: var(--text-clr);
  cursor: pointer;
}

.subscribe button:hover {
  background: var(--golden-dark);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid var(--golden-dark);
  padding-top: 10px;
}

.social-media a {
  color: var(--golden-light);
  font-size: 1.5rem;
  margin: 0 10px;
}

.social-media a:hover {
  color: var(--golden-dark);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--smoke-txt-clr);
  margin-top: 10px;
}


/* -----------------responsive styling------------  */

/* extra small screens */
@media (max-width: 320px ) {
  body{ 
  }
  .header nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 7em !important;
    background: var(--bg-dark-light);
    padding: 10px;
    border-radius: 5px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  
  


  .header > * {
    width: 100%;
  }
  
  

}

/* mobile phones (potrait)  */
@media (max-width: 480px) {
  body{ 
    font-size: 12px;
    
    /* padding: 5px; */
  }
}

/* mobile phones (landscape)  */
@media (max-width: 576px) {
  body{ 
    font-size: 13px;
  }
}

/* tablets  */
@media (max-width: 768px) {
  body{ 
    font-size: 14px !important;
    /* padding: 10em !important; */
  }

  .header nav ul {
    display: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 2em;
    font-size: 10px !important;
  }

  
  .header nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 10em;
    background: var(--bg-dark-light);
    padding: 10px;
    border-radius: 5px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .header nav ul li {
    /* margin-right: 0; */
    font-size: 1.2em;
    margin-bottom: 1.1em;
    width: 100% !important;
  }
  .header nav button {
    display: block;
    font-size: 1.2em;
    padding: .8em;
    background: var(--golden-light);
    border: none;
    border-radius: 8px;
    transform: translateY(-20px);
  }
  .header nav button:hover + ul,
  .header nav ul:hover { 
    display: block;
  }

  .header .hero-content .hero_inner h1 {
    font-size: 3em !important;
    letter-spacing: 15px;
  }

  .header .hero-content .hero_inner h4 {
    font-size: 1em !important;
    letter-spacing: 8px;
  }
  .header .hero-content .hero_inner .catchPhrase {
    font-size: 0.9em !important;
    width: 100%;
    /* letter-spacing: 5px; */
  }

  .about .about_content .about_intro {
    flex-direction: column;
    text-align: center;
    
  }
  .about .about_content .about_intro .intro_content p {
    width: 100%;
    font-size: 1em;
    margin-top: 1em;
    
  }
  .about .about_content .clip_image {
    font-size: 2.5em;
  }
  .about_inner_content_txt {
    margin-top: 5em;
    padding: 0 2%;
  }
  .about-inner-goal > * {
    flex: 1;
  }

  .about-inner-goal .images {
    display: none;
  }
  .about_inner_content_txt .media-images {
    
    column-gap: 12px;
  }
  .about_inner_content_txt .media-images img  {
    width: 100%;
    height: auto;
    object-fit: cover;

  }
  .about_inner_content_txt .media-images .img:nth-child(2) {
    flex: 1
  }

  .contact-section {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    width: 100%;
    transform: translate(0, 0);
  }
  .contact-info h2, .contact-form h2 {
    text-align: center;
  }

  .footer-links {
    grid-template-columns:  1fr;
  }
  

}

/* laptops  */
@media (max-width: 992px) {
  body{ 
    font-size: 15px;
  }
}

/* desktops and larger laptops  */
@media (max-width: 1200px) {
  body{ 
    font-size: 16px;
  }
}

