/*
Theme Name: 	Santa Maria Della Strada Matrice
Description: 	Responsive WordPress Theme and Font Awesome.
Version:     	3.2
Author:     	Giovanbattista Vergara
Author URI:   
Site:         
Text Domain: 	smm
Domain Path: 	/languages
Tags:        
License:    	GNU General Public License v3.0
License URI:	http://www.gnu.org/licenses/gpl-3.0.html
*/

@import url(https://db.onlinewebfonts.com/c/3a86b8ec8855002aad8b288eaba8915d?family=Myriad+Variable+Concept);

body,
html {
  font-family: "Myriad Variable Concept", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 18px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #333;
  min-height: 100vh; 
  position: relative;
  scroll-behavior: smooth; /* Scroll fluido per animazioni */
}

/* Background principale */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/uploads/2025/07/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

main {
  position: relative;
  z-index: 1;
  top: 5rem;
  left:0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, p, ol, ul{margin: 0 0 1rem 0;padding: 0;}

img{width: 100%; height: auto;}

h1{font-size: 3rem;} 
h2{font-size: 2.5rem;} 
h3{font-size: 2rem;} 
h4{font-size: 1.5rem;} 
h5{font-size: 1rem;} 
h6{font-size: 0.9rem;}
a{text-decoration:none;}

p {
font-size: 20px;
line-height: 40px;
}

/* -------------------- */
/*       Header         */
/* -------------------- */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 1;
  transform: translateY(0); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  max-width: 100%;
  height: auto;
  max-height: 70px;
  display: block;
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1.1);
}

.logo-img svg {
  width: 100%;
  height: auto;
  max-height: 70px;
}

/* Menu Navigation - Responsivo Unico */
.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}

.menu-items li {
  position: relative;
}

.menu-items a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.menu-items a:hover {
  color: #cd7a7d;
}

.menu-items a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #cd7a7d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-items a:hover::after {
  width: 100%;
}

/* Pulsanti dentro il menu (visibili solo su mobile) */
.nav-actions {
  display: none;
}

/* Pulsanti header desktop */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link,
.pwa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cd7a7d;
  text-decoration: none;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  min-width: 44px;
  min-height: 44px;
}

.phone-link {
  background: linear-gradient(135deg, transparent, rgba(205, 122, 125, 0.1));
  border: 2px solid #cd7a7d;
}

