@charset "utf-8";
body,
html {
  overflow-x: hidden;
}
.mobile-menu,
nav {
  backdrop-filter: blur(20px);
  top: 0;
}
.banner-button,
.nav-links li button,
.section-title,
body {
  font-family: "Crimson Text", serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgb(191 227 239 / 40%) 0,
    transparent 70%
  );
}
body,
nav {
  background: var(--bg-primary);
}
h2 {
  font-size: 2rem;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #151618;
  --accent-color: #fbbe27;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}
body {
  line-height: 1.7;
  color: var(--text-primary);
  scroll-behavior: smooth;
}
nav {
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}
.mobile-nav-links a,
.nav-links a {
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.8rem 0;
  text-decoration: none;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.logo img {
  width: 90px;
}
.banner-button,
.nav-links li button {
  color: var(--primary-color);
  font-weight: 700;
  padding: 10px 20px 13px;
  border-radius: 40px;
  background-color: var(--accent-color);
  border: transparent;
  font-size: 18px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-button:hover,
.nav-links li button:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
  cursor: pointer;
}
.nav-links a {
  font-size: 20px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mobile-nav-links a:focus,
.mobile-nav-links a:hover,
.nav-links a:focus,
.nav-links a:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}
.mobile-nav-links a::after,
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--accent-color);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}
.mobile-nav-links a.active::after,
.mobile-nav-links a:hover::after,
.nav-links a:hover::after,
.tourGuideContent .image img {
  width: 100%;
}
.nav-links a:focus::after {
  color: var(--accent-color);
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}
.hamburger {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}
.mobile-menu-toggle.active .hamburger:first-child {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.mobile-menu {
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.mobile-menu.active {
  right: 0;
}
.mobile-nav-links {
  list-style: none;
  text-align: center;
}
.mobile-nav-links li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-links a {
  font-size: 22px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
}
.mobile-menu.active .mobile-nav-links li:first-child {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about,
.currently {
  padding-top: 100px;
}
.section-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  background: var(--gradient-elegant);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  position: relative;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
.about {
  padding-bottom: 100px;
}
.about-content .about-text img {
  width: 150px;
}
.about-image {
  width: 100%;
  height: 550px;
  background: url("/images/IMG_3215.jpeg") center/cover;
}
.currently-text,
.tourGuideContent .text h3,
.tourGuideContent .text p {
  text-align: center;
}
.about-text h3,
.portfolio .container h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}
.portfolio .container h2 {
  padding: 50px 0 30px;
  text-align: center;
}
.portfolio .container .description {
  padding-bottom: 70px;
  text-align: center;
  font-size: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.portfolio {
  background: var(--bg-primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}
.portfolio-item {
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-item.animate {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-item:hover {
  transform: translateY(-15px);
}
.portfolio-image {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.tourGuideSection,
.tourSection {
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  text-align: center;
}
.footer-bottom p,
.footer-top {
  background-color: var(--secondary-color);
}
.portfolio-item:first-child .portfolio-image {
  background-image: url("/images/gjirokaster.jpeg");
}
.portfolio-item:nth-child(2) .portfolio-image {
  background-image: url("/images/himara.jpeg");
}
.portfolio-item:nth-child(3) .portfolio-image,
.tourSection {
  background-image: url("/images/rozafa.jpeg");
}
.portfolio-item:nth-child(4) .portfolio-image {
  background-image: url("/images/alpet.jpeg");
}
.portfolio-item:nth-child(5) .portfolio-image {
  background-image: url("/images/berat.jpeg");
}
.portfolio-item:nth-child(6) .portfolio-image {
  background-image: url("/images/tirana.jpeg");
}
.portfolio-item:nth-child(7) .portfolio-image {
  background-image: url("/images/Custom.png");
}
.portfolio-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: 0.3s;
}
.parallax-inner,
.portfolio-content {
  padding: 2rem;
}
.portfolio-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}
.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.homeSection .parallax-inner h1,
.tourSection .parallax-inner h1 {
  font-size: 40px;
}
.homeSection .parallax-inner p,
.tourSection .parallax-inner p {
  font-size: 30px;
  padding-bottom: 10px;
}
.tourSection {
  height: 100vh;
  background-position: 70% 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 3rem 4rem;
}
.discoverOne,
.tourGuideSection {
  background-image: url("/images/FullSizeRender.jpeg");
}
.tourSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.homeSection .parallax-inner,
.tourSection .parallax-inner {
  z-index: 998;
}
@media (max-width: 1024px) {
  .homeSection .parallax-inner,
  .tourSection .parallax-inner {
    padding: 0px;
  }
  .about-text p,
  h2 {
    font-size: 1.5rem;
  }
  .discoverMoreBoxes .discoverOne,
  .discoverMoreBoxes .discoverTwo,
  .tourGuideContent .text {
    width: 100% !important;
  }
  .contact-info,
  .discoverMore-info {
    padding: 30px 0 !important;
    margin: 20px 0 !important;
  }
  .contact-info {
    padding-bottom: 20px;
  }
  .contact-info h3,
  .discoverMore-info h3 {
    font-size: 2rem !important;
  }
  .discoverMoreBoxes {
    flex-wrap: wrap;
  }
  .tourGuideContent {
    flex-direction: column;
  }
  .curently-content .currently-text p {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  .curently-content .currently-text h3 {
    color: var(--primary-color);
  }
  .currently {
    padding: 0 !important;
  }
  .curently-content .currently-text,
  .currently-text {
    width: 100%;
  }
  .homeSection {
    padding-left: 10px;
    padding-right: 10px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero h1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .portfolio .container .description {
    padding-bottom: 30px !important;
  }
  .about {
    padding-bottom: 50px;
  }

  .form-row,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding-bottom: 60px !important;
  }
  .tourGuideContent h3 {
    font-size: 20px !important;
  }
  .tourGuideContent {
    gap: 30px !important;
    margin: 30px 0 !important;
  }
  .about-text p,
  .curently-content .currently-text p,
  .hero .subtitle {
    font-size: 1.1rem;
  }
  .about-image {
    height: 400px;
  }
  .about {
    padding-top: 20px;
  }
  .homeSection .parallax-inner p,
  .tourSection .parallax-inner p {
    font-size: 17px;
  }
  .homeSection .parallax-inner h1,
  .portfolio .container h3,
  .portfolio-content h4,
  .tourSection .parallax-inner h1 {
    font-size: 22px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .portfolio .container h3 {
    padding-bottom: 0;
  }
  .form-row {
    gap: 1.5rem;
  }
  .about-text h3 {
    font-size: 2rem;
  }
  .skills {
    margin-top: 2rem;
  }
}
.tourGuideSection {
  height: 100vh;
  background-position: right;
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 3rem 3rem 4rem;
}
.currently .container {
  display: flex;
  justify-content: flex-end;
}
.curently-content {
  z-index: 1400;
}
.tourGuideContent {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
  margin: 100px 20px;
}
.contact-info,
.discoverMore-info {
  margin: 40px;
  padding: 40px;
  display: flex;
}
.tourGuideContent .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-top-second div #title,
.footer-top-second div ul li,
.tourGuideContent h3 {
  font-size: 30px;
}
.contact-info {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.contact-info h3,
.discoverMore-info h3 {
  font-size: 2.5rem;
}
.contact-info p {
  font-size: 1.5rem;
}
.discoverMore-info {
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.discoverMoreBoxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}
.discoverOne,
.discoverTwo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 50%;
  height: 50vh;
  padding: 40px;
  display: flex;
  color: #fff;
}
.discoverOne {
  align-items: end;
  justify-content: center;
}
.discoverTwo {
  background-image: url("/images/rozafa.jpeg");
  align-items: end;
  justify-content: center;
}
.contact-info a {
  color: #000;
  transition: color 0.3s;
}
.footer a,
.footer-bottom p,
table td {
  color: var(--primary-color);
}
.contact-info a:active,
.contact-info a:focus,
.contact-info a:hover,
.footer-top-second div table tr td a:hover {
  color: var(--accent-color);
}
.about-content .about-text p,
.currently-text,
.text p {
  font-size: 20px !important;
}
.footer-top-second {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 2px solid var(--secondary-color);
}
.footer-top-first img {
  width: 100px;
  border-radius: 50%;
  transition: transform 0.3s;
  cursor: pointer;
}
table td {
  height: 40px;
  font-size: 20px;
}
.footer-top-second div #title {
  padding-bottom: 25px;
  color: var(--primary-color);
}
.footer a {
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--primary-color);
  margin-top: 60px;
}
.footer-bottom p {
  padding: 20px 0;
  font-size: 15px;
}
.footer-top-first div {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
.footer-top-first div img {
  width: 55px;
}
.footer-top-first {
  padding: 30px 0;
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
}
.footer {
  background: var(--secondary-color);
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .container {
    padding: 0 1rem;
  }
  @media (max-width: 767px) {
    .currently {
      padding: 0 !important;
    }
    .curently-content .currently-text {
      width: 100%;
    }
    .logo img {
      width: 70px;
    }
    .nav-container {
      padding: 10px;
    }
  }
  .footer-right {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 1000px) {
  .footer-top-first div img {
    width: 40px;
  }
  .footer-top-first img {
    width: 70px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-right {
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-right a {
    font-size: 0.85rem;
  }
  .footer-top-second {
    flex-direction: column;
    gap: 30px;
  }
  .footer-top-second div #title {
    padding: 5px;
  }
}
.footer-top-first img:hover {
  transform: scale(1.2);
}
.homeSection {
  background-image: url("images/IMG_3497.jpeg");
  height: 100vh; /* Full height */
  background-position: 70% 35%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: white;
  text-align: center;
  padding: 3rem;
  padding-bottom: 4rem;
}
.homeSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.currently {
  background-image: url("images/IMG_3807.jpeg");
  height: 100vh; /* Full height */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
  color: white;
  text-align: center;
  padding: 3rem;
  padding-bottom: 4rem;
}

.currently::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* dark overlay */
  z-index: 1;
}
