Reset and base styles
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #1d2a28 !important; 
  color: #ddd;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Header */

.header {
  background-color: #1d2a28;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 1.3px;
  color: #ff8c00;
  text-decoration: none;
  user-select: none;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav__link {
  font-weight: 600;
  color: #bbb;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
  user-select: none;
}

.nav__link:hover,
.nav__link:focus,
.nav__link.active {
  background-color: #ff8c00;
  color: #121212;
  outline: none;
}

/* Hero Section */

.hero {
  position: relative;
  height: 90vh;
   display: flex;
  align-items: center;
  color: #f0eceb;
  text-align: left;
}

.hero__overlay {
  position: absolute;
  inset: 0; 
  z-index: 1;
  backdrop-filter: brightness(70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 12rem;
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(255, 140, 0, 0.75);
  user-select: none;
}

.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.2rem;
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.hero__btn {
  font-size: 1.2rem;
  padding: 14px 40px;
  border-radius: 28px;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
  user-select: none;
}

/* Buttons */

.btn {
  user-select: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  padding: 12px 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn--primary {
  background-color: #ff8c00;
  color: #121212;
  box-shadow: 0 4px 16px #ff8c00aa;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: #e67e22;
  box-shadow: 0 6px 24px #e67e22cc;
  outline: none;
}

/* Section Titles */

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ff8c00;
  text-align: center;
  padding: 60px 0 40px;
  user-select: none;
}

/* Gallery Section */

.gallery {
  background-color: #f5eee4;
  /* padding-bottom: 70px; */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    position: relative;
    top: 50px;
}

.gallery-grid__img {
  width: 95%;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.gallery-grid__img:hover,
.gallery-grid__img:focus {
  transform: scale(1.05);
  box-shadow: 0 10px 30px #1d2a28;
  outline: none;
}

/* Features Section */

.features {
  background-color: #fbf8f4;
  padding: 70px 0 90px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  text-align: center;
}

.feature-item {
  background-color: #1d2a28;
  border-radius: 20px;
  padding: 35px 25px 40px;
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.feature-item:hover,
.feature-item:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.55);
  outline: none;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff8c00;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #ffbc55;
  font-weight: 700;
}

.feature-item p {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.5;
}

/* Testimonials Section */

.testimonials {
  background-color: #fbf8f4;
  padding: 75px 0 90px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial {
  background-color: #1d2a28;
  padding: 28px 30px 32px;
  border-radius: 22px;
  box-shadow: 0 5px 18px rgba(255, 140, 0, 0.45);
  font-style: italic;
  color: #ddd;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  transition: background-color 0.3s ease;
}

.testimonial:hover,
.testimonial:focus-within {
  background-color: #2b2b2b;
  outline: none;
}

.testimonial footer {
  margin-top: 24px;
  font-weight: 600;
  color: #ff8c00;
  text-align: right;
  font-style: normal;
  user-select: text;
}

/* Contact Section */

.contact {
  background-color: #121212;
  padding: 70px 0 80px;
}

.contact__content {
  max-width: 600px;
  margin: auto;
}

.contact-form {
  background-color: #1c1c1c;
  padding: 32px 30px 38px;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(255, 140, 0, 0.4);
  user-select: none;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 9px;
  color: #f0e8df;
  user-select: text;
}

input[type="text"],
input[type="email"],
textarea {
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid #333;
  border-radius: 14px;
  resize: vertical;
  background-color: #222;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.25s ease;
  user-select: text;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #ff8c00;
  outline: none;
  box-shadow: 0 0 10px #ff8c00bb;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 18px;
  user-select: none;
}

.contact-form button.btn {
  width: 100%;
  font-size: 1.15rem;
  padding: 16px 0;
  margin-top: 8px;
  box-shadow: 0 8px 26px rgba(255, 140, 0, 0.58);
  user-select: none;
}

.form-status {
  margin-top: 18px;
  font-size: 1rem;
  color: #ffbb55;
  min-height: 24px;
  user-select: none;
}

/* Footer */

.footer {
  background-color: #1b1b1b;
  color: #888;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  user-select: none;
}

/* Responsive */

@media (max-width: 920px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 1.15rem;
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.3rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }

  .nav__list {
    gap: 18px;
  }

  .gallery-grid__img {
    height: 180px;
  }

  .feature-item {
    padding: 28px 20px 30px;
  }
}

@media (max-width: 400px) {
  .hero__content {
    margin-left: 1rem;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }
}




.text-section {
      max-width: 50%;
    }

    .text-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .text-section h1 span {
      color: #c5c5c5; /* ngjyrë e zbehtë për pjesën “innovate in design” */
      font-weight: 400;
    }

    .text-section a {
      display: inline-block;
      margin-top: 15px;
      font-weight: bold;
      color: white;
      text-decoration: underline;
    }

    .text-section p {
      margin-top: 15px;
      font-size: 1rem;
      color: #b0b0b0;
    }

    .video-btn {
      margin-top: 25px;
      display: inline-block;
      background: white;
      color: black;
      font-weight: bold;
      padding: 12px 24px;
      border-radius: 50px;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .image-section {
      position: relative;
      max-width: 50%;
    }

    .image-section img {
      width: 100%;
      border-radius: 10px;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .play-button::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-left: 20px solid black;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      margin-left: 5px;
    }

    .section-kitchen{
        padding: 60px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .p-center-color-black{
        text-align: center;
        font-size: 16px;
        color: #1d2a28;
        font-weight: 500;
    }




	/* Menu container */
.primary-navigation {
  background-color: #1d2a28;
  box-shadow: 0 2px 12px rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.primary-menu-container {
  display: flex;
  justify-content: flex-end;
}

.menu-wrapper {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu-wrapper li a {
  font-weight: 600;
  color: #bbb;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.menu-wrapper li a:hover,
.menu-wrapper li a:focus,
.menu-wrapper li a.current-menu-item {
  background-color: #ff8c00;
  color: #121212;
  outline: none;
}

/* Hamburger button */
.menu-button-container .button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}


ul#primary-menu-list {
    padding: 20px 0px;
}

li.menu-item {
	padding: 0px 20px;
}
li.menu-item a {

    font-weight: 600;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    padding: 6px 8px;
    border-radius: 8px;
    transition: color 0.3s 
ease, background-color 0.3s 
ease;
    user-select: none;
	    padding: 14px;
}

li.menu-item a:hover {

background-color: #ff8c00;
    color: #121212;
    outline: none;
	    padding: 14px;
}



button.navbar-toggler {
    background-color: white;
}




/* media rensponsive */
@media (max-width: 768px) {
.image-section img {
   height: 100%;
    }
  .img-kitchen-design{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

	ul#primary-menu-list {
		padding: 20px 0px;
		text-align: center;
	}

	li.menu-item {
		padding: 12px 0px;
	}

.footer-content .contact-widget {
    margin-left: 30px;
}
}


@media (max-width: 1027px) {
  .shape.z_1.float-bob-y {
      display: none;
  } 
}


@media (max-width: 1024px) {

.hero__content {
   margin-left: 2rem;
}

.section-title {
    font-size: 1.6rem;
}
	.gallery-grid {
    display: block;
    top: 0;
}

	.gallery-grid img {
    margin-bottom: 30px;
}

.section-kitchen {
    padding: 40px 30px;
    display: block;
    align-items: center;
    justify-content: center;
}
.text-section {
    max-width: 100%;
}
.text-section h1 {
    font-size: 1.5rem; 
	text-align: center;
	color: orange;
}
	.text-section h1 span {
		color: orange; 
	}
 
	.video-btn { 
    padding: 8px 6px; 
}


.image-section {
    max-width: 100%;
    margin-top: 30px;
}

   .gallery-grid-1 {
    display: block !important;
}
}






.main-footer{
  position: relative;
  background: #1e2129;
}

.footer-content{
  position: relative;
  padding: 85px 0px 80px 0px;
}
.footer-content:before{
  position: absolute;
  content: '';
  background: url(https://i.ibb.co/jyRLrBZ/world-map.png);
  width: 744px;
  height: 365px;
  top: 50px;
  right: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.footer-content .logo-widget{
  position: relative;
  margin-top: -5px;
}
.footer-content .logo-widget .footer-social li{
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
.footer-content .logo-widget .footer-social li:last-child{
  margin-right: 0px;
}
.footer-content .logo-widget .footer-social li a{
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #2e3138;
  color: #9ea0a9;
  text-align: center;
  border-radius: 50%;
}
.footer-content .logo-widget .footer-social li a:hover{
  color: #ffffff;
  background: #ff5e14;
}
.footer-content .logo-widget .logo-box{
  margin-bottom: 25px;
}
.footer-content .logo-widget .text p{
  color: #9ea0a9;
  margin-bottom: 32px;
}
.footer-content .footer-title{
  position: relative;
  font-size: 24px;
  line-height: 35px;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 27px;
}
.footer-content .service-widget .list li{
  display: block;
  margin-bottom: 12px;
}
.footer-content .service-widget .list li a{
  position: relative;
  display: inline-block;
  color: #9ea0a9;
}
.footer-content .service-widget .list li a:hover{
  color: #ff5e14;
}
.footer-content .contact-widget p{
  color: #9ea0a9;
  margin-bottom: 15px;
}
.footer-content .contact-widget{
  margin-left: 90px;
}
.footer-content .contact-widget .footer-title{
  margin-bottom: 29px;
}

/** footer-bottom **/

.footer-bottom{
  position: relative;
  background: #13151a;
  padding: 25px 0px 22px 0px;
}
.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a{
  position: relative;
  color: #9ea0a9;
}
.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover{
  color: #ff5e14;
}
.footer-bottom .footer-nav{
  position: relative;
  text-align: right;
}
.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
.footer-bottom .footer-nav li:first-child{
  margin-left: 0px;
}
.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background: #9ea0a9;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
.footer-bottom .footer-nav li:first-child:before{
  display: none;
}
.logo-box img {
    max-width: 220px;
}




.gallery-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
	padding-bottom: 100px;
}

.text {
    position: relative;
}

a.video-btn {
    color: black;
}

a.video-btn:hover {
	color: white;
	background-color: orange;
}

.page-title {  
    /* background-image: url('https://july.finestwp.com/newwp/kitchnox/wp-content/themes/kitchnox/assets/images/background/page-title.jpg'); */
    background-size: cover;       /* mbulon të gjithë section */
    background-position: center;  /* e vendos imazhin në qendër */
    background-repeat: no-repeat;
    height: 300px;                /* mund ta ndryshosh sipas nevojës */
    display: flex;
    align-items: center;          /* centron vertikalisht */
    justify-content: center;      /* centron horizontalisht */
}

.page-title__content h1 {
    color: #fff;                  /* tekst i bardhë për kontrast */
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5); /* për ta bërë më të dukshëm mbi imazh */
}

 

img.gallery-grid__img.wp-post-image {
    width: 100% !important;
    height: 94% !important; 
  	margin-bottom: 30px;  
    object-fit: cover;

}


.float-bob-y {
  animation: float-bob-y 3s ease-in-out infinite;
}

@keyframes float-bob-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* sa lart do lëvizë */
  }
}



.content-post-text p:first-of-type {
    font-size: 40px;
    margin-top: 40px; /* opsionale, nëse nuk do hapësirë të madhe sipër */
}

/* Të tjerat mund të kenë font normal */
.content-post-text p {
    font-size: 16px; /* ose çfarëdo madhësie normale që përdor */
    color: #121212;
    margin-top: 20px; /* distancë mes paragrafëve */
}


.bg-light.single-post-page1 {
    padding: 100px 0px;
}

.titulli-single-post h2{
  font-size: 40px;
  color: #121212;
  text-align: center;
  margin-bottom: 30px;
}

.img-postss{
  margin-bottom: 40px;
}

.more-link{
  color: orange;
  font-size: 20px;
  margin-top: 20px;
}

.post-excerpt p{
  color: #121212;
}
.color-post-tjera{
    color: #121212;
}

.img-kitchen-design{
  height: 513px;
  width: 380px;
  object-fit: cover;
}

  header#masthead {
    background-color: white;
}