body,
html {
  font-family: "Cormorant Garamond", serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #333;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
html {
  scrollbar-width: none;
}
h2,
h3,
h4 {
  font-family: "Montserrat", serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #123c69;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #123c69;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #ac3b61;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #ac3b61;
}

ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #123c69;
  margin-bottom: 20px;
  border: 0;
}
/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: #eee2dc;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  font-weight: 700;
  color: #ac3b61;
  display: flex;
  align-items: center;
  /* text-transform: uppercase; */
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  color: #123c69;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%);
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #eee2dc;
  border-color: #ac3b61;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #ac3b61;
}
.section-title {
  margin-bottom: 70px;
}

#features .section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #cc698b 0%, #ac3b61 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}
.btn-custom {
  font-family: "Cormorant Garamond", sans-serif;
  /* text-transform: uppercase; */
  color: #eee2dc;
  background-color: #ac3b61;
  background-image: none;
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #eee2dc;
  background-image: none;
  background-color: #ac3b61;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Tab */
#tab button {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  color: #123c69;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 2px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  margin: 9px 20px 0;
}

#tab button:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%);
  content: "";
  transition: width 0.2s;
}

#tab button:hover:after {
  width: 100%;
}

#tab .active > button,
#tab .active > button:hover,
#tab .active > button:focus {
  background-color: transparent;
}

#tab .active > button:after,
#tab .active > button:hover:after,
#tab .active > button:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: url(https://artcake-gallery.s3.us-east-1.amazonaws.com/13.jpg)
    center center no-repeat;
  background-color: #eee2dc;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.intro .overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
}
.intro h1 {
  font-family: "Cormorant Garamond", serif;
  color: #eee2dc;
  font-size: 78px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: #edc7b7;
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}
header .intro-text {
  padding-top: 250px;
  padding-bottom: 100px;
  text-align: left;
}

.intro .btn-custom {
  font-size: 22px;
  padding: 18px 35px;
}

/* Scroll offset for navbar */
#features,
#flavors,
#price,
#gallery,
#reviews,
#about,
#contact {
  scroll-margin-top: 80px;
}

/* Features Section */
#features {
  background: #f6f6f6;
  padding: 30px 0 50px 0;
}

/* Price Section */
#price {
  background: #ac3b61;
  padding: 30px 0 50px 0;
  color: rgba(255, 255, 255, 0.75);
}
#price h2 {
  color: #fff;
}
#price .section-title h2::after {
  background: rgba(255, 255, 255, 0.3);
}
#features i.fa {
  font-size: 48px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  color: #ac3b61;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#features i.fa:hover {
  color: #e85a4f;
  transform: scale(1.1);
}

.feature-svg-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

.feature-svg-icon img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

.feature-svg-icon:hover {
  transform: scale(1.1);
}

.feature-svg-icon:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%)
    hue-rotate(346deg) brightness(118%) contrast(119%) !important;
}

h3 {
  font-size: 24px;
}

#features h3 {
  transition: all 0.4s ease;
  color: #123c69;
  font-weight: 600;
  margin-bottom: 15px;
}

#features h3:hover {
  transform: translateY(-2px);
}

p {
  font-size: 17px;
}

#features p {
  transition: all 0.4s ease;
  color: #666;
  font-size: 20px;
  line-height: 30px;
}

#features .col-md-4 {
  transition: all 0.4s ease;
  padding: 20px;
}

#features .col-md-4:hover {
  transform: translateY(-5px);
}

#features .col-md-4:hover p {
  color: #333;
}

/* About Section */
#about {
  padding: 30px 0 50px 0;
  background: #fff;
}
#about .section-title {
  margin-bottom: 40px;
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about h2 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #cc698b 0%, #ac3b61 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #ac3b61;
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
#about img {
  width: 520px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about p {
  font-size: 20px;
  line-height: 30px;
  margin: 30px 0;
}
#about .about-text li {
  font-size: 20px;
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
/* Services Section */
#services {
  padding: 30px 0 50px 0;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%);
  color: #fff;
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: #fff;
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#services p {
  color: rgba(255, 255, 255, 0.75);
}

/* Override for pricing cards */
.pricing-card h3 {
  color: #123c69 !important;
  transition: all 0.4s ease;
  font-weight: 700 !important;
  margin-bottom: 15px;
}

