@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: #eaeaea;
  font-size: 14px;
  line-height: 1.80857;
  overflow-x: hidden;
  background: #fff;
}

a { color: #1f1f1f; text-decoration: none; transition: all 0.3s ease-in-out; }
ul, li, ol { list-style: none; }
p { font-weight: 300; font-size: 15px; line-height: 24px; }
img { max-width: 100%; height: auto; display: block; }

/* LAYOUT */
.container       { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.container-fluid { width: 100%; padding: 0 15px; }
.layout-padding  { padding: 60px 0; }
.row             { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-6           { width: 50%; padding: 0 15px; }

/* HEADER */
.header {
  width: 100%;
  background-color: #252525;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e8e3e1;
  letter-spacing: 1px;
}

.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}

.nav-toggler span { display: block; width: 22px; height: 2px; background: #555; border-radius: 2px; }

.nav-links ul { display: flex; gap: 5px; }

.nav-links ul li a {
  padding: 8px 14px;
  font-size: 14px;
  color: #c1bebe;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links ul li a:hover,
.nav-links ul li.active a { color: #f76d37; }

/* BANNER */
.banner {
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); }
.banner .container { position: relative; z-index: 2; }
.banner-content { max-width: 700px; padding: 60px 0; }

.outstanding-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coffee-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 65px;
  font-weight: 700;
  color: #f76d37;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-text {
  font-size: 15px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 560px;
}

.slide-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.dot.active { background: #f76d37; }

/* BUTTONS */
.btn-primary a,
.btn-outline a {
  display: inline-block;
  background-color: #f76d37;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.btn-primary a { padding: 12px 35px; }
.btn-outline a { padding: 10px 30px; }

.btn-primary a:hover,
.btn-outline a:hover { background-color: #e05a22; color: #fff; }

.btn-outline { margin-top: 20px; }

/* ABOUT */
.about { background: #fff; }

.about-text-wrap { padding: 40px 20px 40px 0; }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #f76d37;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-p { font-size: 15px; color: #4c4c4b; line-height: 26px; margin-bottom: 15px; }

.about-img { display: flex; align-items: center; height: 100%; min-height: 300px; }
.about-img img { width: 100%; object-fit: cover; }

/* GALLERY */
.section-title {
  font-size: 2.5rem;
  color: #f76d37;
  margin: 5.625rem 0 1.25rem;
  text-align: center;
}

.section-text {
  font-size: 1.15rem;
  color: #636161;
  text-align: center;
  margin-bottom: 3.125rem;
  margin-inline: auto;
  font-weight: 398;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item img {
  width: 100%;
  height: 20.6rem;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon { font-size: 2rem; color: white; }



/* SERVICES */
.back-img {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("https://html.design/demo/grandcoffee/images/services-bg.png") center / cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.text h1 {
  font-size: 2.5rem;
  padding-top: 5rem;
  text-align: center;
  color: white;
}

.text p {
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: rgb(188, 190, 190);
}

.Services {
  display: flex;
  gap: 1.875rem;
  margin-top: 3.125rem;
  margin-inline: 1.875rem;
  padding-bottom: 5rem;
}

.service-part {
  background-color: #f76d37;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
}

.service-part img { width: 2.8125rem; }

#mocha { height: 3.125rem; }

.service-part h3 {
  font-size: 1.25rem;
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.service-part p {
  font-size: 0.9375rem;
  text-align: center;
  padding-bottom: 1.25rem;
}


.service-part:hover{
                    background-color: white;
                    color: #000;
                    cursor: pointer;
}


/* .service-part p:hover{
                      background-color: white;
                      color: #000;
} */



.btn {
  font-size: 1.25rem;
  border: none;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.3125rem;
  font-weight: 540;
  background-color: #dedddd;
  cursor: pointer;
}

.btn:hover { background-color: black; color: white; }




/* CONTACT */
.Contact { padding: 60px 0; }

.Contact h1 {
  font-size: 2.5rem;
  color: #f76d37;
  text-align: center;
  margin-bottom: 25px;
}

.Contact p {
  font-size: 1rem;
  color: rgb(75, 75, 75);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.Contact-section { display: flex; }

.back-form {
  background: url("https://html.design/demo/grandcoffee/images/img-9.png") center / cover no-repeat;
  height: 90vh;
  width: 100%;
  padding: 1.4375rem 4.375rem;
}

.Contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

form input, textarea { border-radius: 0.625rem; }

.input {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  border: none;
  outline: none;
}

.Area-form {
  font-size: 1.5rem;
  padding: 1.25rem 1.875rem;
  outline: none;
  border: none;
}

form textarea { font-weight: 300; resize: none; }

.input:hover, form textarea:hover { outline: 3px solid #fe3e09; }

.contact-btn {
  font-size: 1rem;
  border: none;
  background-color: #d33a11;
  color: #fff;
  padding: 0.9375rem 3.125rem;
  border-radius: 1.875rem;
  font-weight: 520;
  margin-top: 3.125rem;
  margin-left: 10.625rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-btn:hover { background-color: #f76d37; font-weight: 600; }

.Map iframe { height: 90vh; width: 50vw; }

/* FOOTER */
.footer { background: #252525; padding: 60px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-text { font-size: 14px; color: #999; line-height: 24px; }

.footer-menu li, .footer-contact li { padding: 4px 0; }
.footer-menu li a, .footer-contact li a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-menu li a:hover, .footer-contact li a:hover { color: #f76d37; }

.copyright { background: #fff; padding: 18px 0; border-top: 1px solid #eee; }
.copyright-text { font-size: 15px; color: #252525; text-align: center; }
.copyright-text a { color: #252525; }
.copyright-text a:hover { color: #f76d37; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-toggler { display: flex; }
  .nav-links { width: 100%; display: none; }
  .nav-links.open { display: block; }
  .nav-links ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .nav-links ul li a { display: block; padding: 10px 16px; }

  .col-6 { width: 100%; }
  .about-text-wrap { padding: 20px 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 200px; }

  .Services { display: flex; flex-wrap: wrap; padding-bottom: 3.125rem; }
  .back-img { height: 100%; }

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

@media (max-width: 768px) {
  .Contact-section { flex-wrap: wrap; }
  .back-form { width: 100%; }
  .Map iframe { width: 100vw; }
  .contact-btn { margin: 3.125rem 0 0 4.375rem; }
  .Contact-form { margin-top: 70px; }
}

@media (max-width: 576px) {
  .outstanding-text, .coffee-title { font-size: 32px; }
  .banner { min-height: 450px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }

  .btn { font-size: 1.2rem; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}