/*====================================================
    GOOGLE FONTS
====================================================*/ :root {
  --primary: #111111;
  --secondary: #C8A35D;
  --bg: #f7f5f1;
  --white: #ffffff;
  --text: #5d5d5d;
  --border: #e8e8e8;
  --shadow: 0 20px 50px rgba(0, 0, 0, .08);
  --radius: 20px;
  --transition: .35s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section {
  padding: 40px 0;
}
.container {
  max-width: 1200px;
}
/*====================================================
    TYPOGRAPHY
====================================================*/
.section-subtitle {
  display: inline-block;
  letter-spacing: 3px;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.section-title {
  margin-bottom: 60px;
}
.section-title span {
  display: block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .85rem;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #111;
  font-weight: 700;
}
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: #111;
}
p {
  font-size: 17px;
  color: var(--text);
}
/*====================================================
    BUTTON
====================================================*/
.btn-dark {
  background: #111;
  border: none;
  border-radius: 50px;
  padding: 15px 34px;
  transition: .35s;
}
.btn-dark:hover {
  background: var(--secondary);
  color: #111;
  transform: translateY(-3px);
}

/*====================================================
    HERO
====================================================*/
.hero-section {
  padding-top: 40px;
  padding-bottom: 40px;
	background: #f4f0e4;
}


.hero-section h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 15px;
}
.hero-text {
  font-size: 18px;
  margin-bottom: 15px;
  max-width: 560px;
	line-height: 28px;
}
/*====================================================
    QUOTE
====================================================*/
.quote-section {
  padding-top: 0;
  padding-bottom: 30px;
}
.quote-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-icon {
  font-size: 40px;
  color: var(--secondary);
}
.quote-card blockquote {
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  color: #222;
  line-height: 1.4;
  margin: 20px 0;
}
.quote-author {
  font-weight: 600;
  color: #111;
}
.quote-author span {
  display: block;
  color: var(--secondary);
  margin-top: 6px;
}
/*====================================================
    BIOGRAPHY
====================================================*/
.bio-section {
  background: #fff;
}
.bio-content p {
  margin-bottom: 22px;
}
.bio-image {
  position: sticky;
  top: 120px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bio-image img {
  width: 100%;
  transition: .6s;
}
.bio-image:hover img {
  transform: scale(1.06);
}
/*====================================================
    ARTISTIC PHILOSOPHY
====================================================*/
.philosophy-section {
  background: var(--bg);
}
.philosophy-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 45px 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}
.philosophy-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
}
.philosophy-card i {
  font-size: 52px;
  color: var(--secondary);
  margin-bottom: 25px;
  display: block;
}
.philosophy-card h4 {
  font-size: 30px;
  margin-bottom: 18px;
}
.philosophy-card p {
  margin-bottom: 0;
}
/*====================================================
    TIMELINE
====================================================*/
.timeline-section {
  background: #fff;
}
.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--secondary);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px var(--secondary);
  margin-right: 15px;
  margin-top: 12px;
  z-index: 2;
  margin-left: 18px;
}
.timeline-content {
  flex: 1;
  background: #fafafa;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}
.timeline-content h4 {
  font-size: 30px;
  margin-bottom: 12px;
}
.timeline-content p {
  margin-bottom: 0;
}
/*====================================================
    PROJECTS
====================================================*/
.projects-section {
  background: var(--bg);
}
.project-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: .35s;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-8px);
}
.project-card i {
  font-size: 28px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
/*====================================================
    FEATURED ARTICLE
====================================================*/
.article-section {
  background: #780505;
}
.article-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.article-label {
  display: inline-block;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.article-box h2 {
  color: #fff;
  font-size: 3.3rem;
  margin-bottom: 25px;
}
.article-box p {
  color: rgba(255, 255, 255, .80);
  max-width: 700px;
  margin: 0 auto 40px;
}
.article-box .btn-dark {
  background: var(--secondary);
  color: #111;
  font-weight: 600;
}
.article-box .btn-dark:hover {
  background: #fff;
  color: #111;
}

/*====================================================
    BACK TO TOP
====================================================*/
#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: var(--secondary);
  color: #111;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
  transition: .35s;
  z-index: 999;
}
#backToTop:hover {
  transform: translateY(-5px);
}
/*====================================================
    RESPONSIVE
====================================================*/
/*=========================
    Large Desktop
=========================*/
@media (max-width:1400px) {
  .hero-section h1 {
    font-size: 4rem;
  }
  .section-title h2 {
    font-size: 2.8rem;
  }
}
/*=========================
    Laptop
=========================*/
@media (max-width:1199px) {
  section {
    padding: 90px 0;
  }
  .hero-section {
    padding-top: 160px;
  }
  .hero-section h1 {
    font-size: 3.6rem;
  }
  .quote-card {
    padding: 55px;
  }
  .quote-card blockquote {
    font-size: 26px;
  }
  .bio-image {
    position: relative;
    top: 0;
  }
}
/*=========================
    Tablet
=========================*/
@media (max-width:991px) {
  .header-area {
    padding: 15px 0;
  }
  .navbar {
    background: #fff;
    border-radius: 15px;
  }
  .navbar-collapse {
    margin-top: 15px;
  }
  .navbar-nav {
    padding: 15px 0;
  }
  .navbar-nav .nav-link {
    margin: 10px 0;
  }
  .hero-section {
    text-align: center;
    padding-top: 150px;
  }
  .hero-text {
    margin: auto auto 30px;
  }
  .hero-buttons {
    justify-content: center;
    display: flex;
  }
  .hero-image {
    max-width: 550px;
    margin: auto;
  }
  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
  .quote-card {
    padding: 45px;
  }
  .quote-card blockquote {
    font-size: 24px;
  }
  .timeline::before {
    left: 12px;
  }
  .timeline-dot {
    width: 18px;
    height: 18px;
    margin-right: 22px;
  }
  .timeline-content {
    padding: 22px;
  }
  .footer-area {
    text-align: center;
  }
  .footer-area .col-lg-5, .footer-area .col-lg-4, .footer-area .col-lg-3 {
    margin-bottom: 40px;
  }
  .social-icons {
    justify-content: center;
  }
}
/*=========================
    Mobile
=========================*/
@media (max-width:767px) {
  section {
    padding: 70px 0;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  .hero-section h1 {
    font-size: 2.7rem;
    line-height: 1.1;
  }
  .hero-text {
    font-size: 16px;
  }
  .btn-dark {
    width: 100%;
    padding: 15px;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .quote-card {
    padding: 30px;
  }
  .quote-icon {
    font-size: 40px;
  }
  .quote-card blockquote {
    font-size: 20px;
  }
  .bio-content p {
    font-size: 16px;
  }
  .philosophy-card {
    padding: 35px 25px;
  }
  .philosophy-card h4 {
    font-size: 26px;
  }
  .timeline::before {
    display: none;
  }
  .timeline-item {
    display: block;
  }
  .timeline-dot {
    display: none;
  }
  .timeline-content {
    margin-bottom: 25px;
  }
  .project-card {
    padding: 22px;
  }
  .article-box h2 {
    font-size: 2.2rem;
  }
  .gallery-item img {
    height: 260px;
  }
  .footer-area {
    padding: 70px 0 30px;
  }
  .footer-area h3 {
    font-size: 32px;
  }
  .footer-area h5 {
    font-size: 22px;
  }
  #backToTop {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
/*=========================
    Small Mobile
=========================*/
@media (max-width:480px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .section-title h2 {
    font-size: 1.9rem;
  }
  .quote-card {
    padding: 25px;
  }
  .quote-card blockquote {
    font-size: 18px;
    line-height: 1.7;
  }
  .gallery-item img {
    height: 220px;
  }
  .article-box h2 {
    font-size: 1.9rem;
  }
}
/*====================================================
    ANIMATIONS
====================================================*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/*====================================================
    CUSTOM SCROLLBAR
====================================================*/ ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b48d42;
}
/*====================================================
    SELECTION
====================================================*/ ::selection {
  background: var(--secondary);
  color: #111;
}

/*=============================
    MODAL
=============================*/

.modal-content{

    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.2);

}

.modal-header{

    padding:25px 35px;
    border-bottom:1px solid #ececec;
    background:#f8f8f8;

}

.modal-title{

    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:700;

}

.modal-body{

    padding:40px;

}

.modal-body img{

    border-radius:20px;

}

.modal-body h3{

    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:20px;

}

.modal-body p{

    font-size:17px;
    line-height:1.8;

}

.modal-footer{

    padding:20px 35px;
    border-top:1px solid #ececec;

}

blockquote{

    color:#555;
    font-size:18px;

}

@media(max-width:768px){

    .modal-body{

        padding:25px;

    }

    .modal-title{

        font-size:1.6rem;

    }

    .modal-body h3{

        font-size:1.5rem;

    }

}