.hide-item{
display: none ;
}
/* ===================================================================
   INCLUDES.CSS - Header, Footer, Sidebar & Common Elements
   =================================================================== */

/* FONT FACES */
@font-face {
  font-family: 'Algerian';
  src: url("../../fonts/ALGER.ttf");
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  size-adjust: 95%;
}

@font-face {
  font-family: 'Antic Slab';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/AnticSlab-Regular.ttf");
  font-display: swap; 
}

@font-face {
  font-family: 'Berkshire Swash';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/BerkshireSwash-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/CinzelDecorative-Regular.ttf");
  font-display: swap;  
}

@font-face {
  font-family: 'Niconne';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Niconne-Regular.ttf");
  font-display: swap;
}

/* GLOBAL RESETS & BASE */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  padding: 0px;
  margin: 0px;
  background: #f6f6f6;
  font-family: 'lora', 'serif';
}

/* UTILITY CLASSES */
.left_Side {
  float: left;
  margin-left: 5px;
}

.right_Side {
  float: right;
  margin-right: 5px;
}

.center_align {
  left: 50%;
  margin-left: -100px;
}

.hide-item {
  display: none;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.clearfix {
  overflow: auto;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Algerian', 'cursive';
  color: #790000;
  margin: 5px;
  line-height: 1.2; 
  min-height: 1.2em;
}

h4, h5, h6 {
  font-family: 'Antic Slab', serif;
  color: #790000;
  margin: 5px;
  line-height: 1.2; 
  min-height: 1.2em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* BUTTONS */
.btn {
  padding: .5rem 1rem;
  background: #006669;
  color: white;
  border-radius: 15px;
  border: 1px solid transparent;
  font-size: 1.08em;
  font-family: 'lora', 'serif';
}

.btn-big {
  padding: .7rem 1.3rem;
  line-height: 1.3rem;
}

.btn:hover {
  color: white !important;
  background: #00484B;
}

/* MESSAGES */
.msg {
  width: 100%;
  margin: 5px auto;
  padding: 8px;
  border-radius: 5px;
  list-style: none;
}

.success {
  color: #3a6e3a;
  border: 1px solid #3a6e3a;
  background: #bcf5bc;
}

.error {
  color: #a94442;
  border: 1px solid #a94442;
  background: #f2dede;
}

/* ===================================================================
   HEADER SECTION
   =================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  height: 72px;
  background: #faf7f0;
  border-bottom: 1px solid rgba(201,162,39,.25);
  box-shadow: 0 2px 10px rgba(44,36,32,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2.5vw, 40px);
  gap: 12px;
}

/* gold accent line under header */
.header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A227 25%, #C9A227 75%, transparent);
  opacity: .5;
}

/* --- Logo --- */
.header-logo {
  display: flex;
    
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
        border:dotted #d4af37 3px;
       border-radius: 50%;
       height: 66px;
         width:  66px;
}

.header-logo img {
     height: 56px;
  width: auto;
  object-fit: contain;
}

/* --- Desktop nav --- */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.desktop-nav ul li a {
  display: block;
  font-family: 'Algerian', cursive;
  font-size: 15px;
  color: #790000;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  transition: color .2s, background .2s;
  background: transparent;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #C9A227;
  border-radius: 1px;
  transition: left .2s, right .2s;
}

.desktop-nav ul li a:hover {
  color: #065FD4;
  background: rgba(201,162,39,.08);
}

.desktop-nav ul li a:hover::after {
  left: 14px;
  right: 14px;
}

/* --- Right cluster --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* --- Language dropdown --- */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 5px;
  padding: 5px 9px;
  cursor: pointer;
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: #C9A227;
  background: rgba(201,162,39,.07);
}

