
@import url('fonts.css');
:root {
  /* Paleta de culori principale */
  --color-black: #0a0a0a;
  --color-gray-dark: #5a5a5a;
  --color-gray-medium: #9a9a9a;
  --color-gray-light: #c5c5c5;

  /* Paleta bej/cream */
  --color-beige: #e8d7c3;
  --color-beige-75: #eddcc9;
  --color-beige-50: #f3eae1;
  --color-beige-25: #f9f4f0;

  /* Culori semantice (pentru compatibilitate) */
  --color-bg: #ffffff;
  --color-text: #222222;
  --color-muted: #7a7a7a;
  --color-light: #999999;
  --color-accent: #b5a899;
  --color-accent-light: #d6cec3;
  --color-cream: #fdf6ec;

  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-heavy: 900;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
.container
{
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
html, body {
  overflow-x: hidden;
}
h1, h2, h3,
.title,
h3.entry-title,
h2.entry-title {
  font-family: 'Majesti Banner Bold';
  color: var(--color-text);
  line-height: 1.2;
}
h4, h5, h6,
.subtitle {
  font-family: 'General Sans Semibold';
  color: var(--color-text);
  line-height: 1.4;
}
body,
p,
.text {
  font-family: 'General Sans';
  color: var(--color-text);
  line-height: 1.6;
  font-size: clamp(14px, 1vw, 18px);
}
#page a{
  font-family: 'Majesti Banner Light' !important;
  font-size: clamp(16px, 1.3vw, 24px);
}
h1 {font-size: clamp(32px, 5vw, 64px);}
h2 {font-size: clamp(28px, 4vw, 48px);}
h3 {font-size: clamp(24px, 3vw, 36px);}
h4 {font-size: clamp(20px, 2.5vw, 28px);}
h5 {font-size: clamp(18px, 2vw, 24px);}
h6 {font-size: clamp(16px, 1.5vw, 20px);}
.text-light {
  font-weight: var(--font-weight-light);
}
/* Header */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  transition: opacity 0.3s ease;
  display: none;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
  z-index: 800;
}

.bwp-navigation {
  position: fixed;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.5s ease-in-out;
}

