 :root {
      --primary: #dfd6cc;
      --text: #333;
      --beige: #f4ede5;
      --accent: #b7a99a;
      --dark: #4b4441;
    }
    
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
html {
    scroll-behavior: smooth;
}

body {
      background: white;
      color: var(--text);
      line-height: 1.6;
    }

@font-face {
  font-family: 'Forum';
  src: url('assets/fonts/Forum-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Plus Jakarta Sans */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/Plus_Jakarta_Sans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, p, a, li, span {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, .hero-text {
  font-family: 'Forum', serif;
}
header {
      padding: 20px;
      background: white;
      border-bottom: 1px solid #ddd;
    }
.custom-navbar {
  background-color: white;
  padding: 0 40px;
  height: 100px; /* Fixed height for consistent centering */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
}

.logo-text h1 {
  font-size: 20px;
  margin: 0;
  color: #a99a8d;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text span {
  font-size: 10px;
  color: #a99a8d;
  letter-spacing: 3px;
  text-align: center;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #122d1a;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #8cac94;
}

.contact-btn {
  background-color: white;
  color: #7b9c85;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #7b9c85;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn .arrow {
  font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-btn:hover .arrow {
  transform: translateX(8px);
}
.language-switcher {
  display: inline-block;
  margin-left: 20px;
  font-size: 14px;
  color: #13472b;
  font-weight: 500;
}

.language-switcher a {
  color: #13472b;
  text-decoration: none;
  padding: 4px 6px;
  transition: color 0.2s ease;
}

.language-switcher a:hover {
  color: #7b9c85;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #13472b;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-menu a:hover {
  background-color: #f4ede5;
  color: #7b9c85;
}
.dropdown:hover .dropdown-menu {
  display: block;
}


/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .logo-text h1 {
    font-size: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

    .logo {
      font-size: 24px;
      text-decoration: none;
      color: var(--text);
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }
    .hero-section {
      position: relative;
      height: 100vh;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); 
    }
    
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #dfd6cc;
  font-size: 4.5rem;
  text-align: center;
  padding: 10px 20px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 400; /* bold, por jo shumë */
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-shadow: 6px 6px 6px rgba(0, 0, 0, 2);
}

/* Sfond për secilën shkronjë individualisht */
.hero-text::first-letter,
.hero-text span {
    font-family: Forum, san-serif;
  padding: 2px 2px;
  border-radius: 4px;
  margin: 0 2px;
}
    .hero-overlay {
      position: relative;
      z-index: 2;
      text-align: center;
    }
/*menu moblie*/
 .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a1938a;
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
  }

  .menu-overlay.active {
    display: flex;
  }

  .menu-content {
    width: 100%;
    padding: 40px;
    text-align: center;
  }

  .menu-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
  }

  .menu-columns ul {
    list-style: none;
    padding: 0;
  }

  .menu-columns li {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .menu-columns a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .menu-toggle {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10000;
  }

  .menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: white !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
    .hero-overlay h1 {
      font-size: 48px;
    }
    .section {
      padding: 80px 20px;
      text-align: center;
    }
    .section h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: var(--dark);
    }
    .section p {
      max-width: 800px;
      margin: auto;
      color: #555;
      font-size: 18px;
    }
    .split-block {
      display: flex;
      flex-wrap: wrap;
      margin: 60px auto;
      max-width: 1200px;
    }
    .split-block img, .split-block .text-block {
      flex: 1;
      min-width: 300px;
    }
    .text-block {
      background: var(--accent);
      color: white;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }
    .text-block h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    .text-block a {
      color: white;
      text-decoration: underline;
      margin-top: 20px;
      font-weight: bold;
    }
    .accommodation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding-top: 30px;
      max-width: 1100px;
      margin: auto;
    }
    .accommodation-item {
      text-align: center;
    }
    .accommodation-item img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .form-section {
      display: flex;
      flex-wrap: wrap;
      background: var(--beige);
    }
    .form-section .form-left,
    .form-section .form-right {
      flex: 1;
      min-width: 300px;
      padding: 40px;
    }
    .form-right input,
    .form-right textarea {
      display: block;
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .form-right button {
      background: var(--dark);
      color: white;
      border: none;
      padding: 10px 30px;
      cursor: pointer;
    }
    footer {
      background: #7b9c85;
      color: white;
      padding: 10px 10px;
      text-align: center;
    }

.footer-logo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* 👈 align to top */
  flex: 1 1 220px;
  min-width: 200px;
}


