/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  width: 100%;
  position: relative;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 800px;
  background: url("img/pastries/pastries.png") center/cover no-repeat;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 67px 80px;
  position: relative;
  z-index: 1;
}

.logo {
  color: #ff9e9e;
  font-family: "Inknut Antiqua", serif;
  font-size: 64px;
  font-weight: 500;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 1px #000;
  transition:
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 10px rgba(255, 158, 158, 0.5);
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  position: relative;
  padding: 6px 4px;
}

.nav-link:hover {
  color: #db8383;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #db8383;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:active {
  transform: translateY(0);
}

.cart-button {
  padding: 14px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background-color: #db8383;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.cart-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #d06e6e;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 844px;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}

.hero-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-description {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

/* Featured Sections */
.featured-section {
  display: flex;
  justify-content: center;
  padding: 80px;
  gap: 32px;
}

.featured-content {
  max-width: 515px;
}

.featured-title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
}

.featured-description {
  color: #828282;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.action-buttons {
  display: flex;
  gap: 27px;
}

.order-button {
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  background-color: #db8383;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #d06e6e;
}

.details-button {
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  color: #000;
  background-color: #e6e6e6;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.details-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #d9d9d9;
}

.featured-image {
  width: 623px;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.featured-section:hover .featured-image {
  filter: brightness(1.05);
}

/* Pastry Gallery */
.pastry-gallery {
  padding: 0 80px;
}

.gallery-title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 48px;
}

.gallery-row {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pastry-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pastry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pastry-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.pastry-card:hover .pastry-image {
  filter: brightness(1.05);
}

.pastry-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pastry-name {
  color: #000;
  font-size: 24px;
  font-weight: 500;
}

.pastry-description {
  color: #828282;
  font-size: 20px;
  font-weight: 400;
}

.pastry-price {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding: 42px 80px;
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  background-color: #ffcfcf;
}

.footer-about {
  max-width: 529px;
}

.footer-heading {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-text {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
}

.read-more-button {
  padding: 20px 32px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background-color: #db8383;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.read-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #d06e6e;
}

.footer-social {
  max-width: 529px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: block;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.footer-contact {
  max-width: 529px;
}

.contact-email {
  color: #db8383;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #c06e6e;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(219, 131, 131, 0.2); 
    text-align: center;
    color: #db8383;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a {
    color: #db8383;

    text-decoration: none;
    transition: all 0.3s ease;
}




/* Mobile menu styles */
.mobile-nav {
  position: fixed;
  top: 164px;
  left: 0;
  width: 100%;
  background-color: #ffcfcf;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav .nav-link {
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: #000;
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

/* Media Queries */
@media (max-width: 991px) {
  .navbar {
    padding: 40px;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .featured-section {
    flex-direction: column;
    padding: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo {
    font-size: 48px;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 20px;
  }

  .featured-title {
    font-size: 32px;
  }

  .gallery-title {
    font-size: 36px;
  }

  .site-footer {
    flex-direction: column;
    gap: 32px;
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .featured-section {
    padding: 20px;
  }

  .featured-title {
    font-size: 28px;
  }

  .gallery-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 32px;
    padding: 20px;
  }

  .navbar {
    padding: 20px;
  }

  .logo {
    font-size: 36px;
  }
}


.footer {
  background-color: #ffcfcf;
  margin-top: 80px;
  padding: 40px 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 15px;
  line-height: 150%;
}

.footer-btn {
  font-size: 13px;
  margin-top: 24px;
}

.social-icon {
  width: 38px;
  height: 38px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.footer-email {
  color: #db8383;
  font-size: 20px;
}

/* Image hover effects */
.food-image,
.in-house-image {
  transition: filter 0.3s ease;
}

.food-item:hover .food-image,
.in-house-content:hover .in-house-image {
  filter: brightness(1.05);
}

/* desserts */

.handcrafted-desserts {
    padding: 2rem 4rem;
    background: #fff;
    position: relative;
}

.handcrafted-desserts .section-title {
    color: black;
}

.handcrafted-desserts .section-subtitle {
    color: #c0392b;
}

.handcrafted-desserts .signature-item {
    background: #fff;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.handcrafted-desserts .signature-tag {
    background: rgba(231, 76, 60, 0.1);
    color: #db8383
}

.handcrafted-desserts .order-button {
 display: inline-block;
    padding: 0.8rem 2rem;
    background: black;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
    border: 2px solid ;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.handcrafted-desserts .order-button:hover {
      background: transparent;
    color:  #db8383;
    transform: translateY(-2px);
}

.handcrafted-desserts .order-button:hover::before {
  transform: translateX(0);
}

.handcrafted-desserts .divider-icon {
    color: #e74c3c;
}

.handcrafted-desserts .divider-line {
    background: linear-gradient(to right, 
        transparent 0%, 
        #e74c3c 20%, 
        #e74c3c 80%, 
        transparent 100%
    );
}

.handcrafted-desserts .coffee-craft-text p {
    color: #2c1810;
}

.handcrafted-desserts .coffee-craft-text p::before,
.handcrafted-desserts .coffee-craft-text p::after {
    color: #e74c3c;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.section-title {

    font-size: 3.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #db8383;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.signature-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 8rem;
}

.signature-grid::-webkit-scrollbar {
    height: 8px;
}

.signature-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.signature-grid::-webkit-scrollbar-thumb {
    background: #ffcfcf;
    border-radius: 10px;
}

.signature-grid::-webkit-scrollbar-thumb:hover {
    background: #db8383;
}

.signature-item {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.signature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.signature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
    filter: brightness(0.95);
}

.signature-item:hover .signature-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.signature-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.signature-title {
    font-size: 1.8rem;
    color: #db8383;
    margin-bottom: 1rem;
    font-weight: 600;
}

.signature-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.signature-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.signature-price {
    font-size: 1.4rem;
    color: #db8383;
    font-weight: 600;
}

.signature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #db8383;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}