.pricing-card h3:hover {
  color: #ac3b61;
  transform: translateY(-2px);
}
.pricing-card p {
  color: #666 !important;
  font-size: 20px;
  line-height: 30px;
}
#services .service-desc {
  margin-bottom: 40px;
}

/* Pricing Cards */
#price .row {
  display: flex;
  flex-wrap: wrap;
}
#price .col-md-4 {
  display: flex;
  flex-direction: column;
}
.pricing-card {
  background: #ffffff !important;
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: #ffffff !important;
}

.pricing-icon {
  margin-bottom: 20px;
  text-align: center;
}

/* SVG icon spacing in pricing cards */
.pricing-card > div:first-child {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-icon i {
  font-size: 36px;
  color: #ac3b61;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-block;
  margin: 0 auto;
  box-shadow: none;
}

.pricing-icon img {
  transition: all 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.pricing-icon img[src$=".svg"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  mix-blend-mode: normal !important;
}

.pricing-card:hover .pricing-icon img {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #123c69;
}

.pricing-price {
  margin-bottom: 15px;
}

.pricing-price .price {
  font-size: 24px;
  font-weight: 700;
  color: #ac3b61;
  text-shadow: none;
  font-family: "Crimson Text", serif;
  font-variant-numeric: tabular-nums;
}

.pricing-description {
  color: #666;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
  flex: 1;
}

.pricing-price-bottom {
  margin-top: 10px !important;
  padding-top: 0 !important;
  text-align: center;
}

.pricing-price-bottom .price {
  display: inline-block;
  background: #ac3b61;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(172, 59, 97, 0.3);
  border: none;
  cursor: pointer;
}

.pricing-price-bottom .price:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(172, 59, 97, 0.4);
  background: #ac3b61;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: #ac3b61;
  margin-right: 10px;
  font-size: 16px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Pricing Tables */
.pricing-table {
  margin: 15px 0;
  overflow-x: auto;
}

.cake-pricing-table,
.cupcake-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  overflow: hidden;
  font-size: 16px;
}

.cake-pricing-table th,
.cupcake-pricing-table th {
  background: #eee2dc;
  color: #123c69;
  padding: 8px 6px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-shadow: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cake-pricing-table td,
.cupcake-pricing-table td {
  padding: 8px 6px;
  text-align: center;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cake-pricing-table td:nth-child(2),
.cake-pricing-table td:nth-child(3),
.cake-pricing-table td:nth-child(4),
.cupcake-pricing-table td:nth-child(2),
.cupcake-pricing-table td:nth-child(3) {
  font-family: "Crimson Text", serif;
  font-variant-numeric: tabular-nums;
}

.cake-pricing-table td:first-child,
.cupcake-pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.price-cell {
  font-weight: 400;
  color: #ac3b61 !important;
  font-size: 15px;
  font-family: "Crimson Text", serif;
  font-variant-numeric: tabular-nums;
}

.highlighted-price {
  background: #ac3b61 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 4px;
  padding: 4px 6px !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 2px 4px rgba(172, 59, 97, 0.3);
}

.cake-pricing-table tr:hover,
.cupcake-pricing-table tr:hover {
  background: transparent;
}

/* Additional Information Sections */
.additional-info {
  margin: 15px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section {
  margin-bottom: 12px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

/* Responsive adjustments for pricing tables */
@media (max-width: 768px) {
  .pricing-card {
    padding: 15px 10px;
    margin-bottom: 15px;
    min-height: 400px;
  }

  .pricing-icon i {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .pricing-content h3 {
    font-size: 18px;
  }

  .pricing-price .price {
    font-size: 20px;
  }

  .pricing-description {
    font-size: 14px;
  }

  .additional-info {
    margin: 10px 0;
    padding: 10px;
  }

  .info-section h4 {
    font-size: 12px;
  }

  .info-section p {
    font-size: 11px;
  }

  .cake-pricing-table,
  .cupcake-pricing-table {
    font-size: 11px;
  }

  .cake-pricing-table th,
  .cupcake-pricing-table th,
  .cake-pricing-table td,
  .cupcake-pricing-table td {
    padding: 6px 3px;
  }

  .highlighted-price {
    padding: 3px 4px !important;
    font-size: 11px !important;
  }
}

/* Workshop Preview Section */
#workshop-preview {
  padding: 30px 0 50px 0;
  background: #f8f8f8;
}

.workshop-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  margin: 0;
}

.workshop-preview-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workshop-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workshop-preview-content {
  text-align: center;
}

.workshop-preview-icon {
  margin-bottom: 20px;
}

.workshop-preview-icon i {
  font-size: 60px;
  color: #ac3b61;
  background: linear-gradient(135deg, #ac3b61 0%, #cc698b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workshop-preview-content h3 {
  color: #123c69;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.workshop-preview-content p {
  color: #555;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.workshop-preview-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 30px;
}

.workshop-preview-card .btn-custom {
  color: #eee2dc;
  background-image: none;
  background-color: #ac3b61;
}

.workshop-preview-card .btn-custom:hover,
.workshop-preview-card .btn-custom:focus {
  color: #eee2dc;
  background-image: none;
  background-color: #ac3b61;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 20px;
  margin-left: 15px;
}

.feature-item i {
  color: #ac3b61;
  font-size: 16px;
}

/* Past Workshops - News/Article Style */
.past-workshops-section {
  margin: 60px 0;
}

.past-workshops-section .section-title {
  text-align: center;
  font-size: 36px;
  color: #123c69;
  margin-top: 0;
  margin-bottom: 50px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
}

.past-workshops-section .section-title::after {
  display: none;
}

.workshops-articles {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.workshop-article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid #ac3b61;
}

.workshop-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.article-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.article-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.article-date i {
  margin-right: 8px;
  color: #ac3b61;
}

.article-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.article-meta span {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.article-meta i {
  margin-right: 6px;
  color: #ac3b61;
  font-size: 16px;
}

.article-content {
  padding: 30px;
}

.article-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.article-includes {
  margin-bottom: 25px;
}

.article-includes h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.article-includes ul {
  list-style: none;
  padding: 0;
}

.article-includes li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
}

.article-includes i {
  color: #ac3b61;
  margin-right: 10px;
  font-size: 16px;
}

.article-gallery {
  padding: 30px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.article-gallery h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
  .workshops-layout {
    flex-direction: column;
    gap: 30px;
  }

  .workshops-left,
  .workshops-right {
    flex: none;
  }

  .upcoming-workshops-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .upcoming-workshops-section .section-title,
  .past-workshops-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .workshops-articles {
    padding: 0 15px;
  }

  .workshop-article {
    margin-bottom: 30px;
  }

  .article-header,
  .article-content,
  .article-gallery {
    padding: 20px;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* Workshops Page */
.workshops-page {
  min-height: 100vh;
  background: #f8f8f8;
}

/* Workshops Layout - Side by Side */
.workshops-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.workshops-left {
  flex: 2;
}

.workshops-right {
  flex: 1;
}

/* Upcoming Workshops Styles */
.upcoming-workshops-section {
  margin-bottom: 60px;
}

.upcoming-workshops-section .section-title {
  text-align: center;
  font-size: 36px;
  color: #123c69;
  margin-top: 0;
  margin-bottom: 50px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
}

.upcoming-workshops-section .section-title::after {
  display: none;
}

.upcoming-workshops-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.upcoming-workshop-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.upcoming-workshop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.upcoming-workshop-header {
  margin-bottom: 15px;
}

.upcoming-workshop-title {
  font-size: 18px;
  color: #123c69;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Montserrat", serif;
}

.upcoming-workshop-date {
  color: #ac3b61;
  font-size: 14px;
  font-weight: 500;
}

.upcoming-workshop-date i {
  margin-right: 5px;
}

.upcoming-workshop-description {
  color: #666;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.upcoming-workshop-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
  color: #888;
}

.upcoming-workshop-duration,
.upcoming-workshop-participants {
  display: flex;
  align-items: center;
}

.upcoming-workshop-duration i,
.upcoming-workshop-participants i {
  margin-right: 5px;
  color: #ac3b61;
}

.upcoming-workshop-price {
  font-size: 18px;
  font-weight: 700;
  color: #ac3b61;
  text-align: center;
  margin-bottom: 15px;
  font-family: "Montserrat", serif;
}

.btn-upcoming {
  background: linear-gradient(135deg, #ac3b61 0%, #cc698b 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btn-upcoming:hover {
  background: linear-gradient(135deg, #cc698b 0%, #ac3b61 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(172, 59, 97, 0.3);
}

.workshops-hero {
  color: #333;
  padding: 30px 0 0px;
  text-align: center;
}

.workshops-hero-content h1 {
  color: #123c69;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
}

.workshops-hero-content p {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
}

/* Workshops Section */
#workshops {
  padding: 30px 0 50px 0;
  background: #fff;
}

/* Custom Workshop Section */
.custom-workshop-section {
  margin-bottom: 60px;
}

.custom-workshop-card {
  background: linear-gradient(135deg, #ac3b61 0%, #cc698b 100%);
  border-radius: 15px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(172, 59, 97, 0.2);
}

.custom-workshop-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.custom-workshop-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 25px;
}

.custom-workshop-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.custom-workshop-features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.custom-workshop-features li i {
  color: #ac3b61;
  margin-right: 10px;
  font-size: 16px;
}

/* Workshops Grid */
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.workshop-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workshop-header {
  background: linear-gradient(135deg, #123c69 0%, #1e5a8a 100%);
  color: #fff;
  padding: 25px;
  text-align: center;
}

.workshop-header h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.workshop-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.workshop-meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.workshop-meta i {
  margin-right: 5px;
  font-size: 16px;
}

.workshop-price {
  font-size: 20px;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.workshop-content {
  padding: 25px;
}

.workshop-description {
  color: #333;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.workshop-includes h4 {
  color: #123c69;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.workshop-includes ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.workshop-includes li {
  color: #555;
  font-size: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.workshop-includes li i {
  color: #ac3b61;
  margin-right: 8px;
  font-size: 14px;
}

.btn-workshop {
  background: linear-gradient(135deg, #ac3b61 0%, #cc698b 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-workshop:hover {
  background: linear-gradient(135deg, #cc698b 0%, #ac3b61 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(172, 59, 97, 0.3);
}

/* Workshop Photos */
.workshop-photos {
  padding: 25px;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.workshop-photos h4 {
  color: #123c69;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.workshop-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover .workshop-photo {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .workshop-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 15px;
  }

  .workshop-preview-card {
    padding: 25px;
  }

  .workshop-preview-content h3 {
    font-size: 24px;
  }

  .workshop-preview-features {
    flex-direction: column;
    gap: 5px;
  }

  .workshops-hero-content h1 {
    font-size: 2rem;
  }

  .workshops-hero-content p {
    font-size: 18px;
  }

  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-workshop-card {
    padding: 25px;
  }

  .custom-workshop-content h3 {
    font-size: 24px;
  }

  .workshop-meta {
    gap: 15px;
  }

  .workshop-meta span {
    font-size: 13px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .workshop-header {
    padding: 20px;
  }

  .workshop-content {
    padding: 20px;
  }

  .workshop-photos {
    padding: 20px;
  }
}

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

  .workshop-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* Portfolio Section */
#portfolio {
  padding: 100px 0;
}
.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  /* background: linear-gradient(to right, #ac3b61 0%, #cc698b 100%); */
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.hover-bg:hover .hover-text {
  opacity: 0;
}
/* Testimonials Section */
#testimonials {
  padding: 30px 0 50px 0;
  background: #f6f6f6;
}

/* Reviews Section */
#reviews {
  padding: 30px 0 50px 0;
  background: #f6f6f6;
}
#reviews .reviews-container {
  column-count: 2;
  column-gap: 10px;
  margin: 0;
  padding: 0;
}
#reviews .review-photo {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  text-align: center;
  width: 100%;
  line-height: 0;
  font-size: 0;
  display: inline-block;
  break-inside: avoid;
  page-break-inside: avoid;
}
#reviews .review-photo:last-child {
  margin-bottom: 0 !important;
}
#reviews .review-photo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  outline: 0;
}
#reviews .review-photo img:hover {
  transform: none;
  box-shadow: none;
}
#testimonials i {
  color: #e6e6e6;
  font-size: 32px;
  margin-bottom: 20px;
}
.testimonial {
  position: relative;
  padding: 20px;
}
.testimonial-image {
  float: left;
  margin-right: 15px;
}
.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.testimonial-content {
  position: relative;
  overflow: hidden;
}
.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}
/* Flavors Section */
#flavors {
  padding: 30px 0 50px 0;
}
#flavors h4 {
  font-weight: 400;
  color: #123c69;
}

/* Gallery Section */
#gallery {
  padding: 30px 0 50px 0;
}

#flavors .thumbnail {
  background: transparent;
  border: none;
}
#flavors .team-img {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
#flavors .team-img:hover {
  transform: scale(1.05);
}