.phone-link:hover {
  background: linear-gradient(135deg, #cd7a7d, #b66669);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 122, 125, 0.3);
}

.pwa-link {
  background: linear-gradient(135deg, #cd7a7d, #b66669);
  color: white;
  border: 2px solid #cd7a7d;
}

.pwa-link:hover {
  background: linear-gradient(135deg, #b66669, #a85659);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 122, 125, 0.4);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #cd7a7d;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle:hover {
  background: rgba(205, 122, 125, 0.1);
  transform: scale(1.1);
}

.mobile-menu-toggle i {
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active i:before {
  content: "\f00d"; /* Font Awesome X icon */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when mobile menu is open */
.mobile-menu-open {
  overflow: hidden;
}

/* Responsive Mobile Styles */
@media (max-width: 1024px) {
  /* Nascondi pulsanti desktop */
  .header-right {
    display: none;
  }
  
  /* Mostra hamburger */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mostra overlay */
  .mobile-menu-overlay {
    display: block;
  }
  
  /* Trasforma menu in pannello mobile */
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(100%);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0 0 0;
    overflow-y: auto;
  }
  
  .header-nav.mobile-open {
    display: flex;
    transform: translateX(0);
  }
  
  /* Menu items verticali */
  .menu-items {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 20px 0;
  }
  
  .menu-items li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menu-items a {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .menu-items a::after {
    display: none;
  }
  
  .menu-items a:hover {
    background: rgba(205, 122, 125, 0.05);
    padding-left: 25px;
  }
  
  /* Mostra pulsanti nel menu mobile */
  .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 10px;
    margin-top: 0;
  }
  
  .nav-phone-link,
  .nav-pwa-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cd7a7d;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #cd7a7d;
    width: 100%;
    font-size: 16px;
  }
  
  .nav-phone-link {
    background: linear-gradient(135deg, transparent, rgba(205, 122, 125, 0.1));
  }
  
  .nav-phone-link:hover {
    background: linear-gradient(135deg, #cd7a7d, #b66669);
    color: white;
    transform: translateY(-1px);
  }
  
  .nav-pwa-link {
    background: linear-gradient(135deg, #cd7a7d, #b66669);
    color: white;
  }
  
  .nav-pwa-link:hover {
    background: linear-gradient(135deg, #b66669, #a85659);
    transform: translateY(-1px);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .header-nav {
    width: 280px;
  }
}

/* -------------------- */
/*   Language Switcher - VERSIONE DROPDOWN MOBILE  */
/* -------------------- */

/* Selettore lingua desktop */
.desktop-language-switcher {
  display: flex;
  align-items: center;
  position: relative;
}

.desktop-language-switcher select {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #cd7a7d;
  border-radius: 8px;
  padding: 8px 12px;
  color: #cd7a7d;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.desktop-language-switcher select:hover,
.desktop-language-switcher select:focus {
  background: #cd7a7d;
  color: white;
  box-shadow: 0 4px 15px rgba(205, 122, 125, 0.3);
}

.desktop-language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}

.desktop-language-switcher li {
  display: inline-block;
}

.desktop-language-switcher a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #cd7a7d;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.desktop-language-switcher a:hover {
  background: rgba(205, 122, 125, 0.1);
  border-color: #cd7a7d;
}

.desktop-language-switcher .current-lang a,
.desktop-language-switcher .lang-item-first.current-lang a {
  background: #cd7a7d;
  color: white;
}

.desktop-language-switcher img {
  width: 16px;
  height: 12px;
  margin-right: 5px;
  border-radius: 2px;
}

/* ===== NUOVO SELETTORE LINGUA MOBILE - DROPDOWN STYLE ===== */
.mobile-language-switcher {
  width: 100%;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
  position: relative;
}

.mobile-language-switcher h3,
.mobile-language-switcher .widget-title {
  color: #cd7a7d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 20px;
  display: none; /* Nascondi il titolo per il dropdown */
}

/* Container dropdown mobile */
.mobile-language-dropdown {
  position: relative;
  width: 100%;
}

/* Trigger del dropdown - simula il selettore desktop */
.mobile-language-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #cd7a7d;
  border-radius: 12px;
  color: #cd7a7d;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}

.mobile-language-trigger:hover,
.mobile-language-trigger:active {
  background: #cd7a7d;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(205, 122, 125, 0.3);
}

.mobile-language-trigger.active {
  background: #cd7a7d;
  color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Contenuto del trigger */
.mobile-language-current {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-language-current img {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Icona freccia */
.mobile-language-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  fill: currentColor;
}

.mobile-language-trigger.active .mobile-language-arrow {
  transform: rotate(180deg);
}

/* Lista dropdown */
.mobile-language-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #cd7a7d;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

.mobile-language-dropdown.active ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-language-dropdown li {
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-language-dropdown li:last-child {
  border-bottom: none;
}

.mobile-language-dropdown a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-language-dropdown a:hover {
  background: rgba(205, 122, 125, 0.08);
  color: #cd7a7d;
  padding-left: 25px;
}

.mobile-language-dropdown .current-lang a,
.mobile-language-dropdown .lang-item-first.current-lang a {
  background: rgba(205, 122, 125, 0.15);
  color: #cd7a7d;
  font-weight: 600;
  pointer-events: none; /* Disabilita click sulla lingua corrente */
}

.mobile-language-dropdown img {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Stili per touch feedback */
.mobile-language-dropdown a:active {
  background: rgba(205, 122, 125, 0.2);
  transform: scale(0.98);
}

/* Animazioni smooth per apertura/chiusura */
.mobile-language-dropdown ul {
  backdrop-filter: blur(10px);
}

/* Nascondi mobile su desktop */
.mobile-language-switcher {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-language-switcher {
    display: none;
  }
  
  .mobile-language-switcher {
    display: block;
  }
}

/* Polylang dropdown custom styling */
.lang-switcher-dropdown {
  position: relative;
}

.lang-switcher-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cd7a7d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 35px;
}

/* Stili per widget Polylang */
.widget_polylang ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_polylang li {
  display: inline-block;
  margin: 0 5px;
}

.widget_polylang a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* ===== OVERRIDE POLYLANG PER MOBILE DROPDOWN ===== */
@media (max-width: 1024px) {
  /* Forza il widget Polylang nel mobile menu a essere dropdown */
  .mobile-language-switcher .widget_polylang ul,
  .mobile-language-switcher ul {
    /* Reset standard list styles */
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #cd7a7d;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .mobile-language-switcher .widget_polylang li,
  .mobile-language-switcher li {
    display: block !important;
    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .mobile-language-switcher .widget_polylang li:last-child,
  .mobile-language-switcher li:last-child {
    border-bottom: none;
  }
  
  .mobile-language-switcher .widget_polylang a,
  .mobile-language-switcher a {
    display: flex !important;
    align-items: center;
    padding: 15px 20px !important;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    gap: 12px;
    border-radius: 0 !important;
    -webkit-tap-highlight-color: transparent;
  }
  
  .mobile-language-switcher .widget_polylang a:hover,
  .mobile-language-switcher a:hover {
    background: rgba(205, 122, 125, 0.08) !important;
    color: #cd7a7d !important;
    padding-left: 25px !important;
  }
  
  .mobile-language-switcher .widget_polylang .current-lang a,
  .mobile-language-switcher .current-lang a {
    background: rgba(205, 122, 125, 0.15) !important;
    color: #cd7a7d !important;
    font-weight: 600 !important;
  }
  
  .mobile-language-switcher .widget_polylang img,
  .mobile-language-switcher img {
    width: 20px !important;
    height: 15px !important;
    margin-right: 12px !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  }
}
/* -------------------- */
/*       Home           */
/* -------------------- */


/*/-------------------
--------Single--------
--------------------/*/

.single-container {
  width: 90%;
  margin: 50px auto;
  padding: 20px;
}

.single-title {
  text-align: center;
  font-weight: bold;
  margin-top: 100px;
}

.single-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

 /*/----Video Youtube Single---/*/
.wp-block-embed {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------- */
/*       Footer         */
/* -------------------- */

.footer {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(205, 122, 125, 0.1);
  padding: 60px 0 30px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-left h3 {
  color: #cd7a7d;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  color: #5d4a4b;
  transition: all 0.3s ease;
  line-height: 15px;
}

.footer-info p:hover {
  color: #cd7a7d;
  transform: translateX(5px);
}

.footer-info i {
  width: 25px;
  margin-right: 15px;
  color: #cd7a7d;
  transition: all 0.3s ease;
}

.footer-info a {
  color: #5d4a4b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-info a:hover {
  color: #cd7a7d;
}

.footer-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-right p {
  font-size: 14px;
  color: #5d4a4b;
  margin: 0;
}

.logo-img-footer {
	width: 100%;
    height: auto;
    max-height: 9vh;
    display: block;
    transition: filter 0.3s ease;
}

/*/-------------------------------
--------------Observer------------
-------------------------------/*/

.fade-in {
  opacity: 0;
  transform: translateY(10vh);
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.fade-in.in-page {
  opacity: 1;
  transform: translateY(0vh);
}

.fade-up {
  opacity: 0;
  transform: translateY(-10vh);
  transition: all 2s cubic-bezier(.215, .61, .355, 1);
}

.fade-up.in-page {
  opacity: 1;
  transform: translateY(0vh);
}

/*/-------------------------------
----------Observer IMG-----------
-------------------------------/*/

.fade-3d {
  opacity: 0;
  transform: rotate3d(0, -25, 0, 85deg);
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.fade-3d.in-page {
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
}

.fade-3d-1 {
  opacity: 0;
  transform: rotate3d(0, -25, 0, 85deg);
  transition: all 2s cubic-bezier(.215, .61, .355, 1);
}

.fade-3d-1.in-page {
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
}

.fade-3d-2 {
  opacity: 0;
  transform: rotate3d(0, -25, 0, 85deg);
  transition: all 2.5s cubic-bezier(.215, .61, .355, 1);
}

.fade-3d-2.in-page {
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
}

/* CSS generico per booking calendar */
.wpbc_container {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.wpbc_container > div:first-child {
  flex: 1 !important;
}

.wpbc_container > div:last-child {
  flex: 1 !important;
}

.wpbc_container_booking_form .wpbc__row {
    align-items: center!important;
    gap: 50px!important;
}

form.booking_form {
	width: 100%!important;
}

/* -------------------------------
--------- smartphone -------------
---------------------------------- */

@media (max-width: 480px) {

  main {
    padding-top: 0px!important;
	top: 4rem;
  }

  /* Video su mobile */
  .video-height-control {
    height: 70vh;
  }

  /* Home content */
  .home-content {
    width:90%;
	padding: 0;
  }

  /*/-------Footer--------/*/

  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-container {
    padding: 0 15px;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-left h3 {
    font-size: 1.5rem;
  }
  
  .footer-info p {
    font-size: 14px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }     
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.9rem;
  }

  p {
    font-size: 18px;
    line-height: 22px;
  }

  main {
    padding-top: 90px;
  }

/*/----Single Cell-----/*/

 .single-container {
  width: 100%;
 }

/*/----Footer Cell-----/*/

.footer-container {
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.footer-left {
  width: 100%;
}

.footer-info p {
  justify-content: center;
}

.footer-right {
  width: 100%;
}

}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* WordPress Default Styles */
/* --------------------------------------------------------------------------------------------------------------------------- */

/* Pagination */
.pagination { margin: 20px auto; padding: 0; width: 100%; display: flex; justify-content: center; }
.pagination span,
.pagination a { float: left; margin: 0 10px 10px 0; padding: 14px 19px;}
.pagination span {
  background: whitesmoke;
  color: #333;
}

.pagination a { background: rgb(51 51 51 / 30%); color: whitesmoke;}

.pagination a:hover { background: whitesmoke; color: #333;}

.pagination span:hover {
  color: white;
  background: #333;
}

/* Gallery */
.gallery { float: left; margin: 20px 0 20px 0; width: 103.55%; }
.gallery-item { float: left; width: 33.333333%; text-align: center; }
.gallery img { margin: 0 10% 0 0; width: 90%; height: auto; border: none!important; }
.gallery-caption { width: 90%;margin:10px 0 0 0;}

/* Image */
.alignleft { float: left; margin-right: 20px; margin-bottom: 10px; max-width: 97%; height: auto; }
.alignright { float: right; margin-bottom: 10px; margin-left: 20px; max-width: 97%; height: auto; }
.aligncenter { display: block; margin: 0 auto; max-width: 97%; height: auto; }
.alignnone { max-width: 97%; height: auto; }
.alignfull {
    margin-left  : calc( -100vw / 2 + 100% / 2 );
    margin-right : calc( -100vw / 2 + 100% / 2 );
    max-width    : 100vw;
    width: 100vw;
}

/* img responsive */
.img-res{width: 100%;height: auto;}

/* video responsive */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Table */
th, td {border-bottom: none;}

/* Image Caption */
.wp-caption { margin-top: 1.5rem;margin-bottom: 0px; padding: 10px; max-width: 97%; border: 1px solid #ddd; text-align: center; }
.wp-caption img { margin: 0; padding: 0; width: 100%!important; height: auto; border: 0 none; }
.wp-caption p.wp-caption-text { margin: 0; padding: 8px; font-size: 1em; line-height: 17px; }

/* Stiky */
.sticky { border-right: 3px solid #eee; border-bottom: 3px solid #ddd; }

/* Search */
.search-form {background: #eee;}
.search-form input[type=text]{ width: 80%; color: #333; }
.search-form button{float:right;padding:10px 15px 0 0;border: none; background: none;padding: 11px;}

/* Contact Form 7 */
.wpcf7 label{width:100%}

/* Comments */
.nocomments{display: none;}

.comment-form-author,
.comment-form-email,
.comment-form-url { float: left; margin-top: 20px; margin-right: 3%; width: 30.3333333%; }
.comment-form-author input,
.comment-form-email input,
.comment-form-url input { width: 100%; }
.comment-respond {border-radius: 20px;width: 100%; max-width: 1200px; margin: 20 auto; display: flex; flex-direction: column; justify-content: center; }
#comment {width: 50%;border-radius: 10px; justify-content: center; }
label {display: none;}

ol.commentlist { margin: 0 0 1em; padding: 0; list-style: none; text-indent: 0;width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; }
ol.commentlist li.comment { padding: 1em;}
ol.commentlist li.comment div.vcard cite.fn { text-transform: uppercase; font-size: 14px; }
ol.commentlist li.comment div.vcard img.avatar { float: left; margin: 6px 1em 1em 0; border-radius: 50px;width: 100;height: auto; }
ol.commentlist li.comment div.comment-meta { font-size: 12px; }
ol.commentlist li.comment ul { margin: 0 0 1em 2em; }
ol.commentlist li.comment div.reply { margin-left: 80px; font-size: 11px; }
ol.commentlist li.comment div.reply a { font-weight: bold; }
ol.commentlist li.comment ul.children { margin: 1em 0 0; list-style: none; text-indent: 0; }
ol.commentlist li.comment ul.children li.depth-2 { margin: 0 0 .25em .25em; border-left: 1px solid #eee; }
ol.commentlist li.comment ul.children li.depth-3 { margin: 0 0 .25em .25em; border-left: 1px solid #eee; }
ol.commentlist li.comment ul.children li.depth-4 { margin: 0 0 .25em .25em; border-left: 1px solid #eee; }
ol.commentlist li.even { background: transparent; }
ol.commentlist li.odd { /* background: #f9f9f9; */  }
ol.commentlist li.parent { border-left: 1px solid #eee; }
ol.commentlist li.bypostauthor .fn { font-weight: bold; }
ol.commentlist li img{max-width: 97%;}

input[type=text],
input[type=email] { width: 98%;margin-right: 10px; padding: 10px; border: none; background: #eee; -webkit-appearance: none;border-radius: 0;font-size: 14px;}
textarea { padding: 10px; width: 98%; border: none; background: #eee; -webkit-appearance: none;border-radius: 0;font-size: 14px;}
input[type=submit] { margin-top: 10px; padding: 15px 20px; color: #fff; text-transform: uppercase; background: #333; border:none; font-size: 14px;}
#comments { width: 100%; padding: 20px; max-width: 1200px; margin: 0 auto; display: flex; }