@font-face {
  font-family: 'Cormorant Garamond 700';
  src: url('../fonts/cormorant-garamond-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('ttf');
  font-weight: 100 900;
  font-display: swap;
}
/* ========== VARIABLES CSS ========== */
:root {
  --accent: #667863;
  --accent-secondary: #D7A98C;
  --accent-blue: #94A4B3;
  --light: #ecf0f1;
  --bg: #FAF9F6;
  --bg-light: #E8E4DC;
  --text: #343434;
  --text-light: #5E5E57;
  --border: rgba(0,0,0,0.05);
  --footer: #2c3e50;
  --footer-text: #C3C3BA;
  --transition: 0.3s ease;
  --primary: #000000
}

body.dark-mode {
  --accent: #667863;
  --accent-secondary: #D7A98C;
  --accent-blue: #94A4B3;
  --light: #2c3e50;
  --bg: #1E2420;
  --bg-light: #5E5E57;
  --text: #EDEBE6;
  --text-light: #C3C3BA;
  --border: rgba(255,255,255,0.05);
  --footer: #1a1a1a;
  --footer-text: #C3C3BA;
  --primary: #ffffff
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background: var(--bg-light);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond 700', serif !important;
  color: var(--text);
}
footer h3 {
  color: var(--footer-text);
}
p{
  color: var(--text);
}
.quote-edenn {
  font-family: 'Cormorant Italic', serif !important;
}
.mobile-menu-content h2{
  color: var(--accent);
}
.menu-widget-title{
  color: var(--accent);
}
.contact-info{
  list-style: none;
}
.contact-info ul li a{
  color: var(--accent);
}
img {
  max-width: 100%;
  height: auto;
}
/* ========== HEADER ========== */
.header-banner{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px;
}
.header-banner div{
  display: flex;
  gap: 15px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 10px;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text);
  display: flex;
  justify-content: center;
}

.logo a {
  font-weight: 600;
  font-size: 1.2rem;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nav-links {
    align-items: start;
    flex-direction: column;
  }
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-menu a {
  color: var(--footer-text);
}
footer svg {
  fill: var(--footer-text);
}

.nav-links a::after,
.active a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

@media (min-width: 769px) {
  .nav-links a:hover::after,
  .active a::after {
    width: 100%;
  }
}

.nav-links a:hover {
  color: var(--secondary);
}
 footer a:hover::after{
    width: 100%;
  }


footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
  transition: all var(--transition);
}
/* ========== THEME TOGGLE ========== */
.theme-toggle {
  background: none;
  border: 1px solid var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-light);
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  margin-left: 1rem;
}

.theme-toggle:hover {
  transform: rotate(180deg);
}

.moon-icon {
  display: none;
  fill: var(--bg);
}
.moon-icon svg {
  fill: var(--bg);
}
.sun-icon svg {
  fill: var(--bg);
} 

body.dark-mode .sun-icon {
  display: none;
}

body.dark-mode .moon-icon {
  display: inline;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.menu-icon {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.4s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: var(--bg-light);
  padding: 2rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu-panel.active {
  left: 0;
}

.menu-overlay.active {
  display: block;
}

.mobile-menu-list li {
  list-style: none;
  margin: 10px 0;
}

.mobile-menu-links .menu-item,
.menu-widget-area a {
  list-style: none;
  margin: 10px 0;
  color: var(--accent);
}
.sub-menu{
  background-color: var(--bg);
  list-style: none;
  position: absolute;
  opacity: 0;
  padding: 10px;
  border-radius: 0 0 3px 3px;
  transition: all 0.3s ease;
}
.sub-menu li{
  margin: 5px 0;
}
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-container {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .nav-container {
    margin: 0 auto;
  }
  
  .mobile-menu-btn {
    display: none !important;
  }
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-title {
  font-family: 'Cormorant Garamond 700';
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.5em 0;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  font-family: 'Cormorant Italic', serif !important;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 1.5em 0;
  line-height: 1.4;
  color: #fff;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff!important;
  padding: 0.875em 2.5em;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header-banner .cta-button{
  height: 39px;
  padding: 0.4em;
}
.cta-button:hover {
  background: var(--accent);
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff!important;
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 6rem 5%;
  margin: 0 auto;
  background: var(--bg);
  transition: background var(--transition);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light);
}
.service-icon svg{
  fill: var(--accent);
  width: 40px;
}

body.dark-mode .service-card {
  background: #2c3e50;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border-color: #34495e;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  /* animation: bounce 2s infinite; */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card:hover .service-icon {
  animation: rotate 0.6s ease;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
  padding: 6rem 5%;
  background: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  height: 400px;
  max-width: 90vw;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.portfolio-item:hover::before {
  opacity: 0.9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1025px) {
  .portfolio-item .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}
}

.portfolio-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 6rem 5%;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

body.dark-mode .testimonial-card {
  background: #2c3e50;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  text-align: right;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 6rem 5%;
  background: var(--light);
  text-align: center;
}

body.dark-mode .cta-section {
  background: #34495e;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.cta-button-secondary:hover {
  background: var(--text);
  color: var(--text);
  transform: translateY(-3px);
}

/* ========== BLOG SECTION ========== */
.blog-section {
  padding: 6rem 5%;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid var(--light);
}

body.dark-mode .blog-card {
  background: #2c3e50;
  border-color: #34495e;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-thumbnail {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
  flex-wrap: wrap;
}

.blog-meta a {
  color: var(--text-light);
  text-decoration: none;
}

.blog-meta a:hover {
  text-decoration: underline;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--secondary);
}

.blog-excerpt {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--text);
}

/* ========== FOOTER ========== */
footer {
  background: var(--footer);
  color: var(--footer-text);
  transition: background var(--transition);
}
footer p, footer a, footer li {
  color: var(--footer-text);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 5%;
  background: var(--dark);
  color: var(--light);
  transition: background var(--transition);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--footer);
  color: var(--light);
  transition: background var(--transition);
}