.footer-icons-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-small {
  max-width: 200px;
  height: auto;
    margin-top: -30px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

    .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}
.scroll-icon {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      font-size: 24px;
      color: white;
      opacity: 0.8;
    }
    .top-bar {
      position: absolute;
      top: 20px;
      left: 0;
      width: 100%;
      z-index: 3;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .logo img {
      height: 70px;
    }
    .menu-toggle {
      position: absolute;
      left: 20px;
      width: 30px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 3px;
      background: white;
      border-radius: 2px;
    }
#akomodimi {
  background:#f9f6f2;
  padding: 100px 0;
}
.akomodim-item a {
  display: block;
}

.akomodim-container {
  width: 100%;
  padding: 0 100px;
  box-sizing: border-box;
}

#akomodimi h2 {
  text-align: center;
  color: #b7a99a;
  font-size: 38px;
  margin-bottom: 20px;
}

#akomodimi p {
  text-align: center;
  color: #8c847c;
  max-width: 1000px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.8;
}

.akomodim-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0;
}

.akomodim-item {
  position: relative;
  width: 475px;
  padding: 0;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 60px;
  z-index: 0;
}

.akomodim-item .arched-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 200px 200px 0 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: block;
}


.akomodim-item h6 {
  font-size: 25px;
  text-transform: uppercase;
  color: #8c847c;
  margin-top: 20px;
}
/* 🔴 Red background border animation */

.experience-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 100px 0;
}

.experience-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-image img {
  width: 100%;
  max-width: 900px;
  display: block;
  transition: transform 1s ease;
}

.experience-text {
  position: absolute;
  right: 0;
  background-color:#a3968f;
  color: #fff;
  padding: 50px;
  max-width: 600px;
  transform: translateX(100px);
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
}

.experience-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}


.experience-text a {
  text-decoration: none;
  color:#fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.experience-text a:hover i {
  transform: translateX(4px);
}


.custom-footer {
  background:#122d1a; 
  color: white;
  padding: 80px 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
 
}
.footer-column a{
text-decoration: none;
color: white;
}
.footer-column p{
   font-size: 14px;
text-align: justify;
  
}
.info {
  text-align: center;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  font-weight: 300;
}

.footer-column strong {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  /*filter: brightness(0) invert(1);*/

}



.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 40px;
  opacity: 0.6;
}

.meeting-form-section {
  background-color: #fff;
  padding: 0;
}

.meeting-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.meeting-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../assets/images/maskgroup.png') no-repeat center;

  min-height: 400px;
}

.meeting-left h2 {

  font-size: 36px;
  color: #4b4441;
  text-align: center;
  line-height: 1.4;
  padding: 40px;
  background-color: rgba(253, 241, 220, 0.089);
}

.meeting-right {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}

.meeting-right label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.meeting-right input,
.meeting-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  background: white;
  font-size: 15px;

}

.meeting-right button {
  background: none;
  border: 1px solid #333;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  cursor: pointer;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .meeting-form-wrapper {
    flex-direction: column;
  }

  .meeting-left, .meeting-right {
    flex: 1 1 100%;
    padding: 40px;
  }

  .meeting-right button {
    align-self: center;
  }
}
/*about us*/
.about-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}
.about-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #dfd6cc;
  z-index: 2;
  text-align: center;
  letter-spacing: 1px;
   padding: 20px 40px;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
  backdrop-filter: blur(0.3px); /* efekt i lehtë blur */
text-shadow: 6px 6px 6px rgba(0, 0, 0, 2);
}

.scroll-text {
  position: absolute;
  bottom: 10
  0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  opacity: 0.9;
}


.scroll-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-icon img {
  width: 90px;
  height: auto;
  opacity: 0.9;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.about-intro {
  padding: 80px 20px;
  text-align: center;
  background: white;
  color: #333;
  max-width: 1000px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
}
.about-timeline-wrapper {
  position: relative;
}
.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color:#7b9c85;
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 100px;
}
.timeline-item.left .timeline-img {
  order: 1;
}
.timeline-item.left .timeline-content {
  order: 2;
}
.timeline-item.right .timeline-img {
  order: 2;
}
.timeline-item.right .timeline-content {
  order: 1;
}