.lang-flag {
  width: 25px;
  height: 25px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-arrow {
  font-size: 9px;
  color: #8A7B72;
  transition: transform .2s;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  min-width: 130px;
  background: #fff;
  border: 1px solid rgba(201,162,39,.22);
  border-radius: 5px;
  box-shadow: 0 5px 16px rgba(44,36,32,.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
  overflow: hidden;
}
.lang-menu img{
      width: 25px;
  height: 25px;
  border-radius: 2px;
  object-fit: cover;
}
.lang-menu li{
    height: 35px;
  border-radius: 2px;
  object-fit: cover;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.lang-menu a:hover {
  background: rgba(201,162,39,.1);
  color: #790000;
}

/* --- Facebook button --- */
.fb-btn {
    
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  /*background: #1877F2;*/
  text-decoration: none;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.fb-btn img {
    width:38px;
    height: 38px;
}
.fb-btn:hover {
/*  background: #1661c9;*/
  transform: scale(1.08);
}

/* --- User menu --- */
.user-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-menu .welcome-message {
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  font-weight: 600;
}

.user-menu a {
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.user-menu a:hover {
  color: #790000;
  text-decoration: underline;
}

.user-menu .btn-signup {
  background: #790000;
  color: #E8D48B;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.user-menu .btn-signup:hover {
  background: #5a0000;
  color: #fff;
  text-decoration: none;
}

/* --- Hamburger (hidden desktop, shown mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: background .2s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(201,162,39,.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #790000;
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile overlay --- */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #faf7f0;
  border-top: 1px solid rgba(201,162,39,.2);
  box-shadow: 0 6px 20px rgba(44,36,32,.15);
  z-index: 850;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  font-family: 'Algerian', cursive;
  font-size: 17px;
  color: #790000;
  padding: 11px 14px;
  border-radius: 5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,.15);
  transition: background .2s, color .2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(201,162,39,.1);
  color: #065FD4;
}

/* mobile bottom: lang row + fb + auth */
.mobile-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201,162,39,.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mobile-lang-row a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 5px;
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}

.mobile-lang-row a:hover,
.mobile-lang-row a.active {
  border-color: #C9A227;
  background: rgba(201,162,39,.1);
  color: #790000;
}

.mobile-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877F2;
  color: #fff;
  padding: 7px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'lora', serif;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: background .2s;
}

.mobile-fb-btn:hover {
  background: #1661c9;
}

.mobile-auth {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-auth .welcome-message {
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  font-weight: 600;
}

.mobile-auth a {
  font-family: 'lora', serif;
  font-size: 13px;
  color: #5C5C5C;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 5px;
  transition: background .2s, color .2s, border-color .2s;
}

.mobile-auth a:hover {
  border-color: #C9A227;
  background: rgba(201,162,39,.1);
  color: #790000;
}

.mobile-auth .btn-signup {
  background: #790000;
  color: #E8D48B;
  border-color: #790000;
}

.mobile-auth .btn-signup:hover {
  background: #5a0000;
  color: #fff;
  border-color: #5a0000;
}

/* ===================================================================
   SIDEBAR SECTION
   =================================================================== */

.sidebar {
  flex: 0 0 22%;
  max-width: 500px;
  height: fit-content;
 min-width:350px;
}

.sidebar .section {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar .section .section-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: #790000;
  font-family: 'Lora', 'cursive';
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.sidebar .section.search {
  margin-top: 1rem;
}

/* FACEBOOK WIDGET */
.sidebar .section.facebook-widget {
  padding: 0;
 font-family: 'lora', 'serif';
    min-height: 250px;
  overflow: hidden;
}

.sidebar .section  .fb-page {
  width: 100%;
}

/* POPULAR POSTS */
.sidebar .section.popular {
  padding: 1.5rem 1rem;
}

.sidebar .section.popular .post {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  align-items: flex-start;
}

.sidebar .section.popular .post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .section.popular .post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.sidebar .section.popular .post .post-title {
  flex: 1;
  display: block;
}

.sidebar .section.popular .post .post-title h4 {
  font-family: 'lora', 'serif';
  color: #790000;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s;
}

.sidebar .section.popular .post .post-title:hover h4 {
  color: #135E5F;
}

.sidebar .section.popular .post .post-info {
  margin-top: .5rem;
  color: #a6a6a6;
  font-size: .8rem;
}

.sidebar .section.popular .post .post-info span {
  margin-right: .5rem;
}

/* TOPICS */
.sidebar .section.topics {
  padding: 1.5rem 1rem;
}

.sidebar .section.topics ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.sidebar .section.topics ul li a {
  display: block;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s;
  font-size: 0.95rem;
  color: #555;
}

.sidebar .section.topics ul li:last-child a {
  border-bottom: none;
}

.sidebar .section.topics ul li a:hover {
  padding-left: 15px;
  transition: all 0.3s;
  color: #135E5F;
  background: #f8f9fa;
}

/* ===================================================================
   FOOTER SECTION
   =================================================================== */

.footer-wrapper {
  width: 100%;
  margin: 0px;
  padding: 0px;
  background: #7A0001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
}

.logo {
  padding-top: 10px;
  width: 120px;
  margin: 0 auto;
}

.logo img {
  width: 70%;
}

.banner {
  width: 90%;
  text-align: center;
  flex: 1;
  font-weight: 400;
  font-family: Algerian;
  font-size: 1.6em;
  color: #FFFFFF;
}

.banner .banner-text {
  padding: 0 0 10px 0;
  margin-top: 0;
}

.footer-wrapper .sectors {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 95%;
  text-align: left;
}

.sectors .headline {
  line-height: 35px;
  padding-left: 20%;
  font-weight: 400;
  font-family: Times;
  font-size: 1.2rem;
  color: #FFFFFF;
}

.scontacting-details .contact-us .headline {
  line-height: 35px;
  padding-left: 20%;
  font-weight: 400;
  font-family: Times;
  font-size: 1.2rem;
  color: #FFFFFF;
}

.sectors ul {
  line-height: 20px;
  padding-left: 10%;
  text-align: left;
  font-weight: 600;
  font-family: Times;
  font-size: .9em;
  color: #FFFFFF;
}

.sectors ul li .right-prog-small {
  width: 0;
}

.sectors ul a {
  transition: all 0.5s;
  margin: 0;
  padding: 3px;
  color: #FFFFFF;
  text-decoration: none;
}

.sectors ul a:hover {
  padding-left: 25px;
  transition: all 0.5s;
  color: #4080FF;
}

.right-prog {
  min-width: 240px;
}

.site-details {
  min-width: 240px;
}

.my-account {
  margin-left: 25px;
  min-width: 180px;
}

.my-account ul {
  padding-left: 10%;
}

.contacting-details {
  max-width: 310px;
  min-width: 290px;
  margin: 0;
  display: grid;
}

.contacting-details .contact-us {
  text-align: left;
  margin: 0;
  padding-left: 10%;
  max-height: 40px;
  width: 200px;
  flex: 1;
}

.contacting-details .sub-details {
  margin: 0;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 40px 8px 190px 60px;
  grid-template-rows: 150px 70px 30px;
}

.contacting-details .sub-details .whatsapp-image {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.contacting-details .sub-details .whatsapp-image img {
  margin-bottom: 10px;
  flex: 1;
  width: 100%;
  max-height: 35px;
}

.contacting-details .sub-details .whatsapp-flag {
  max-width: 65px;
  height: auto;
}

.contacting-details .sub-details .italian {
  grid-column: 1 / 2;
  grid-row: 1;
}

.contacting-details .sub-details .skype {
  grid-column: 1 / 2;
  grid-row: 2;
}

.contacting-details .sub-details .whatsapp-number {
  margin: 0;
  max-width: 215px;
  min-width: 210px;
  line-height: 18px;
  padding: 0;
  text-align: left;
  font-weight: 800;
  font-family: Times;
  font-size: 1.1em;
  color: #FFFFFF;
}

.contacting-details .sub-details .whatsapp-flag img {
  margin-bottom: 10px;
  width: 100%;
}

.contacting-details .sub-details img {
  width: 80%;
}

.contacting-details .sub-details .italian-number {
  line-height: 20px;
  grid-column: 3;
  grid-row: 1;
}

.contacting-details .sub-details .skype-contact {
  grid-column: 3;
  grid-row: 2;
}

.contacting-details .sub-details .whatsapp-flag {
  grid-column: 4;
  grid-row: 1/ 2;
}

.contacting-details .sub-details .britain {
  grid-column: 4;
  grid-row: 3/span 2;
}

.footer-wrapper .newsletter {
  padding-top: 15px;
  margin: auto;
  justify-content: center;
  max-width: 50%;
  width: 50%;
  display: none;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-wrapper .newsletter .signup {
  max-width: 340px;
  min-width: 300px;
  text-align: left;
  line-height: 20px;
  font-weight: 600;
  font-family: Times;
  letter-spacing: 0.05em;
  text-indent: 0;
  font-size: .9em;
  color: #FFFFFF;
}

.footer-wrapper .newsletter .signup {
  flex: 1;
}

.footer-wrapper .newsletter .subscription {
  border: 6px dotted #560D0B;
  border-radius: 15px;
  position: relative;
  text-align: left;
  max-width: 340px;
  min-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.footer-wrapper .newsletter .subscription .input-form {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-wrapper .subscription .input-form input {
  flex: 1;
  border-radius: 8px;
  min-width: 200px;
  max-width: 250px;
  height: 25px;
  margin: 5px;
}

.footer-wrapper .subscription .input-form button {
  flex: 1;
  height: 25px;
  background: #560D0B;
  border-radius: 8px;
  width: 60px;
  margin: 5px;
}

.footer-wrapper .subscription .input-form .acceptance {
  flex: 1;
  position: relative;
  display: block;
  width: 300px;
}

.footer-wrapper .subscription .acceptance .authorize-checkbox {
  position: absolute;
  width: 20px;
}

.footer-wrapper .subscription .acceptance .authorize-text {
  color: #CDCDD1;
  text-indent: 20px;
  font-weight: 100;
  font-family: Helvetica;
  font-size: .8em;
  margin: 5px;
}

.footer-wrapper .down-foot {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  width: 50%;
}

.footer-wrapper .down-foot .share-icon {
  width: 85%;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  display: inline-flex;
  display: flex;
  margin: auto;
}

.footer-wrapper .down-foot .share-icon .reddit {
  display: none;
}

.share-icon img {
  border-radius: 15px;
  border: 2px double #8B0000;
  max-width: 30px;
  min-width: 20px;
}

.footer-wrapper .copywrite {
  width: 100%;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: inline-flex;
  line-height: normal;
}

/* ===================================================================
   RESPONSIVE - HEADER & NAVIGATION
   =================================================================== */

@media all and (max-width: 768px) {
  .header {
    height: 72px;
    padding: 0 14px;
  }

  .desktop-nav,
  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-logo img {
    height: 50px;
  }

  .mobile-overlay {
    top: 56px;
  }

  /* Footer responsive */
  .footer-wrapper .sectors {
    flex-direction: column;
    width: 100%;
  }

  .right-prog,
  .site-details,
  .my-account,
  .contacting-details {
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 15px 25px;
  }

  .sectors .headline,
  .scontacting-details .contact-us .headline {
    padding-left: 5%;
  }

  .sectors ul {
    padding-left: 8%;
  }

  .my-account {
    margin-left: 0;
  }

  .contacting-details .contact-us {
    padding-left: 5%;
  }

  .contacting-details .sub-details {
    grid-template-columns: 35px 5px 1fr 50px;
    grid-template-rows: auto auto auto;
  }

  .banner {
    font-size: 1.2em;
  }

  .footer-wrapper .down-foot {
    width: 85%;
  }
}

/* ===================================================================
   RESPONSIVE - SIDEBAR
   =================================================================== */

@media only screen and (max-width: 934px) {
  .sidebar {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