/* Image Modal Styles */
.image-modal-overlay {
  animation: fadeIn 0.3s ease;
}

.image-modal-content {
  animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Contact Section */
#contact {
  padding: 30px 0 20px 0;
  background: #123c69;
  color: rgba(255, 255, 255, 0.75);
}
#contact .section-title {
  margin-bottom: 20px;
}
#contact .section-title p {
  font-size: 20px;
  margin-top: 25px;
}
#contact h2 {
  color: #fff;
  margin-top: 50px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: #ac3b61;
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 0;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: #ac3b61;
  border: 2px solid #ac3b61;
  color: #fff;
}
#contact .btn-custom:hover {
  color: #fff;
  background: #ac3b61;
  border: 2px solid #ac3b61;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  background-color: #eee2dc;
  background-image: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: auto;
  min-height: 48px;
}
#contact .form-control:focus {
  border-color: #ac3b61;
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(172, 59, 97, 0.1);
  box-shadow: 0 0 0 3px rgba(172, 59, 97, 0.1);
  background-color: #eee2dc;
}
#contact .form-control::-webkit-input-placeholder {
  color: #ac3b61;
}
#contact .form-control:-moz-placeholder {
  color: #ac3b61;
}
#contact .form-control::-moz-placeholder {
  color: #ac3b61;
}
#contact .form-control:-ms-input-placeholder {
  color: #ac3b61;
}
#contact select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  height: 48px !important;
  line-height: 24px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  box-sizing: border-box;
  vertical-align: middle;
}
#contact select.form-control:invalid {
  color: #ac3b61;
}
#contact select.form-control option {
  color: #333;
  background-color: #eee2dc;
  font-weight: 600;
  font-size: 18px;
}
#contact select.form-control option[value=""] {
  color: #ac3b61;
  font-weight: 600;
  font-size: 18px;
}
#contact .form-control-checkbox {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  background-color: #eee2dc !important;
  background-image: none !important;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  accent-color: #ac3b61;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  position: relative;
}
#contact .form-control-checkbox:checked {
  background-color: #ac3b61 !important;
  border-color: #ac3b61 !important;
}
#contact .form-control-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eee2dc;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
#contact .form-control-checkbox:hover {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}
#contact .form-control-checkbox:focus {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  outline: none !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}
.contact-info {
  margin-top: -20px;
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa,
#contact .contact-item i.fas {
  margin-right: 15px;
}
#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 20px;
  text-align: left;
}
#contact .social ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
#contact .social ul li {
  display: inline-block;
  margin: 0;
}
#contact .social i.fa,
#contact .social i.fab {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover,
#contact .social i.fab:hover {
  color: #ac3b61;
  background: #fff;
}
/* Footer Section*/
#footer {
  background: #123c69;
  padding: 5px 0 20px 0;
  margin-top: 0;
}
#footer p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 14px;
}
#footer a {
  color: #ac3b61;
}
#footer a:hover {
  border-bottom: 2px solid #ac3b61;
}

/* Contact Form Modal */
.contact-modal-overlay {
  animation: fadeIn 0.3s ease;
}

.contact-modal-content {
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-modal-content .form-control {
  background-color: #eee2dc;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #333;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
}

.contact-modal-content .form-control:focus {
  border-color: #ac3b61;
  background-color: #eee2dc;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(172, 59, 97, 0.1);
}

.contact-modal-content .form-control::-webkit-input-placeholder {
  color: #ac3b61;
}

.contact-modal-content .form-control:-moz-placeholder {
  color: #ac3b61;
}

.contact-modal-content .form-control::-moz-placeholder {
  color: #ac3b61;
}

.contact-modal-content .form-control:-ms-input-placeholder {
  color: #ac3b61;
}

.contact-modal-content select.form-control option[disabled] {
  color: #ac3b61;
}

.contact-modal-content select.form-control:invalid {
  color: #ac3b61;
}

.contact-modal-content select.form-control option:not([disabled]) {
  color: #333;
}

.contact-modal-content .section-title h2::after {
  display: none;
}

@media (max-width: 768px) {
  #about img {
    margin: 50px 0;
  }
}
