/* RESET BAZË + VARIABLAT GLOBALE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

:root {
  --primary: #2e5848;
  --secondary: #8c6d46;
  --accent: #c41e3a;
  --light: #f5f1e6;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --text-dark: #2c3e50;
  --bg-light: linear-gradient(135deg, #faf9f6 0%, #e8f5e8 100%);
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}


/* =========================
   HEADER MODERN
   ========================= */

.modern-header {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 2000;
}

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

/* LOGO */

/* Importo fontin CINZEL */
/* Importo fontin Cormorant Garamond */
/* Importo fontin Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

.logo-img .logo-image{
  height: 50px;
}



/* NAVIGATION (DESKTOP) */

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 20px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 0.85rem;
  white-space: nowrap;
}

.main-nav a i {
  margin-right: 6px;
  font-size: 1rem;
  color: var(--text-dark);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 70%;
}

.main-nav a:hover {
  background: rgba(232, 245, 232, 0.6);
  transform: translateY(-1px);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(46, 88, 72, 0.1);
}

/* HEADER ACTIONS (LANG / SEARCH / MENU) */

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.search-btn {
  border: 0;
  background-color: transparent;
}

.language-selector,
.search-btn,
.menu-toggle {
  color: var(--text-dark);
  padding: 8px 10px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: none;
  background: transparent;
}

.language-btn {
  gap: 3px;
  padding: 6px 8px;
  border: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
}

.language-btn i:first-child {
  font-size: 0.85rem;
}

.language-btn span {
  font-weight: 500;
  min-width: 18px;
  text-align: center;
}

.language-btn i:last-child {
  font-size: 0.65rem;
  margin-left: 2px;
}

.language-btn:hover,
.search-btn:hover,
.menu-toggle:hover {
  background: rgba(232, 245, 232, 0.8);
  transform: scale(1.03);
  box-shadow: 0 2px 6px rgba(46, 88, 72, 0.1);
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--bg-light);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2100;
  padding: 5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  flex: 1;
  padding-top: 1rem;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(46, 88, 72, 0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding-left: 1rem;
  font-size: 1rem;
}

.mobile-menu a:hover {
  color: var(--primary);
  background: rgba(232, 245, 232, 0.6);
  transform: translateX(5px);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* RESPONSIVE HEADER */

@media (max-width: 1024px) {
  .main-nav a {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .main-nav ul {
    gap: 0.2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    gap: 0.5rem;
    justify-content: space-between;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .mobile-menu {
    width: 100%;
    max-width: none;
  }
}

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

  .logo-text span {
    font-size: 0.75rem;
  }

  .language-btn {
    padding: 4px 6px;
    font-size: 0.8rem;
  }

  .search-btn {
    padding: 6px 8px;
  }

  .header-actions {
    gap: 4px;
  }
}

/* =========================
   HERO SECTION
   ========================= */

.hero-section {
  min-height: 80vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(
      135deg,
      rgba(46, 88, 72, 0.45) 0%,
      rgba(140, 109, 70, 0.35) 50%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 60% 92%, 40% 88%, 0 82%);
  transition: clip-path 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-section.animate-shape {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 65% 90%, 35% 86%, 0 80%);
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 1s ease-out forwards;
  z-index: 2;
  width: 100%;
}

.hero-content.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.8rem;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
  line-height: 1.5;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  margin-bottom: 0.8rem;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  margin-bottom: 2rem;
  opacity: 0.85;
  max-width: 600px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* CTA BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d4a574;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(0);
}

.cta-btn i {
  font-size: 0.9em;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.4);
  background: linear-gradient(135deg, #5a8c69 0%, #e4b584 100%);
  backdrop-filter: blur(10px);
}

.cta-btn:hover i {
  transform: translateX(5px);
}

.cta-btn:active {
  transform: translateY(-2px) scale(1.03);
}

/* HERO RESPONSIVE */

@media (max-width: 1024px) {
  .hero-section {
    background-attachment: scroll;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 88%, 0 80%);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 55vh;
    align-items: flex-end;
    padding-bottom: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 85%, 0 78%);
  }

  .hero-title {
    margin-bottom: 0.6rem;
  }

  .hero-subtitle {
    margin-bottom: 0.6rem;
  }

  .hero-description {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
    padding-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 75%);
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-description {
    display: none;
  }

  .cta-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 40px;
    width: 100%;
    max-width: 260px;
  }
}

/* =========================
   LATEST POSTS
   ========================= */

.recent-posts {
  padding: 80px 0;
  background: linear-gradient(
    181deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 249, 250, 1) 100%
  );
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e5848;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #2e5848;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-content {
  padding: 1.5rem;
}