.bwp-navigation.open {
  right: 0;
}
.wpbingo-menu-left {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    will-change: right;
}
.header-main.scrolled {
    background: rgba(0, 0, 0, .2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}
.bwp-header.sticky .header-main {
    background: none;
    box-shadow: unset;
}
.bwp-header.header-v2 .navbar-toggle>span.line-3 {
    display: none;
}
.bwp-header.header-v2 .navbar-toggle>span {
    width: 35px;
    height: 3px;
    border-radius: 15px;
}

.bwp-header .header-main {
    padding: 65px 60px 35px!important;
}
.bwp-header.header-v2 .navbar-toggle>span,
.bwp-header.header-v2 .navbar-toggle:hover>span  {
    background: #fff;
}
.bwp-header.header-v2 .wpbingo-menu-left .toggle-mainmenu::after,
.bwp-header.header-v2 .wpbingo-menu-left .toggle-mainmenu::before{
    content: unset!important;
}


.bwp-header.header-v2 .wpbingo-menu-left .bwp-navigation ul li {
    text-align: center;
}
.txt_card_home a{
  font-size: 3vw !important;
}
.logo-footer img {
    max-height: 70px;
}
/*Testimonial*/
.bwp-testimonial.default {
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: transparent;
  font-family: "Playfair Display", serif;
  color: var(--color-text);
}

.bwp-testimonial .testimonial-title h2 {
  display: none;
}

.bwp-testimonial .testimonial-title::before {
    content: "“";
    display: block;
    font-size: 50px;
    color: var(--color-quote);
    font-family: 'FontAwesome';
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.bwp-testimonial .testimonial-item .testimonial-customer-position p {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  font-style: normal;
  font-family: 'General Sans';
}

.bwp-testimonial .testimonial-item .testimonial-customer-name {
  margin-top: 15px;
  font-size: 40px;
  font-family: 'Bon Vivant', cursive;
  color: var(--color-accent);
  font-style: normal;
  text-transform: unset;
  font-weight: 100;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bwp-testimonial.default .testimonial-info>:before {
  content:unset;
}

.bwp-testimonial .testimonial-item .testimonial-job {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  font-family: 'General Sans';
  font-weight: 100;

}
.bwp-testimonial.default .slick-dots li button {
    background: var(--color-quote);
}
.bwp-testimonial.default .slick-dots li.slick-active button {
    border: 1px solid var(--color-quote);
}

/* Caption */

figcaption.widget-image-caption.wp-caption-text {
    position: absolute;
    top: 50%;
    right: 37%;
    color: #fff;
    font-size: 2vw;
    font-weight: 400;
    font-family: 'Cormorant Garamond';
}
.txt_portfolio span.elementor-button-text::before {
    content: ' ';
    position: absolute;
    width: 40px;
    height: 1px;
    background: black;
    top: 45%;
    left: 0;
}
.txt_portfolio span.elementor-button-text{
    width: 18vw;
}
.txt_portfolio a:hover .elementor-button-text {
  color: var(--color-dot-active);
}
.txt_portfolio a:hover .elementor-button-text::before{
  background-color: var(--color-dot-active);
}

.swiper-pagination{
  text-align: start;
}

.elementor-background-slideshow__slide__image {
  filter: grayscale(1) brightness(0.5);
}
.button-1 a:before {
  border: 1px solid #ffffff;
}
.button-1 a:after {
  background: #777c803b;
}
.elementor-6892 .elementor-element.elementor-element-1526b86 .elementor-button:hover, .elementor-6892 .elementor-element.elementor-element-1526b86 .elementor-button:focus {
  box-shadow: unset;
}
.back-top {
  background: #8f8985a6;
  border: 1px solid #8f8985a6;
}


/* Footer */
#bwp-footer .footer-top {
  padding: 40px 0;
}
#bwp-footer .footer-bottom {
  padding: 10px 0;
}
.txt_footer p{
  font-family: 'Bon Vivant', cursive;
  color: #b5a89970;
  font-size: 22px;
  margin-top: 4rem;
}
#bwp-footer .social-footer .social-link li a i {
  font-size: 20px;
  color: black;
}

/* Post */
.post-image {
  width: 100%;
  height: 75vh;
}
img.attachment-monisa-thumbnails-1.size-monisa-thumbnails-1.wp-post-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.author-categoies {
  display: none;
}
.post-inner.style {
  text-align: start;
}
h2.entry-title {
  font-family: 'Cormorant Upright' !important;
  font-size: 25px !important;
  text-transform: uppercase;
}
p.post-excerpt {
  font-size: 14px;
  color: black;
  font-weight: 100;
  letter-spacing: 1.2px;
  line-height: 25px;
}
.read-more {
  text-transform: lowercase;
  font-size: 18px;
  font-weight: 100;
}
.slick-slider .slick-list .slick-slide {
  padding: 0 35px!important;
}
.type-post {
  margin-bottom: 100px !important;
}

/* Contact */
.subtitle_contact h2 {
  font-family: 'Bon Vivant', cursive !important;
  font-size: 37px !important;
  color: #d9d9d9;
}
.title_form p{
  font-family: 'Bon Vivant', cursive !important;
  font-size: 50px !important;
  color: var(--color-accent);
}
.title_form .elementor-widget-text-editor{
  background: #fff;
}
.contact-us-form .button {
  background: #BDBDBD38 !important;
  border: 1px solid #7a7a7a59;
}
.contact-us-form .button:before{
  border: 1px solid #7a7a7a59;
}
.contact-us-form input[type=submit]{
  color: #7A7A7A;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'General Sans';
  letter-spacing: 1px;
}
/* Blog */
.entry-thumb.single-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30rem;
}
.single-post .header-main ,
.post-type-archive-portfolio .header-main {
  background: black;
}
.entry-thumb.single-thumb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 45rem;
  background: var(--color-accent);
  z-index: -1;
}
h3.entry-title {
  position: absolute;
  top: 20rem;
  right: 0;
  font-family: 'Cormorant Upright' !important;
  font-size: 40px !important;
  font-weight: 100 !important;
  width: 100%;
  text-align: center;
}
.post-content, .comments-area {
  width: 63% !important;
}
.has-text-align-center {
  text-align: left !important;
}
.post-content p {
  color: #000000cc;
  font-family: 'Avenir', sans-serif;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 27px;
}
.comments-area .comment-form .comment_reply_header h3{
 font-family: 'Cormorant Upright' !important;
 color: var(--color-accent);
}
.comments-area .comment-form .form-button input[type=submit] {
  background: #BDBDBD38;
  color: #7A7A7A;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  font-family: Cormorant Upright, serif;
  font-size: 0.8vw;
  border: 1px solid #7a7a7a59;
  padding: 5px 20px;
  letter-spacing: 1px;
}
.prevNextArticle>div a{
  font-family: 'Bon Vivant', cursive !important;
  color: var(--color-accent);
  font-size: 25px;
  letter-spacing: 2px;
}
.prevNextArticle>div a:before{
  background: var(--color-accent);
}