.timeline-img {
  flex: 1;
  padding: 0 20px;
}
.timeline-img img {
  max-width: 750px; /* ⬅️ wider */
  height: auto;
  max-height: 700px; /* ⬅️ taller */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.8s ease, opacity 0.8s ease;
  padding: 10px;

}
.image-shadow-box {
  position: relative;
  display: inline-block;
}

.image-shadow-box::after {
  content: "";
  position: absolute;
  bottom: -19px;
  right: -19px;
  width: 100%;
  height: 100%;
  background-color: #a99c91; /* soft beige shadow */
  z-index: -1;
}

.image-shadow-box img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.timeline-item.right .image-shadow-box {
  margin-left: 40px; /* increase to push further */
}



.timeline-content {
  position: relative;
  flex: 1;
  padding: 40px;
  min-width: 300px;
  background: white;
  z-index: 1;
}

.timeline-content h3 {
  font-size: 32px;

  margin-bottom: 10px;
}
.timeline-content span {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #555;
}
.timeline-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.year-background {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 100px;
  font-weight: 300;
  color:#e5ebe7;
  z-index: 0;
  pointer-events: none;
}
.timeline-item.right .year-background {
  left: auto;
  right: 0;
}
/*experience*/
.ars-experience-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ars-experience-title {
  font-size: 32px;
  color: #4b4441;
  text-align: left;
  margin-bottom: 80px;
}

.ars-experience-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
}

.ars-experience-row.reverse {
  flex-direction: row-reverse;
}

.ars-text {
  flex: 1;
  min-width: 300px;
}

.ars-text h3 {
  font-size: 22px;
  color: #4b4441;
  margin-bottom: 20px;
}

.ars-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.ars-image {
  flex: 1.2; /* previously 1 or less */
  min-width: 400px;
}


.ars-image img {
  width: 100%;
  height: 500px; /* or 450px */

  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}


.ars-text {
  flex: 0.9;
  min-width: 300px;
}
@media (max-width: 768px) {
  .ars-image img {
    height: 250px;
  }
}
/*ars project*/
.ars-project-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.ars-project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ars-project-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 2;
}
.project-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  text-decoration: none;
}

.ars-project-content {
  max-width: 900px;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.ars-project-gallery {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  background-color: #fff;
}

.gallery-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.gallery-foreground {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}


.ars-project-expression {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}
.ars-project-expression h2 {
  font-size: 28px;
  color: #4b4441;
  margin-bottom: 30px;
}
.ars-project-expression p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.ars-project-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-align: center;
}
.ars-interior-slider {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}

.swiper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex !important;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: grab;
}

.project-overview {
  background: #fff;
  padding: 80px 20px;
  color: #4b4441;
  text-align: center;
}

.project-overview .container {
  max-width: 1100px;
  margin: 0 auto;
}

.project-overview .images {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
  align-items: flex-start; 
}

.project-overview .images img {

  max-width: 750px;
  height: 650px; 
  object-fit: cover;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}


.right-block {
  margin-top: 60px; 
}

.project-overview .section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.key-facts {
  background: #fff;
  padding: 100px 20px;
  color: #a69c91;
}

.key-facts .container {
  max-width: 1300px;
  margin: 0 auto;
}

.facts-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.facts-title {
  flex: 1;
}

.facts-title .subtitle {
  font-size: 20px;
  text-transform: uppercase;
  color: #bda893;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.facts-title .subtitle::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #bda893;
  position: absolute;
  top: 6px;
  left: -50px;
}

.facts-title h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
  color: #a69c91;
}

.facts-cards {
  display: flex;
  gap: 30px;
  flex: 2;
  position: relative;
  justify-content: center;
}

.facts-cards::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 180px;
  background: #f6f4f1;
  border-radius: 0 0 40% 40%;
  z-index: 0;
}

.fact-card {
  position: relative;
  background: white;
  padding: 20px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  z-index: 1;
  min-width: 140px;
  top: 50px;
}

.fact-card h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #b7a289;
}

.fact-card p {
  font-size: 14px;
  color: #aaa;
}

