/*
Theme Name: theme-name
Author: Sithara
Author URI: 
Version: 1.0
 */


@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasonsLight.eot');
    src: url('fonts/TheSeasonsLight.eot?#iefix') format('embedded-opentype'),
        url('fonts/TheSeasonsLight.woff2') format('woff2'),
        url('fonts/TheSeasonsLight.woff') format('woff'),
        url('fonts/TheSeasonsLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasonsRegular.eot');
    src: url('fonts/TheSeasonsRegular.eot?#iefix') format('embedded-opentype'),
        url('fonts/TheSeasonsRegular.woff2') format('woff2'),
        url('fonts/TheSeasonsRegular.woff') format('woff'),
        url('fonts/TheSeasonsRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasonsBold.eot');
    src: url('fonts/TheSeasonsBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/TheSeasonsBold.woff2') format('woff2'),
        url('fonts/TheSeasonsBold.woff') format('woff'),
        url('fonts/TheSeasonsBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



/* Global Styles  */
html, body {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}


 body{
    overflow:none;
    margin:0;
}

.section-title {
    margin-bottom: 10px;
    font-family: 'The Seasons';
    line-height: 1.1;
    color: #354230;
}

.section-desc {
   font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.green-btn,
.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 108px;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-family: "The Seasons", "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.green-btn {
  background: #354230;
  color: #FFFFFF;
  border: 2px solid #354230;
  box-shadow: 0 14px 30px rgba(5, 31, 62, 0.18);
}

.green-btn:hover {
  background: #d9c5a3;
  color: #FFFFFF;
  border-color: #354230;
  text-decoration: none !important;
}

.white-btn {
  background: #FAF9F6;
  color: #354230;
  border: 2px solid #354230;
}

.white-btn:hover {
  background: #d9c5a3;
  color: #354230;
  border-color: #354230;
  text-decoration: none !important;
}

.gradient-line-section {
  width: 100%;
  background: #FAF9F6;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.gradient-line-section .gradient-line {
  width: 100%;
  height: 12px;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #d9c5a3 35%,
    #d9c5a3 50%,
    #d9c5a3 70%,
    #FFFFFF 100%
  );
}

@media only screen and (max-width: 767px) {

.gradient-line-section .gradient-line {
    height: 10px;
}
}


h1, h2 {
    margin: 0;
}


@media (max-width: 991px) {
.section-title {
    font-size: 35px;
}
}

@media (max-width: 767px) {
.section-title {
    font-size: 28px;
}

}