.post-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.4;
}

.post-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #888;
}

.post-date {
  font-weight: 500;
}

.post-read-time {
  background: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.view-all-container {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2e5848;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2e5848;
}

.view-all-btn:hover {
  background: transparent;
  color: #2e5848;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 88, 72, 0.3);
}

/* READ MORE BUTTON */

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #2e5848;
  padding: 0.5rem 1rem;
  border: 2px solid #2e5848;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.read-more-btn:hover {
  background: #2e5848;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 88, 72, 0.3);
}

/* RESPONSIVE LATEST POSTS */

@media (max-width: 768px) {
  .recent-posts {
    padding: 60px 0;
  }

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

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

  .post-content {
    padding: 1.25rem;
  }

  .read-more-btn {
    margin-left: 1.25rem;
  }
}

@media (max-width: 480px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 15px;
  }
}

/* =========================
   INFO STRIP & HOW IT WORKS
   ========================= */

   .info-strip {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 30px 0;
}

.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-item {
  background: #f9fafb;
  border-radius: 16px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.info-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin-bottom: 6px;
}

.info-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.info-hint {
  font-size: 0.9rem;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .info-strip-inner {
    grid-template-columns: 1fr;
  }
}


/* =========================
   INFO STRIP MODERN
   ========================= */

.info-strip-modern {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f3ee 100%);
}

.info-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.info-modern-item {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(46,88,72,0.15);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.info-modern-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(46, 88, 72, 0.25);
}

.info-modern-item::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(46,88,72,0.15), transparent 60%);
  transform: scale(0);
  transition: .4s;
}

.info-modern-item:hover::before {
  transform: scale(1);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 18px;
  background: rgba(46,88,72,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  transition: .3s ease;
}

.info-modern-item:hover .info-icon {
  background: var(--primary);
  color: white;
}

.info-modern-item h3 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}


.info-desc {
  margin-top: 8px;
  color: #6c757d;
  font-size: .95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-modern-item {
    padding: 25px;
  }
  .info-modern-item h3 {
    font-size: 2rem;
  }
  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}


.how-it-works {
  padding: 70px 0 80px;
  background: #f3f4f6;
}

.how-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.how-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  color: #4b5563;
  font-size: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.step {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(229, 231, 235, 0.9);
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(46, 88, 72, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #111827;
}

.step p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.55;
}

/* RESPONSIVE INFO / HOW */

@media (max-width: 992px) {
  .info-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .info-strip-inner {
    grid-template-columns: 1fr;
  }

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

  .how-it-works {
    padding: 60px 0;
  }
}

/* =========================
   QUOTE SECTION
   ========================= */

.quote-section {
  background-color: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
}

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

.quote-icon {
  font-size: 3rem;
  margin-bottom: 30px;
  opacity: 0.7;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.5;
}