.fact-description {

  margin: 116px auto 0;
  text-align: left;
  padding-right: 40px; /* Push it more into view from left edge */
}

.fact-description p {
  font-size: 35px;
  line-height: 1.8;
  font-weight: 400;
  color: #a69c91;
}
.architecture-section {
  background: #fff;
  padding: 100px 20px;
  color: #a69c91;
}

.arch-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 55px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  flex-wrap: wrap;
}

.read-more {
  font-size: 13px;
  text-transform: uppercase;
  color: #7b9c85;
  letter-spacing: 0.5px;
  border-top: 1px solid #7b9c85;
  padding-top: 10px;
  flex: 1 1 100px;
   text-decoration: none;
   transition: all 0.3s ease;
}

.read-more .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.4s ease;
}

.read-more:hover .arrow {
  transform: translateX(5px);
}

.arch-intro {
  flex: 3 1 600px;
  text-align: left;
}

.arch-intro h2 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #a69c91;
}

.arch-intro .description {
  font-size: 15px;
  line-height: 1.8;
  color: #8c847c;
}

.btn {
 background-color: white;
  color: #7b9c85;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #7b9c85;
  transition: all 0.3s ease;
  text-decoration: none;
  
}

.btn:hover {
color: #8cac94;
}
.arch-image-row {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

.arch-image-row img {
width: 100%;
height: 500px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.benefits-section {
  background-color: #f9f6f2;
  padding: 80px 20px;
}

.benefits-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.benefits-left {
  flex: 1 1 350px;
  color: #a69c91;
}

.benefits-left .subtitle {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #c0a98e;
}

.benefits-left .benefits-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #8c847c;
}




.benefits-right {
  flex: 2 1 700px;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 40px 60px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
    text-align: left;
  gap: 10px;
  width: 200px; 
}

.benefit-item img {
  height: 55px;
  margin-bottom: 0;
}
.video-section {
  width: 100%;
  background: #faf7f3;
  padding-bottom: 5rem;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.041);
  padding: 20px;
  border-radius: 50%;
  transition: 0.3s;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.158);
}

.play-button img {
  width: 100px;
  height: 100px;
  
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 960px;
  width: 90%;
  background-color: transparent;
}


.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close {
  color:#122d1a;
  position: absolute;
  top: 3px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;

  padding: 5px 12px;
  border-radius: 50%;
  z-index: 10;
}




/* Bungalows*/
/* Unique prefix: ari-bungalow */

.ari-bungalow-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.ari-bungalow-details-section {
  background: #fff9f4;
  padding: 60px 20px;
}

.ari-bungalow-details-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.ari-bungalow-info {
  flex: 1 1 300px;
}

.ari-bungalow-info h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #4b4441;
}

.ari-bungalow-info table {
  width: 100%;
  font-size: 15px;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.ari-bungalow-info td {
  padding: 6px 0;
  color: #4b4441;
}

.ari-bungalow-brochure-btn {
  display: inline-block;
  background: #bba68d;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.ari-bungalow-brochure-btn:hover {
  background: #a58a71;
}

.ari-bungalow-floorplan {
  flex: 1 1 400px;
  text-align: center;
}

.ari-bungalow-floorplan img {
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Extra views section */

.ari-bungalow-extra-views {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.ari-bungalow-view {
  background: white;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  flex: 1 1 320px;
  text-align: center;
}

.ari-bungalow-view p {
  font-size: 13px;
  color: #b7a99a;
  margin-bottom: 12px;
}

.ari-bungalow-view img {
  width: 100%;
  height: auto;
}

/*About us*/

.project-hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.project-hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 60px;
  color: #fff;
}

.project-hero-overlay h1 {
  font-size: 2.5rem;
  max-width: 700px;
}

/* ABOUT SECTION */
/* ABOUT PROJECT SECTION */
.about-facts-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  color: #a69c91;
}

.about-facts-caption p {
  font-style: italic;
  color: #a69c91;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.about-facts-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.fact-box {
  background: #f9f6f2;
  padding: 40px 30px;
  min-width: 200px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-5px);
}

.fact-box h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #b79e89;
}

.fact-box p {
  font-size: 15px;
  color: #999;
  margin: 0;
}
.about-benefits {
  background: #fcf9f5;
  padding: 100px 20px;
  color: #4b4441;
}