.footer-social {
  padding-top: 20px;
}

.copyright {
  margin-right: 15px;
}

.footer-column {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 10px;
  max-width: 300px;
}

footer li {
  list-style: none;
}

footer a {
  text-decoration: none;
  transition: all var(--transition);
}

.footer-menu {
  display: flex !important;
  flex-direction: column !important;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary);
  transform: translateY(-5px) rotate(360deg);
}

svg {
  fill: var(--accent);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
}

@media (prefers-color-scheme: dark) {
  .back-to-top {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  }
}

/* ========== SINGLE POST ========== */
.single-post-wrapper {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond 700';
  line-height: 1.7;
  color: #1e1e1e;
  background-color: var(--light);
}

@media (prefers-color-scheme: dark) {
  .single-post-wrapper {
    background-color: #121212;
    color: #e0e0e0;
  }
  .single-post-wrapper a {
    color: #4aa3ff;
  }
}

.breadcrumb-wrapper {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #4a90e2;
  text-decoration: none;
}

.breadcrumb .separator {
  margin: 0 5px;
  color: #999;
}

.single-header .single-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

@media (prefers-color-scheme: dark) {
  .single-header .single-title {
    color: var(--light);
  }
}

.post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-meta a {
  color: #4a90e2;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .post-meta {
    color: #aaa;
  }
  .post-meta a {
    color: #50e3c2;
  }
}

.single-content {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content a {
  color: #4a90e2;
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .single-content a {
    color: #50e3c2;
  }
}

.single-footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 40px;
}

.share-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.share-button:hover {
  background-color: #d0d0d0;
}

@media (prefers-color-scheme: dark) {
  .share-button {
    background-color: #1f1f1f;
    color: #e0e0e0;
  }
  .share-button:hover {
    background-color: #333;
  }
}

/* ========== COMMENTS ========== */
.commentlist {
  list-style: none;
  padding: 0;
}