/* Portfolio */
.portfolio-1 p,
.portfolio-1 h2{
  font-family: 'Cormorant Upright' !important;
}
.portfolio_loadmore .btn{
  background-color: transparent !important;
  color: var(--color-accent) !important;
  font-family: 'Bon Vivant', cursive !important;
  font-size: 40px !important;
  letter-spacing: 2px;
}
.bwp-portfolio .portfolio_loadmore .loadmore:after{
  display: none;
}
.bwp-portfolio .portfolio_loadmore .loadmore:before {
  height: 40%;
  background: #8a6d3b !important;
  top: 15px !important;
}

.bwp-portfolio .entry-title {
  color: var(--color-accent) !important;
  font-family: 'Bon Vivant', cursive !important;
  text-transform: initial;
  font-size: 40px !important;
  font-weight: 100;
}
.bwp-portfolio .categories a {
  color: var(--color-accent) !important;
}

/* Articol Portfoliu */
.portfolio-hero {
    height: 45vh;
}
.portfolio-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.portfolio-section1 {
    position: relative;
    display: flex;
    margin: 0 30rem;
}
.portfolio-secondary {
    display: block;
}
.portfolio-secondary img {
    position: absolute;
    bottom: 5rem;
    width: 20vw;
}
.portfolio-content {
  margin: 90px auto;
  text-align: center;
}

.portfolio-title {
  font-family: 'Bon Vivant', cursive;
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.txt_description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.portfolio-info {
  font-size: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
  font-family: 'Cormorant Upright', serif;
}
.portfolio-description{
  margin: 0 30rem;
  display: flex;
  flex-direction: row;
  gap: 10rem;
}
.txt_description {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1px;
  color: black;
}
.txt_description h6 {
    text-transform: uppercase;
    color: var(--color-accent);
    position: relative;
    margin-bottom: 5rem;
}

.txt_description h6::after{
  content: '';
  height: 1px;
  width: 55px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: -5px;
  left: 0;
}
.portfolio-description img {
    height: 45vh;
}
.portfolio-post-content #comments {
  margin: 0 30rem;
}
.portfolio-gallery{
  margin: 15rem 0 10rem;
  padding: 5rem;
  background-color: #f7f7f8;
}