.about-benefits-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-benefits-images {
  flex: 1 1 450px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.about-benefits-images img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}


.about-benefits-text {
  flex: 1 1 600px;
  padding-left: 350px;  
}


.about-benefits-text h5 {
  font-size: 16px;
  text-transform: uppercase;
  color: #c0a98e;
  margin-bottom: 20px;
}

.about-benefits-title {
  font-size: 18px;
  color: #8c847c;
  margin-bottom: 40px;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit-item p {
  font-size: 15px;
  color: #4b4441;
  margin: 0;
}

.ars-benefits-images {
  display: flex;
  gap: 20px;
  flex: 1.2;
}

.ars-benefits-images img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/*contact*/
.contact-reservation-section {
  background: #fdfbf9;
}

.contact-reservation-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 60px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info .section-label {
  text-transform: uppercase;
  font-size: 13px;
  color: #122d1a;
  margin-bottom: 10px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 500;
  color: #122d1a;
  margin-bottom: 30px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b4441;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info li img {
  width: 18px;
  height: auto;
}

.reservation-form {
  flex: 1;
  background: #f7f2ec;
  padding: 40px;
  min-width: 320px;
}

.reservation-form h3 {
  font-size: 22px;
  margin-bottom: 40px;
  color: #b7a99a;
  font-weight: 400;
}

.reservation-form .form-group {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.reservation-form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.reservation-form .form-field label {
  color: #b7a99a;
  font-size: 14px;
  margin-bottom: 8px;
}

.reservation-form input,
.reservation-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  color: #333;
  outline: none;
}

.reservation-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 30px;
}

.reservation-form button {
  background: #7b9c85;
  color: white;
  border: none;
  padding: 12px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}


.contact-map {
  margin-top: -40px;
}
select {
  width: 100%;
  padding: 10px 0;
  font-family: inherit;
  font-size: 16px;
  color: #4b4441;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus {
  border-bottom: 1px solid #b7a99a;
}
.form-field select {
  width: 100%;
  padding: 12px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #4b4441;
  background-color: #f4ede5;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%234b4441' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;

}

.form-field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(183, 169, 154, 0.2);
  background-color: #f1eae0;
}

.form-field option {
  font-size: 16px;
  color: #4b4441;
}
select option:checked {
  background-color: #7b9c85;
  color: white;
}
.form-field {
  margin-bottom: 24px; /* Adjust as needed */
}
.hero-about-section {
  position: relative;
  background-color: #7b9c85;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-about-title {
  color: #dfd6cc;
  font-size: 4rem;
  font-family: 'Forum', serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
}


.hero-about-scroll-text {
  color: #f4ede5;
  font-size: 16px;
  margin-bottom: 40px;
}