.comment-body {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-body:first-child {
  border-top: none;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 10px;
}

.comment-author b {
  font-weight: 600;
}

.comment-content {
  margin-top: 10px;
}

.reply a {
  font-size: 0.85rem;
  color: #4a90e2;
  text-decoration: none;
}

.reply a:hover {
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .comment-body {
    border-color: #333;
  }
  .reply a {
    color: #50e3c2;
  }
}

.comment-respond {
  margin-top: 40px;
}

.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.comment-form input[type="submit"] {
  background-color: #4a90e2;
  color: var(--light);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.comment-form input[type="submit"]:hover {
  background-color: #357ab8;
}

@media (prefers-color-scheme: dark) {
  .comment-form textarea {
    background-color: #1e1e1e;
    border: 1px solid #444;
    color: #e0e0e0;
  }
  .comment-form input[type="submit"] {
    background-color: #50e3c2;
    color: #1e1e1e;
  }
  .comment-form input[type="submit"]:hover {
    background-color: #38bfa0;
  }
}

/* ========== 404 & ERROR PAGES ========== */
.no-results {
  padding: 6rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-results-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.no-results-title {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.no-results-text {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-search {
  margin: 3rem 0;
}

.search-title,
.links-title,
.recent-title {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.error-links {
  margin: 3rem 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--bg-light);
  color: var(--text);
  text-decoration: none;
  border: 2px solid var(--light);
  border-radius: 50px;
  transition: all 0.3s ease;
}

body.dark-mode .quick-link {
  background: #2c3e50;
  border-color: #34495e;
}

.quick-link:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.error-recent-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.recent-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recent-thumbnail {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.recent-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-item:hover .recent-thumbnail img {
  transform: scale(1.1);
}

.recent-content {
  padding: 1rem;
}

.recent-item-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.recent-item-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-item-title a:hover {
  color: var(--accent);
}

.recent-date {
  font-size: 0.85rem;
  color: white;
  opacity: 0.7;
}

/* ========== SEARCH FORM ========== */
.search-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}

.search-form label {
  flex: 1;
  margin: 0;
}

.search-form input[type="search"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--bg-light);
  color: var(--text-light);
  transition: all 0.3s ease;
}

body.dark-mode .search-form input[type="search"] {
  background: #2c3e50;
  border-color: #34495e;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.search-form button,
.search-form input[type="submit"] {
  padding: 1rem 2rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-form button:hover,
.search-form input[type="submit"]:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 4rem 0 2rem;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0.5rem 1rem;
  background: var(--light);
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.dark-mode .page-numbers {
  background: #2c3e50;
  color: var(--dark);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-numbers.dots {
  background: transparent;
  cursor: default;
}

.page-numbers.dots:hover {
  transform: none;
  box-shadow: none;
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0.5rem 1.5rem;
}

/* ========== WIDGETS ========== */
.widget {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}

body.dark-mode .widget {
  background: #2c3e50;
}

.widget-title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 0.8rem;
}

.widget ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget ul li a:before {
  content: '→';
  color: var(--secondary);
  font-weight: bold;
}

.widget ul li a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}


/* ========== ELEMENTOR OVERRIDES ========== */
.e-con {
  --padding-inline-start: 0 !important;
  --padding-inline-end: 0 !important;
  --padding-block-start: 0 !important;
  --padding-block-end: 0 !important;
}

.elementor-widget-container {
  border-radius: 20px;
  color: var(--text-color);
}

.elementor-widget-text-editor,
.elementor-widget-heading {
  color: var(--text-color);
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
  color: var(--heading-color);
}

.elementor-button {
  background-color: var(--text);
  color: var(--text-color);
  border-color: var(--text);
  transition: all 0.3s ease;
}

.elementor-button:hover {
  background-color: var(--secondary);
  color: var(--text-color);
}

.elementor-widget-heading .elementor-heading-title {
  color: var(--heading-color) !important;
}

.elementor-widget a {
  transition: color 0.3s ease;
}



/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .cta-button {
    padding: 0.75em 2em;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .quick-links {
    flex-direction: column;
  }

  .quick-link {
    width: 100%;
    justify-content: center;
  }

  .error-actions {
    flex-direction: column;
  }

  .cta-button-secondary,
  .cta-button {
    width: 100%;
  }

  .search-form {
    flex-direction: column;
  }

  .recent-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }

  .social-links {
    gap: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* ========== HERO SECTION PARALLAX (FIXED BG) ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  position: absolute !important;
  z-index: 3 !important;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
  opacity: 1 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* Désactiver le fixed sur mobile pour meilleure performance */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0 15px;
  }

  .cta-button {
    padding: 0.75em 2em;
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .site-header,
  .site-footer,
  .post-navigation,
  .post-share,
  .related-posts,
  .breadcrumb-wrapper,
  .edit-link,
  .back-to-top,
  .mobile-menu-btn,
  .menu-overlay,
  .mobile-menu-panel {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
.footer-main{
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10% 0 10%;
  justify-content: center;
}
.footer-social h3{
  text-align: center;
}
.faq-section {
  margin: 0 auto;
  background-color: var(--bg);
  padding: 50px 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1em 0;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent); /* couleur accent */
}
.faq-container{
  max-width: 800px;
  margin: 0 auto;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
  margin-top: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.faq-icon,
.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-item.active .faq-icon,
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
/*
========== ARCHIVE PROJETS ==========
*/
.projets-archive {
  padding: 4rem 2rem;
}

.projets-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projets-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.projets-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* Filtrage */
.projets-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--text);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--text);
  color: white;
}

/* Grille */
.projets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.projet-card {
  background: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.projet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.projet-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.projet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projet-card:hover .projet-img {
  transform: scale(1.1);
}

.projet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projet-card:hover .projet-overlay {
  opacity: 1;
}

.projet-link {
  background: var(--secondary);
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.projet-link:hover {
  background: var(--text);
}

.projet-content {
  padding: 1.5rem;
}

.projet-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.projet-cat {
  font-size: 0.75rem;
  background: var(--light);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.projet-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.projet-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.projet-title a:hover {
  color: var(--secondary);
}

.projet-excerpt {
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* Pagination */
.projets-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.page-numbers {
  padding: 0.6rem 1rem;
  background: var(--light);
  border: 2px solid var(--light);
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

/*
========== SINGLE PROJET ==========
*/
.single-projet {
  padding: 3rem 2rem;
}

.single-projet-content {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text);
}

.projet-hero {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
}

.projet-hero img {
  width: 100%;
  height: auto;
}

.projet-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.projet-meta {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 10px;
}

.projet-categories {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.projet-category {
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.projet-date {
  margin: 0;
  color: var(--text-light);
}

.projet-body {
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Navigation */
.projet-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}

.projet-nav-prev:empty,
.projet-nav-next:empty {
  display: none;
}

.nav-link {
  display: block;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--secondary);
  color: white;
}

.nav-label {
  font-size: 0.9rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

/* Projets similaires */
.related-projets {
  margin-top: 3rem;
}

.related-projets h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-item {
  border-radius: 10px;
  overflow: hidden;
}

.related-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-link:hover img {
  transform: scale(1.1);
}

.related-link h4 {
  margin-top: 1rem;
  color: var(--text);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .projets-header h1 {
    font-size: 1.8rem;
  }

  .projets-grid {
    grid-template-columns: 1fr;
  }

  .projet-navigation {
    grid-template-columns: 1fr;
  }

  .projet-header h1 {
    font-size: 1.8rem;
  }
}


/* Carte */
.contact-map-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light);
}

.contact-map-section h2 {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 1.5rem;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map iframe {
    height: 300px !important;
  }
}
/* ===============================
   Edenn Widget - Services Columns
   =============================== */
.edenn-services-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.edenn-services-columns .service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* pour l'effet bulle */
}

.service-image {
  width: 150px;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
  margin: auto;
  border-radius: 150px !important;
  height: 150px !important;
  object-fit: cover;
}
.service-item:hover .service-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* pour l'effet bulle */
  cursor: pointer;
  background: transparent;
}

.service-icon-wrapper svg {
  width: 36px;
  height: 36px;
  fill: var(--secondary);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

/* Effet bulle d’eau sur la bordure */
.service-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  z-index: 1;
}

.service-icon-wrapper:hover::after {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 0;
}

.service-icon-wrapper:hover svg {
  transform: scale(1.2);
  fill: var(--light);
}

.service-item:hover .service-icon-wrapper {
  background: var(--secondary);
}

.service-item:hover .service-icon-wrapper svg {
  fill: var(--light);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.services .section-title {
  color: #fff !important;
  font-size: 2.8rem;
}
/* --- DARK MODE --- */
body.dark-mode .service-item {
  border-color: rgba(255,255,255,0.1);
}

body.dark-mode .service-title {
  color: var(--dark);
}

body.dark-mode .service-icon-wrapper {
  border-color: var(--accent);
}

body.dark-mode .service-item:hover .service-icon-wrapper {
  background: var(--accent);
}

body.dark-mode .service-icon-wrapper:hover svg {
  fill: var(--light);
}
body.dark-mode .section-title{
  color: #ffffff;
}

/* ===============================
   Edenn Widget - gallery
   =============================== */
/* Gallery Grid */
/* ===================== Gallery Grid ===================== */
.edenn-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.edenn-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.edenn-gallery a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.edenn-gallery a:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

/* ===================== PhotoSwipe Fullscreen ===================== */
/* PhotoSwipe v5 fournit son propre CSS, mais tu peux ajuster : */
.pswp {
    z-index: 9999 !important;
}

.pswp__img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.pswp__button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.2s;
}

.pswp__button:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Ajustement compteur et caption centrés */
.pswp__counter, 
.pswp__caption__center {
    font-size: 1rem;
    color: white;
    text-align: center;
}

.transparent-bg{
  background: transparent !important;
}
.transparent-bg div{
  background: transparent !important;
}
.site-content{
  margin-top: 106px;
}
@media (max-width: 768px) {
  .site-content{
    margin-top: 120px;
  }
}
.elementor-widget a {
  color: var(--accent);
}
.elementor-widget a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-light);
  transition: width 0,3s ease;
}

.elementor-widget a:hover {
  color: var(--secondary);
}
.linkedin, .facebook{
  border: 1.8px solid var(--accent);
  border-radius: 6px;
}
.linkedin{
  padding: 2px;
}