.quote-author {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* =========================
   BANNER SECTION
   ========================= */

.banner-section {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner-content {
  max-width: 800px;
  padding: 0 20px;
}

.banner-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner-text {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* =========================
   #GALERY DESIGN SECTION
   ========================= */

#galery {
  display: flex;
  justify-content: center;
  padding: 100px 0px;
}

.design-container {
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 0;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.design-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Teksti i majtë */

.text-section {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  position: relative;
}

.main-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.4;
}

.description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.description p {
  margin-bottom: 20px;
}

.learn-more-btn {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-top: 10px;
}

.learn-more-btn:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  padding-right: 20px;
}

.learn-more-btn::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover::after {
  transform: translateX(5px);
}

/* Foto djathtas */

.image-section {
  background: linear-gradient(135deg, var(--primary) 0%, #3d6b58 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.image-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  aspect-ratio: 1;
}

.image-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-item:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Dekorime */

.decoration {
  position: absolute;
  background: var(--accent);
  opacity: 0.1;
}

.decoration-1 {
  top: 20%;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.decoration-2 {
  bottom: 10%;
  left: -20px;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
}

/* RESPONSIVE – GALERY */

@media (max-width: 992px) {
  .design-content {
    grid-template-columns: 1fr;
  }

  .text-section {
    padding: 60px 40px;
    order: 2;
  }

  .image-section {
    order: 1;
    padding: 60px 40px;
    min-height: 400px;
  }

  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .text-section {
    padding: 40px 30px;
  }

  .image-section {
    padding: 40px 30px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .text-section {
    padding: 30px 20px;
  }

  .image-section {
    padding: 30px 20px;
  }

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

  .image-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .image-item:nth-child(2),
  .image-item:nth-child(4) {
    margin-top: 0;
  }
}

/* =========================
   TWO COLUMN SECTION
   ========================= */

.two-column-section {
  padding: 100px 0;
  background-color: white;
}

.two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.column-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.column-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.column-image:hover img {
  transform: scale(1.05);
}

.column-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.column-text p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 1.1rem;
}

/* TWO COLUMN RESPONSIVE */

@media (max-width: 992px) {
  .two-column-content {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT & COMMENT FORMS
   ========================= */

.contact-section {
  width: 100%;
  background: #f5f5f5;
  padding: 60px 0;
  color: var(--primary);
}

.coment-section {
  width: 100%;
  padding: 40px 0;
  color: var(--primary);
  margin-top: 100px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.coment-container {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.coment-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.coment-container p {
  text-align: center;
}

.contact-desc {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form,
.coment-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.coment-form .form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.coment-form .form-group input,
.coment-form .form-group textarea,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #1e63d3;
}

/* =========================
   FOOTER
   ========================= */

footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
  bottom: 0;
  left: 0;
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
   GALLERY PAGE STYLES (galeria.php)
   ========================= */

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 62, 80, 0.85));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.item-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3em;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.item-description {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* LOGO SEKSION NË FOOTER (nëse përdoret) */

.logos .footer-teksti h2 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 20px;
}

.logos .footer-images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.logos .footer-images img {
  width: 150px;
  margin-left: 50px;
}

/* =========================
   ADMIN STYLES (PANELS)
   ========================= */

.admin-card {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.btn-primary {
  background-color: #2e5848;
  border-color: #2e5848;
}

.btn-primary:hover {
  background-color: #1f4037;
  border-color: #1f4037;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.table {
  font-size: 0.9rem;
}

.form-label {
  font-weight: 600;
  color: #495057;
}

.alert {
  border-radius: 8px;
}

.upload-area {
  border: 2px dashed #dee2e6;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: #2e5848;
  background: #e8f5e8;
}

.table img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.nav-tabs .nav-link {
  border: none;
  color: #6c757d;
}

.nav-tabs .nav-link.active {
  color: #2e5848;
  border-bottom: 2px solid #2e5848;
}

.modal-header {
  background-color: #2e5848;
  color: white;
}

.btn-group-sm .btn {
  margin-right: 5px;
}

/* =========================
   GALLERY FILTER NAVIGATION
   ========================= */

.gallery-nav {
  background: #ffffff;
  padding: 35px 0 25px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 10px;
}

.nav-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.nav-btn:hover {
  background: #e8f5e8;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(46, 88, 72, 0.15);
}

.nav-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(46, 88, 72, 0.25);
}

/* BUTONI ACTIVE me efekt të butë të ndritshëm */
.nav-btn.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  animation: pulseActive 1.8s infinite;
}

@keyframes pulseActive {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* =========================
   MOBILE SCROLLING
   ========================= */

@media (max-width: 768px) {
  .nav-container {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
  }

  .nav-container::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .nav-btn {
    display: inline-block;
    flex-shrink: 0;
  }
}

/* SMALL SCREENS FIX */
@media (max-width: 480px) {
  .nav-btn {
    padding: 9px 18px;
    font-size: 0.88rem;
  }
}

/* =========================
   CONTACT MODERN SECTION
   ========================= */

/* =========================
   CONTACT + CONTRIBUTE SECTION
   ========================= */

.contact-contribute-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* Left Form */
.cc-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.cc-desc {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.cc-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cc-btn:hover {
    background: #234638;
}

/* Right Contribution Boxes */
.cc-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cc-box {
    background: white;
    padding: 65px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    cursor: pointer;
}

.cc-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.cc-box i {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.cc-box h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.cc-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .cc-grid {
        grid-template-columns: 1fr;
    }

    .cc-options {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cc-options {
        grid-template-columns: 1fr;
    }
}




/* =========================
   FOOTER CONTACT FORM
   ========================= */

.footer-contact-section {
    background: #f9fafb;
    padding: 70px 0 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-contact-title {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-contact-desc {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 35px;
}

.footer-contact-form {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    display: grid;
    gap: 20px;
}

.footer-form-group {
    text-align: left;
}

.footer-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.footer-form-group input,
.footer-form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,88,72,0.25);
}

.footer-contact-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    background: #234437;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .footer-contact-title {
        font-size: 1.7rem;
    }

    .footer-contact-form {
        padding: 25px;
    }
    .footer-images{
      display: flex;
      flex-direction: column;
      width: 250px;
      margin: 0 auto;
    }
}