@media (max-width: 767px) {
	 body, p, .text {
    font-size: 14px;
  }

  a {
    font-size: 16px !important;
  }
  .txt_card_home a {
    font-size: 10vw !important;
}
  .bwp-main .main-content{
    padding:0;
  }
  .bwp-header .header-main {
    padding: 50px 50px 25px !important;
  }
  .txt_portfolio span.elementor-button-text {
    width: 100%;
  }
  .bwp-testimonial .testimonial-item .testimonial-customer-position p {
    font-size: 14px;
  }
  .bwp-testimonial.default {
    margin: 0;
    padding: 0;
  }
  .bwp-testimonial .testimonial-item .testimonial-customer-name {
    margin-top: 0;
    font-size: 25px;
  }
  .bwp-testimonial .testimonial-item .testimonial-job {
    font-size: 8px;
  }

  /* Blog */
  .entry-thumb.single-thumb {
    margin-top: 15rem;
    padding: 25px;
  }
  h3.entry-title {
    top: 10rem;
    font-size: 28px !important;
  }
  .entry-thumb.single-thumb::after{
    height: 15rem;
  }
  .post-content, .comments-area {
    width: 100% !important;
  }
  .post-image {
    height: 30vh;
  }
  .post-content p {
    line-height: 24px;
    font-size: 14px;
  }
  .prevNextArticle>div a{
    font-size: 18px;
 }
 .comments-area .comment-form .form-button input[type=submit] {
    font-size: 2.5vw;
 }

  /* Portfolio */
  .portfolio-post-content #comments,.portfolio-section1 {
      margin: 0;
  }
  .portfolio-secondary img {
    position: absolute;
    bottom: 24rem;
    width: 50vw;
    left: 2rem;
  }
  .portfolio-title {
    font-size: 40px;
  }
  .portfolio-description {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 5rem;
    padding: 0 30px;
  }
  .txt_description h6 {
    margin-bottom: 2rem;
  }
  .portfolio-gallery {
    margin: 5rem 0;
  }
}

@media (min-width: 768px)  and (max-width: 991px) {
	body, p, .text {
    font-size: 16px;
  }

  a {
    font-size: 18px !important;
  }
  .bwp-main .main-content{
    padding:0;
  }
  .txt_portfolio span.elementor-button-text {
    width: 100%;
  }
  .bwp-widget-video .title-video h2 {
    font-size: 45px;
  }

  /* Blog */
  .entry-thumb.single-thumb {
    margin-top: 17rem;
    padding: 25px;
  }
  h3.entry-title {
    top: 12rem;
    font-size: 28px !important;
  }
  .entry-thumb.single-thumb::after{
    height: 20rem;
  }
  .post-content, .comments-area {
    width: 100% !important;
  }
 .post-image {
    height: 30vh;
  }
  .post-content p {
    line-height: 24px;
    font-size: 14px;
  }
  .prevNextArticle>div a{
    font-size: 18px;
  }
  .comments-area .comment-form .form-button input[type=submit] {
      font-size: 2vw;
  }

  /* Portfolio */
  .portfolio-post-content #comments,.portfolio-section1 {
      margin: 0;
  }
  .portfolio-secondary img {
    position: absolute;
    bottom: 20rem;
    width: 35vw;
    left: 5rem;
  }
  .portfolio-title {
    font-size: 40px;
  }
  .portfolio-description {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 5rem;
    padding: 0 30px;
  }
  .txt_description h6 {
    margin-bottom: 2rem;
  }
  .portfolio-gallery {
    margin: 5rem 0;
  }
}

@media (min-width: 992px) and (max-width: 1471px) {
	 body, p, .text {
    font-size: 18px;
  }

  a {
    font-size: 20px !important;
  }
  .bwp-main .main-content{
    padding:0;
  }
  .txt_portfolio span.elementor-button-text {
    width: 100%;
  }
  .bwp-testimonial .testimonial-item .testimonial-customer-position p {
    font-size: 20px;
  }
  .bwp-widget-video .title-video h2 {
    font-size: 45px;
  }

  /* Blog */
  .entry-thumb.single-thumb {
    margin-top: 22rem;
    padding: 55px;
  }
  h3.entry-title {
    top: 17rem;
    font-size: 35px !important;
  }
  .entry-thumb.single-thumb::after{
    height: 30rem;
  }
  .post-content, .comments-area {
    width: 100% !important;
  }
  .post-content p {
    line-height: 24px;
    font-size: 14px;
  }
  .prevNextArticle>div a{
    font-size: 18px;
  }
  .comments-area .comment-form .form-button input[type=submit] {
      font-size: 1.5vw;
  }

  /* Portfolio */
  .portfolio-secondary img {
    position: absolute;
    bottom: 13rem;
    width: 25vw;
    left: -18rem;
  }
  .portfolio-title {
    font-size: 40px;
  }
 .portfolio-description {
    margin: 0 10rem;
 }
  .txt_description h6 {
    margin-bottom: 2rem;
  }
  .portfolio-gallery {
    margin: 5rem 0;
  }
}