.hero-about-scroll-icon img {
  width: 25%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-about-scroll-icon:hover img {
  transform: translateY(5px);
}
   /* Responsive Styles */
   .custom-navbar {
  background: white;
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #122d1a;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.contact-btn {
  border: 2px solid #7b9c85;
  background: white;
  color: #7b9c85;
  padding: 10px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher a {
  color: #13472b;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 8px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #13472b;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12.5px);
}
body.menu-open {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {

  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-section {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f4ede5;
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 18px;
    color: #5b4c42;
  }

  .contact-btn {
    font-size: 16px;
    justify-content: center;
  }

  .language-switcher {
    margin-top: 20px;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #13472b;
    cursor: pointer;
    z-index: 1100;
  }
  .facts-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .facts-title {
    margin-bottom: 40px;
  }

  .facts-title h2 {
    font-size: 28px;
  }

  .facts-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .fact-card {
    min-width: 120px;
    padding: 15px 20px;
    top: 20px;
  }

  .fact-card h3 {
    font-size: 28px;
  }

  .fact-description {
    padding: 0 20px;
    margin-top: 80px;
    text-align: center;
  }

  .fact-description p {
    font-size: 20px;
  }
    .arch-image-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  .arch-image-row img {
    height: auto;
    max-width: 90%;
    object-fit: contain;
  }

  .arch-intro {
    text-align: center;
    flex: 1 1 100%;
  }

  .arch-intro h2 {
    font-size: 22px;
  }

  .arch-intro .description {
    font-size: 14px;
  }
  .benefits-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .benefits-left {
    text-align: center;
  }

  .benefits-left .benefits-text {
    font-size: 16px;
  }

  .benefits-right {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    justify-items: center;
    gap: 30px 40px;
  }

  .benefit-item {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .benefit-item img {
    width: 60px;
    height: auto;
  }

  .benefit-item p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-text {
    font-size: 3rem;
    padding: 10px 15px;
  }
  .akomodim-container {
    padding: 0 20px;
  }

  .akomodim-grid {
    justify-content: center;
    gap: 40px;
  }

  .akomodim-item {
    width: 45%;
    height: auto;
  }

  .akomodim-item .arched-image {
    height: auto;
  }

  .akomodim-item h6 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .hero-text {
    font-size: 2.2rem;
    padding: 10px 12px;
    line-height: 1.3;
  }
.dropdown {
  position: relative;
  width: 100%;
}
.dropdown-menu {
position: relative;
  display: none;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
  padding: 0;
  gap: 15px;
  margin-top: 10px;
}

.dropdown.open .dropdown-menu {
  display: flex !important;
}

.dropdown-toggle {
  font-size: 18px;
  color: #5b4c42;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  padding: 10px 0;
  background: none;
  border: none;
}
.dropdown-toggle {
  position: relative;
  padding-right: 20px; 
}
.dropdown.open .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-toggle::after {
  content: "▾"; /
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #5b4c42;
  transition: transform 0.3s ease;
}
 .akomodim-container {
    padding: 20px 20px;
  }

  .akomodim-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .akomodim-item h6 {
    font-size: 18px;
  }

  #akomodimi h2 {
    font-size: 28px;
  }

  #akomodimi p {
    font-size: 15px;
    padding: 0 10px;
  }
.facts-cards {
    flex-direction: column;
    align-items: center;
  }

  .fact-card {
    width: 80%;
    max-width: 300px;
    top: 10px;
  }

  .fact-card h3 {
    font-size: 24px;
  }

  .fact-card p {
    font-size: 13px;
  }

  .facts-title .subtitle {
    font-size: 16px;
  }

  .facts-title h2 {
    font-size: 22px;
  }

  .fact-description p {
    font-size: 18px;
  }
  .about-timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .timeline-img,
  .timeline-content {
    padding: 10px 15px;
    width: 100%;
  }

  .timeline-img img,
  .image-shadow-box img {
    max-width: 100%;
    height: auto;
  }

  .timeline-content {
    padding: 20px;
    text-align: center;
  }

  .timeline-content h3 {
    font-size: 24px;
  }

  .timeline-content span {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .year-background {
    font-size: 60px;
    top: -10px;
    left: 10px;
  }

  .timeline-item.right .image-shadow-box {
    margin-left: 0;
  }
  .ars-experience-section {
    padding: 60px 20px;
  }

  .ars-experience-row {
    flex-direction: column;
    margin-bottom: 50px;
    gap: 30px;
  }

  .ars-experience-row.reverse {
    flex-direction: column;
  }

  .ars-text {
    text-align: left;
  }

  .ars-text h3 {
    font-size: 20px;
  }

  .ars-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .ars-image {
    min-width: auto;
  }

  .ars-image img {
    height: auto;
    max-height: 400px;
  }
  .about-title {
    font-size: 24px;
    padding: 16px 20px;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 .form-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }

  .reservation-form {
    width: 100%;
    max-width: 400px;
  }
  .contact-reservation-wrapper{
    padding: 15px 15px;
  }
}

@media screen and (max-width: 480px) {
  .hero-text {
    font-size: 1.6rem;
    padding: 8px 10px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .hero-text span {
    margin: 1px 1px;
    padding: 1px 2px;
  }
  .experience-container {
    flex-direction: column;
    align-items: center;
  }

  .experience-text {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    margin-top: 20px;
    background-color: #a3968f;
    padding: 30px 20px;
    width: 90%;
    text-align: center;
  }

  .experience-text h2 {
    font-size: 24px;
  }

  .experience-text p {
    font-size: 16px;
  }
}
select:invalid {
  color: #aaa;
  font-style: italic;
}
input::placeholder,
textarea::placeholder {
  color: #aaa; 
  font-style: italic;
}
/*gallery*/

