/*
Theme Name: JeffreyGrounds Photography
Description: A custom WordPress theme for JeffreyGrounds Photography wedding photography business.
Version: 1.0
Author: JeffreyGrounds Photography
*/

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  overflow-x: hidden;
}

/* CSS-based scaling container - scales like an image editor */
.canvas-container {
  width: 100vw;
  min-height: 100vh;
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
}

.canvas {
  position: relative;
  width: 100vw;
  min-height: 100vh;
}

.home {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100vw;
  min-height: 100vh;
}

/* Navbar - Standard Responsive Design */
.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  gap: 60px;
  min-height: 100px;
}

.nav-item-left {
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  gap: 40px;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  font-size: 1rem;
  color: black;
}

.nav-item-left a {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.nav-item-left a:hover {
  color: #b39873;
}

.logo {
  height: 60px;
  position: relative;
  flex-shrink: 0;
  width: 150px;
}

.logo a {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.logo img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: contain;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.nav-item-right {
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  flex-shrink: 0;
  font-size: 1rem;
  color: black;
  white-space: nowrap;
}

.nav-item-right a {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.nav-item-right a:hover {
  color: #b39873;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
  left: 0;
}

.hamburger-line:nth-child(1) {
  top: 20%;
}

.hamburger-line:nth-child(2) {
  top: 50%;
}

.hamburger-line:nth-child(3) {
  top: 80%;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-logo {
  height: 50px;
  width: 120px;
}

.mobile-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.mobile-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #b39873;
}

/* Navbar Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
    gap: 40px;
    min-height: 80px;
  }
  
  .nav-item-left {
    gap: 25px;
    font-size: 0.9rem;
  }
  
  .nav-item-right {
    gap: 20px;
    font-size: 0.9rem;
  }
  
  .logo {
    height: 50px;
    width: 120px;
  }
}

/* Mobile Navigation - 600px and below */
@media (max-width: 600px) {
  .navbar {
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    position: relative;
  }
  
  /* Hide desktop navigation */
  .nav-item-left,
  .nav-item-right {
    display: none;
  }
  
  /* Show hamburger menu on the right */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  
  /* Center logo */
  .logo {
    height: 50px;
    width: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 15px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    min-height: 70px;
  }
  
  .nav-item-left {
    gap: 20px;
    font-size: 0.8rem;
    order: 1;
    flex: 1;
    justify-content: center;
  }
  
  .logo {
    height: 40px;
    width: 100px;
    order: 2;
  }
  
  .nav-item-right {
    gap: 15px;
    font-size: 0.8rem;
    order: 3;
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    position: relative;
  }
  
  /* Hide desktop navigation */
  .nav-item-left,
  .nav-item-right {
    display: none;
  }
  
  /* Show hamburger menu on the right */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  
  /* Center logo */
  .logo {
    height: 50px;
    width: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 52.32vw; /* 792px relative to 1513.94px base width */
  padding: 0 3.30vw 6.61vw 0; /* 0 50px 100px 0 relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.hero img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  height: 3.90vw; /* 59px relative to 1513.94px base width */
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  font-size: 3.17vw; /* 48px relative to 1513.94px base width */
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  width: 48.22vw; /* 729.933px relative to 1513.94px base width */
  line-height: normal;
}

/* Intro Section */
.intro-section {
  background-color: #b9b1a7;
  height: 52.86vw; /* 800px relative to 1513.94px base width */
  min-height: 46.25vw; /* 700px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.intro-title {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  height: 2.91vw; /* 44px relative to 1513.94px base width */
  line-height: normal;
  left: 73.12vw; /* 1106.91px relative to 1513.94px base width */
  font-size: 2.38vw; /* 36px relative to 1513.94px base width */
  color: black;
  text-align: center;
  top: 1.92vw; /* 29px relative to 1513.94px base width */
  transform: translateX(-100%);
  width: 47.10vw; /* 712.912px relative to 1513.94px base width */
}

.intro-subtitle {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: normal;
  left: 4.29vw; /* 65px relative to 1513.94px base width */
  font-size: 2.25vw; /* 34px relative to 1513.94px base width */
  color: black;
  white-space: nowrap;
  top: 10.37vw; /* 157px relative to 1513.94px base width */
  text-align: center;
}

.intro-text {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  height: 23.79vw; /* 360px relative to 1513.94px base width */
  line-height: normal;
  left: 2.64vw; /* 40px relative to 1513.94px base width */
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  top: 15.93vw; /* 241px relative to 1513.94px base width */
  width: 51.41vw; /* 778px relative to 1513.94px base width */
}

.intro-text p {
  margin-bottom: 0;
}

.intro-image {
  position: absolute;
  height: 52.26vw; /* 791px relative to 1513.94px base width */
  left: 57.74vw; /* 874px relative to 1513.94px base width */
  top: 7.14vw; /* 108px relative to 1513.94px base width */
  width: 35.52vw; /* 537.688px relative to 1513.94px base width */
}

.intro-image img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.contact-button {
  position: absolute;
  height: 3.55vw; /* 53.785px relative to 1513.94px base width */
  left: 18.37vw; /* 278px relative to 1513.94px base width */
  top: 42.55vw; /* 644px relative to 1513.94px base width */
  width: 15.28vw; /* 231.296px relative to 1513.94px base width */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
}

.contact-button-bg {
  position: absolute;
  background-color: white;
  border: 0.33vw solid #b39873; /* 5px relative to 1513.94px base width */
  inset: 0;
}

.contact-button-text {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  inset: 0;
  line-height: normal;
  color: #b39873;
  font-size: 1.59vw; /* 24px relative to 1513.94px base width */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Timeless Memories Section */
.timeless-section {
  flex-basis: 0;
  flex-grow: 1;
  min-height: 58.15vw; /* 880.239px relative to 1513.94px base width */
  min-width: 1px;
  position: relative;
  flex-shrink: 0;
  width: 100vw;
}

.timeless-bg {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.timeless-title {
  position: absolute;
  display: flex;
  gap: 0.66vw; /* 10px relative to 1513.94px base width */
  height: 2.71vw; /* 41px relative to 1513.94px base width */
  align-items: center;
  justify-content: center;
  left: 53.85vw; /* 815px relative to 1513.94px base width */
  top: 10.11vw; /* 153px relative to 1513.94px base width */
  width: 39.56vw; /* 598.766px relative to 1513.94px base width */
}

.timeless-title p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 2.25vw; /* 34px relative to 1513.94px base width */
  color: black;
  white-space: nowrap;
}

.timeless-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 12.42vw; /* 188px relative to 1513.94px base width */
  align-items: flex-start;
  left: 53.85vw; /* 815px relative to 1513.94px base width */
  top: 14.73vw; /* 223px relative to 1513.94px base width */
  width: 41.81vw; /* 632.809px relative to 1513.94px base width */
}

.timeless-text div {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  width: 100%;
  white-space: pre-wrap;
}

.timeless-text p {
  margin-bottom: 0;
}

.timeless-text p:last-child {
  margin-bottom: 0;
}

/* Timeless Images */
.timeless-image-1 {
  position: absolute;
  inset: -6.59% 53.91% 69.21% 8.85%;
}

.timeless-image-1-bg {
  position: absolute;
  inset: -6.13% 28.18% 26.13% -1.88%; /* Moved down by 200px while maintaining dimensions */
}

.timeless-image-1 img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.timeless-image-1-couple {
  position: absolute;
  height: 20.35vw; /* Same height as original timeless-image-3 */
  left: 2.77vw; /* Same left position as original timeless-image-3 */
  top: 18.90vw; /* Same top position as original timeless-image-3 */
  width: 31.82vw; /* Same width as original timeless-image-3 */
}

.timeless-image-1-couple img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.timeless-image-2 {
  position: absolute;
  inset: 52.26% 1.12% 5.03% 52.58%;
}

.timeless-image-2-bg {
  position: absolute;
  inset: 52.71% 1.39% 5.59% 52.84%;
  overflow: hidden;
  pointer-events: none;
}

.timeless-image-2 img {
  position: absolute;
  height: 161.56%;
  left: -6.36%;
  max-width: none;
  top: -28.91%;
  width: 112.72%;
}

.timeless-image-2-border {
  position: absolute;
  inset: 52.26% 1.12% 5.03% 52.58%;
}

.timeless-image-2-border div {
  position: absolute;
  background-color: rgba(217, 217, 217, 0);
  border: 0.20vw solid #b39873; /* 3px relative to 1513.94px base width */
  inset: 0;
}

.timeless-contact-button {
  position: absolute;
  height: 3.55vw; /* 53.785px relative to 1513.94px base width */
  left: 20.68vw; /* 313px relative to 1513.94px base width */
  top: 43.61vw; /* 660px relative to 1513.94px base width */
  width: 15.28vw; /* 231.296px relative to 1513.94px base width */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.timeless-contact-button:hover {
  transform: translateY(-2px);
}

.timeless-contact-button-bg {
  position: absolute;
  background-color: white;
  border: 0.33vw solid #b39873; /* 5px relative to 1513.94px base width */
  inset: 0;
}

.timeless-contact-button-text {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  inset: 0;
  line-height: normal;
  color: #b39873;
  font-size: 1.59vw; /* 24px relative to 1513.94px base width */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* We Know Weddings Section */
.we-know-section {
  background-color: rgba(179, 152, 115, 0.3);
  height: 128.95vw; /* 1952px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.we-know-bg {
  position: absolute;
  height: 59.70vw; /* 903.666px relative to 1513.94px base width */
  left: 0;
  opacity: 0.4;
  top: 28.26vw; /* 427.76px relative to 1513.94px base width */
  width: 100vw;
}

.we-know-bg img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Testimonial 1 */
.testimonial-1 {
  position: absolute;
  height: 24.45vw; /* 370px relative to 1513.94px base width */
  left: 2.71vw; /* 41px relative to 1513.94px base width */
  top: 0.71vw; /* 10.76px relative to 1513.94px base width */
  width: 35.75vw; /* 541px relative to 1513.94px base width */
}

.testimonial-1-bg {
  position: absolute;
  background-color: #f3f2e9;
  inset: 0;
}

.testimonial-1-content {
  position: absolute;
  inset: 7.3% 4.81% 6.49% 4.62%;
}

.testimonial-1-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  width: 100%;
}

.testimonial-1-text p {
  margin-bottom: 0;
}

/* Testimonial 2 */
.testimonial-2 {
  position: absolute;
  height: 25.18vw; /* 381px relative to 1513.94px base width */
  left: 20.62vw; /* 312px relative to 1513.94px base width */
  top: 22.98vw; /* 347.76px relative to 1513.94px base width */
  width: 35.75vw; /* 541px relative to 1513.94px base width */
}

.testimonial-2-bg {
  position: absolute;
  background-color: #b9b1a7;
  inset: 0;
}

.testimonial-2-content {
  position: absolute;
  inset: 14.7% 4.81% 11.02% 4.62%;
}

.testimonial-2-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  width: 100%;
}

/* We Know Weddings Content */
.we-know-content {
  position: absolute;
  height: 23.26vw; /* 352px relative to 1513.94px base width */
  left: 2.71vw; /* 41px relative to 1513.94px base width */
  top: 56.10vw; /* 848.76px relative to 1513.94px base width */
  width: 39.85vw; /* 603px relative to 1513.94px base width */
}

.we-know-content-bg {
  position: absolute;
  inset: 0;
}

.we-know-title {
  position: absolute;
  bottom: 77.92%;
  display: flex;
  gap: 0.66vw; /* 10px relative to 1513.94px base width */
  align-items: center;
  justify-content: center;
  left: 3.32%;
  right: 36.38%;
  top: 0;
}

.we-know-title p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 2.25vw; /* 34px relative to 1513.94px base width */
  color: black;
  white-space: nowrap;
}

.we-know-title .italic {
  font-style: italic;
}

.we-know-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 22.08%;
}

.we-know-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  width: 100%;
  white-space: pre-wrap;
}

/* Bride Field Image */
.bride-field-image {
  position: absolute;
  height: 48.07vw; /* 727.341px relative to 1513.94px base width */
  left: 63.18vw; /* 956px relative to 1513.94px base width */
  top: 5.47vw; /* 82.76px relative to 1513.94px base width */
  width: 33.48vw; /* 506.648px relative to 1513.94px base width */
}

.bride-field-image img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* We Love Weddings Title */
.we-love-title {
  position: absolute;
  display: flex;
  gap: 0.66vw; /* 10px relative to 1513.94px base width */
  align-items: center;
  justify-content: center;
  left: 50.05vw; /* 757px relative to 1513.94px base width */
  top: 72.58%;
  right: 8.16%;
  bottom: 25.55%;
}

.we-love-title p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 2.25vw; /* 34px relative to 1513.94px base width */
  color: black;
  white-space: nowrap;
}

.we-love-title .italic {
  font-style: italic;
}

/* We Love Weddings Text */
.we-love-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 11.10vw; /* 168px relative to 1513.94px base width */
  align-items: flex-start;
  left: 50.05vw; /* 757px relative to 1513.94px base width */
  top: 97.80vw; /* 1479.76px relative to 1513.94px base width */
  width: 46.66vw; /* 706px relative to 1513.94px base width */
}

.we-love-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 1.32vw; /* 20px relative to 1513.94px base width */
  color: black;
  width: 100%;
}

/* We Love Wedding Image */
.we-love-image {
  position: absolute;
  height: 46.00vw; /* 696px relative to 1513.94px base width */
  left: 2.71vw; /* 41px relative to 1513.94px base width */
  top: 83.00vw; /* 1255.76px relative to 1513.94px base width */
  width: 41.69vw; /* 630.807px relative to 1513.94px base width */
}

.we-love-image img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #b9b1a7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.30vw 0; /* 50px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.testimonial-image {
  height: 11.90vw; /* 180px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 56.32vw; /* 852.09px relative to 1513.94px base width */
}

.testimonial-image img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.testimonial-chevron {
  position: absolute;
  bottom: 1.32vw; /* 20px relative to 1513.94px base width */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.66vw solid transparent; /* 10px relative to 1513.94px base width */
  border-right: 0.66vw solid transparent; /* 10px relative to 1513.94px base width */
  border-top: 0.99vw solid #b39873; /* 15px relative to 1513.94px base width */
  z-index: 10;
}

/* Crafting Your Dream Day Section */
.crafting-section {
  background-color: white;
  height: 129.80vw; /* 1964px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.crafting-bg {
  position: absolute;
  background-color: #eeeeee;
  border: 0 solid black;
  height: 44.46vw; /* 672.848px relative to 1513.94px base width */
  left: 3.04vw; /* 46px relative to 1513.94px base width */
  top: 2.64vw; /* 40px relative to 1513.94px base width */
  width: 44.10vw; /* 667.339px relative to 1513.94px base width */
}

.crafting-title {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  height: 2.51vw; /* 38px relative to 1513.94px base width */
  line-height: normal;
  left: 6.41vw; /* 97px relative to 1513.94px base width */
  font-size: 2.11vw; /* 32px relative to 1513.94px base width */
  color: black;
  top: 8.38vw; /* 126.76px relative to 1513.94px base width */
  width: 29.71vw; /* 449.575px relative to 1513.94px base width */
}

.crafting-text {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  left: 3.04vw; /* 46px relative to 1513.94px base width */
  top: 11.95%;
  right: 54.29%;
  bottom: 76.08%;
  line-height: normal;
  font-size: 1.19vw; /* 18px relative to 1513.94px base width */
  color: black;
}

.crafting-text p {
  margin-bottom: 0;
}

.crafting-text p:last-child {
  white-space: pre-wrap;
}

/* Crafting Images */
.crafting-image-1 {
  position: absolute;
  height: 54.86vw; /* 830px relative to 1513.94px base width */
  left: 6.41vw; /* 97px relative to 1513.94px base width */
  top: 34.09vw; /* 515.76px relative to 1513.94px base width */
  width: 39.64vw; /* 599.767px relative to 1513.94px base width */
}

.crafting-image-1 img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.crafting-image-2 {
  position: absolute;
  height: 29.01vw; /* 439px relative to 1513.94px base width */
  left: 56.51vw; /* 855px relative to 1513.94px base width */
  top: -2.20vw; /* -33.24px relative to 1513.94px base width */
  width: 41.90vw; /* 634px relative to 1513.94px base width */
}

.crafting-image-2 img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.crafting-image-3 {
  position: absolute;
  height: 61.80vw; /* 935px relative to 1513.94px base width */
  left: 56.51vw; /* 855px relative to 1513.94px base width */
  top: 35.67vw; /* 539.76px relative to 1513.94px base width */
  width: 41.90vw; /* 634px relative to 1513.94px base width */
}

.crafting-image-3 img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.crafting-image-4 {
  position: absolute;
  height: 28.88vw; /* 437px relative to 1513.94px base width */
  left: 47.13vw; /* 713px relative to 1513.94px base width */
  top: 94.10vw; /* 1423.76px relative to 1513.94px base width */
  width: 47.52vw; /* 718.919px relative to 1513.94px base width */
}

.crafting-image-4 img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Our Goal Section */
.our-goal-bg {
  position: absolute;
  top: 81.1%;
  right: 68.76%;
  bottom: 6.58%;
  left: 1.45%;
}

.our-goal-bg img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.our-goal-title {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  top: 81.68%;
  right: 70.65%;
  bottom: 15.27%;
  left: 4.96%;
  line-height: normal;
  font-size: 4.23vw; /* 64px relative to 1513.94px base width */
  color: black;
  z-index: 2; /* Ensure it's above the border */
}

.our-goal-text {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  top: 84.29%;
  right: 46%;
  bottom: 8.43%;
  left: 13.11%;
  line-height: normal;
  font-size: 1.19vw; /* 18px relative to 1513.94px base width */
  color: black;
  z-index: 2; /* Ensure it's above the border */
  display: flex;
  align-items: flex-start;
}

.our-goal-text p {
  margin-bottom: 0;
}

.our-goal-border {
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  border: 0.13vw solid rgba(179, 152, 115, 0.3); /* 2px relative to 1513.94px base width */
  top: 80%; /* Start higher to overlap underneath the title */
  right: 43.52%;
  bottom: 8%; /* End higher to better frame the content */
  left: 26.7%;
  z-index: 1; /* Ensure it's behind the text */
}

.crafting-decoration {
  position: absolute;
  top: 10.94%;
  right: 53.63%;
  bottom: 76.49%;
  left: 3.77%;
}

.crafting-decoration img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

/* Final Image Section */
.final-image-section {
  height: 60.40vw; /* 914px relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100vw;
}

.final-image-section img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Footer - Standard Responsive Design */
.footer {
  background-color: #f3f2e9;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.footer-logo {
  height: 80px;
  position: relative;
  flex-shrink: 0;
  width: 180px;
}

.footer-logo img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: contain;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  position: relative;
  flex-shrink: 0;
  width: 200px;
}

.social-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.social-icon img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.social-icon.x-logo {
  width: 24px;
}

/* Page Hero Section */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 52.32vw; /* 792px relative to 1513.94px base width */
  padding: 0 3.30vw 6.61vw 0; /* 0 50px 100px 0 relative to 1513.94px base width */
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  height: 3.90vw; /* 59px relative to 1513.94px base width */
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  font-size: 3.17vw; /* 48px relative to 1513.94px base width */
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  width: 48.22vw; /* 729.933px relative to 1513.94px base width */
  line-height: normal;
  z-index: 2;
}

.page-hero-text p {
  margin: 0;
}

/* Page Content Styles */
.page-content {
  background-color: white;
  min-height: 50vh;
  padding: 2rem 0;
  width: 100%;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.page-content-area {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.page-content-area h1,
.page-content-area h2,
.page-content-area h3,
.page-content-area h4,
.page-content-area h5,
.page-content-area h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.page-content-area p {
  margin-bottom: 1rem;
}

.page-content-area a {
  color: #b39873;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-content-area a:hover {
  color: #8a6f4a;
}

/* Blog/Index Styles */
.blog-posts {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-post {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-post-thumbnail {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.blog-post-thumbnail:hover img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-header {
  margin-bottom: 1rem;
}

.blog-post-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.blog-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: #b39873;
}

.blog-post-meta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-post-date {
  margin-right: 1rem;
}

.blog-post-categories a {
  color: #b39873;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-categories a:hover {
  color: #8a6f4a;
}

.blog-post-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.blog-post-footer {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.read-more-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #b39873;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #8a6f4a;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  border: 2px solid #b39873;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background-color: #b39873;
  color: white;
}

.blog-pagination .page-numbers.dots {
  border: none;
  color: #666;
}

.blog-pagination .page-numbers.dots:hover {
  background-color: transparent;
  color: #666;
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 3rem 1rem;
}

.no-posts-found p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.back-to-home-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #b39873;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
  border: 2px solid #b39873;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-to-home-link:hover {
  background-color: #b39873;
  color: white;
}

/* Mobile Layout Reset - 500px and below */
@media (max-width: 500px) {
  /* Global paragraph styling for mobile - match .page-content-area */
  p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
  }
  /* Content sections become simple blocks - exclude navbar, footer, hero, and our-goal elements */
  .intro-section,
  .timeless-section,
  .we-know-section,
  .testimonial-section,
  .crafting-section,
  .final-image-section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Reset ALL child elements to static positioning - exclude navbar, footer, hero, and our-goal elements */
  .intro-section *,
  .timeless-section *,
  .we-know-section *,
  .testimonial-section *,
  .testimonial-section *,
  .crafting-section *,
  .final-image-section * {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0.5rem 0;
    font-size: 1rem !important; /* Override scaling font sizes */
  }
  
  /* Our Goal section mobile - use static positioning to flow naturally */
  .our-goal-bg,
  .our-goal-title,
  .our-goal-text,
  .our-goal-border,
  .crafting-decoration {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 1rem 0 !important;
    padding: 0 1rem !important;
  }
  
  .our-goal-bg *,
  .our-goal-title *,
  .our-goal-text *,
  .our-goal-border *,
  .crafting-decoration * {
    position: static !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .our-goal-title {
    font-size: 2rem !important;
    text-align: left !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }
  
  .our-goal-text {
    font-size: 1rem !important;
    text-align: left !important;
    line-height: 1.5 !important;
    border: 2px solid #b39873 !important;
    padding: 1rem !important;
    margin: 0 0 1rem 0 !important;
  }
  
  .our-goal-bg {
    display: none !important;
  }
  
  .our-goal-border {
    display: none !important;
  }
  
  .crafting-decoration {
    display: none !important;
  }
  
  /* Fix crafting images for mobile - full viewport width */
  .crafting-image-1,
  .crafting-image-2,
  .crafting-image-3,
  .crafting-image-4 {
    position: static !important;
    width: 100vw !important;
    height: 350px !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .crafting-image-1 img,
  .crafting-image-2 img,
  .crafting-image-3 img,
  .crafting-image-4 img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Fix final-image-section for mobile - full viewport width */
  .final-image-section {
    position: static !important;
    width: 100vw !important;
    height: 350px !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
  }
  
  .final-image-section img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Fix contact buttons for mobile */
  .contact-button,
  .timeless-contact-button {
    position: relative !important;
    width: 200px !important;
    height: 50px !important;
    margin: 1rem 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
  }
  
  .contact-button:hover,
  .timeless-contact-button:hover {
    transform: translateY(-2px) !important;
  }
  
  .contact-button-bg,
  .timeless-contact-button-bg {
    position: absolute !important;
    inset: 0 !important;
    background-color: white !important;
    border: 2px solid #b39873 !important;
  }
  
  .contact-button-text,
  .timeless-contact-button-text {
    position: relative !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #b39873 !important;
    font-size: 1rem !important;
    z-index: 1 !important;
  }
  
  /* Fix timeless section for mobile - create proper stacked layout */
  .timeless-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: auto !important;
    margin-top: 0 !important;
  }
  
  .timeless-bg {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: 50% 50% !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    display: block !important;
  }
  
  .timeless-title {
    position: static !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem !important;
  }
  
  .timeless-title p {
    font-size: 2rem !important;
    white-space: normal !important;
  }
  
  .timeless-text {
    position: static !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 600px !important;
    padding: 0 1rem !important;
  }
  
  .timeless-text div {
    font-size: 1rem !important;
    white-space: normal !important;
  }
  
  .timeless-image-1,
  .timeless-image-2 {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 1rem 0 !important;
  }
  
  .timeless-image-1-bg,
  .timeless-image-2-bg {
    position: static !important;
    width: 100% !important;
    height: 250px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  
  .timeless-image-1-couple {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    margin-top: 1rem !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  
  .timeless-image-2-border {
    display: none !important;
  }
  
  /* Fix we-know section for mobile */
  .we-know-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    gap: 0 !important;
    min-height: auto !important;
  }
  
  .we-know-bg {
    position: static !important;
    opacity: 0.1 !important;
    width: 100% !important;
    height: 200px !important;
    order: 3; /* Place after we-know-content (order: 2) and before bride-field-image (order: 4) */
  }
  
  .testimonial-1,
  .testimonial-2 {
    position: static !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 1rem 0 !important;
    padding: 0 1rem !important;
    order: 1; /* Place first in the mobile layout */
  }
  
  
  .we-know-content {
    position: static !important;
    width: 100% !important;
    max-width: 600px !important;
    text-align: center !important;
    padding: 0 1rem !important;
    order: 2; /* Place after testimonials (order: 1) and before we-know-bg (order: 3) */
  }
  
  .we-know-title {
    position: static !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem !important;
  }
  
  .we-know-title p {
    font-size: 2rem !important;
    white-space: normal !important;
  }
  
  .we-know-text {
    position: static !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }
  
  .we-know-text p {
    white-space: normal !important;
  }
  
  .bride-field-image,
  .we-love-image {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 1rem 0 !important;
  }
  
  .bride-field-image {
    order: 4; /* Place after we-know-bg (order: 3) */
  }
  
  .we-love-title {
    position: static !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 1rem !important;
  }
  
  .we-love-title p {
    font-size: 2rem !important;
    white-space: normal !important;
    margin-top: 0 !important;
  }
  
  .we-love-text {
    position: static !important;
    width: 100% !important;
    max-width: 600px !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }
  
  .we-love-text p {
    white-space: normal !important;
  }
  
  /* Fix testimonial chevron for mobile */
  .testimonial-chevron {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 10px solid transparent !important;
    border-right: 10px solid transparent !important;
    border-top: 15px solid #b39873 !important;
    margin: 1rem auto !important;
    z-index: 10 !important;
  }
  
  /* Page hero responsive styles */
  .page-hero {
    min-height: 30vh !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
  }
  
  .page-hero-text {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    text-align: center !important;
    font-size: 2rem !important;
  }
  
  .page-hero-text p {
    font-size: 2rem !important;
  }
  
  /* Blog responsive styles */
  .blog-posts {
    gap: 1.5rem !important;
  }
  
  .blog-post {
    margin-bottom: 1rem !important;
  }
  
  .blog-post-thumbnail {
    height: 200px !important;
  }
  
  .blog-post-content {
    padding: 1rem !important;
  }
  
  .blog-post-title {
    font-size: 1.25rem !important;
  }
  
  .blog-post-meta {
    font-size: 0.8rem !important;
  }
  
  .blog-post-excerpt {
    font-size: 0.9rem !important;
  }
  
  .blog-pagination .page-numbers {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
    margin: 0 0.1rem !important;
  }
  
  /* Package pricing responsive styles */
  .columns-pricing {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 0.5rem !important;
  }
  
  .card-package-pricing {
    margin: 1rem 0 !important;
    padding: 1.5rem !important;
  }
  
  .package-title,
  .wp-block-heading.has-text-align-center.package-title,
  .page-content-area .package-title,
  .page-content-area .wp-block-heading.has-text-align-center.package-title {
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
  }
  
  .card-package-pricing .pricetag {
    font-size: 2rem !important;
    margin: 0 0 1.5rem 0 !important;
  }
  
  .card-package-pricing li {
    font-size: 0.9rem !important;
    padding: 0.4rem 0 !important;
  }
  
  .title-package {
    font-size: 2rem !important;
    margin: 2rem 0 1rem 0 !important;
    padding: 0 0.5rem !important;
  }
  
  .columns-pricing h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
}

/* Package Pricing Card Styles */
.card-package-pricing {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(179, 152, 115, 0.1);
}

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

.card-package-pricing.card-starred {
  border: 2px solid #b39873;
  box-shadow: 0 6px 25px rgba(179, 152, 115, 0.2);
}

.card-package-pricing.card-starred:hover {
  box-shadow: 0 10px 35px rgba(179, 152, 115, 0.3);
}

.card-package-pricing .icon-star {
  position: absolute;
  top: -15px;
  right: 20px;
  z-index: 10;
}

.card-package-pricing .icon-star img {
  width: 30px !important;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.package-title,
.wp-block-heading.has-text-align-center.package-title,
.page-content-area .package-title,
.page-content-area .wp-block-heading.has-text-align-center.package-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  margin-top: 3rem !important;
  margin-bottom: 0 !important;
  text-align: center;
}

.card-package-pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.card-package-pricing li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(179, 152, 115, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.card-package-pricing li:last-child {
  border-bottom: none;
}

.card-package-pricing li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b39873;
  font-weight: 700;
  font-size: 1.1rem;
}

.card-package-pricing li.card-starred {
  color: #b39873;
  font-weight: 600;
}

.card-package-pricing li.card-starred:before {
  content: "★";
  color: #b39873;
}

.card-package-pricing p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin: 0 0 0.5rem 0;
}

.card-package-pricing .pricetag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #b39873;
  text-align: center;
  margin: 0 0 2rem 0;
}

.card-package-pricing .wp-block-buttons {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.card-package-pricing .wp-block-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.card-package-pricing .wp-block-button__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.card-package-pricing .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(179, 152, 115, 0.3);
}

/* Package Section Layout */
.columns-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.columns-pricing .wp-block-column {
  display: flex;
  flex-direction: column;
}

.columns-pricing h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #b39873;
}

.title-package {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin: 3rem 0 2rem 0;
  padding: 0 1rem;
}

/* Add-ons Section */
.wp-block-columns:last-child {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(179, 152, 115, 0.2);
}

.wp-block-columns:last-child h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #b39873;
}

/* Testimonial Card Styles */
.columns-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card-testimonials {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(179, 152, 115, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.card-testimonials p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  flex-grow: 1;
}

.card-testimonials .wp-block-columns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(179, 152, 115, 0.2);
}

.card-testimonials .img-testimony-profile {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-testimonials .img-testimony-profile img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.card-testimonials .wp-block-gallery .img-testimony-profile {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-testimonials .wp-block-gallery .img-testimony-profile img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50% !important;
  position: absolute;
  top: 0;
  left: 0;
}

/* Force all testimonial profile images to be circular */
.card-testimonials figure,
.card-testimonials .wp-block-image,
.card-testimonials .wp-block-gallery figure {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.card-testimonials figure img,
.card-testimonials .wp-block-image img,
.card-testimonials .wp-block-gallery figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50% !important;
  display: block !important;
}

.card-testimonials .wp-block-column:last-child p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #b39873;
  text-align: left;
  line-height: 1.4;
}

/* All testimonial cards look identical - no special variants */

/* Testimonial page hero background */
.wp-block-group.alignfull {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.wp-block-group.alignfull::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Contact Form Styles */
.wrapper-contactform7 input[type="text"],
.wrapper-contactform7 input[type="email"],
.wrapper-contactform7 input[type="tel"],
.wrapper-contactform7 textarea,
.wrapper-contactform7 select {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem;
  border: 2px solid #b39873;
  border-radius: 0;
  background-color: white;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.wrapper-contactform7 input[type="text"]:focus,
.wrapper-contactform7 input[type="email"]:focus,
.wrapper-contactform7 input[type="tel"]:focus,
.wrapper-contactform7 textarea:focus,
.wrapper-contactform7 select:focus {
  outline: none;
  border-color: #8a6f4a;
  box-shadow: 0 0 0 2px rgba(179, 152, 115, 0.2);
}

.wrapper-contactform7 textarea {
  min-height: 120px;
  resize: vertical;
}

.wrapper-contactform7 input[type="submit"] {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #b39873;
  background-color: white;
  border: 3px solid #b39873;
  border-radius: 0;
  padding: 0.3rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.wrapper-contactform7 input[type="submit"]:hover {
  background-color: #b39873;
  color: white;
  transform: translateY(-2px);
}

.wrapper-contactform7 .wpcf7-form-control-wrap {
  margin-bottom: 1rem;
}

.wrapper-contactform7 label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer {
    padding: 28px;
  }
  
  .footer-container {
    gap: 25px;
  }
  
  .footer-logo {
    height: 70px;
    width: 160px;
  }
  
  .social-icons {
    min-width: 180px;
    width: 180px;
  }
  
  .social-icon {
    width: 22px;
    height: 22px;
  }
  
  .social-icon.x-logo {
    width: 22px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 24px;
  }
  
  .footer-container {
    gap: 20px;
  }
  
  .footer-logo {
    height: 60px;
    width: 140px;
  }
  
  .social-icons {
    min-width: 160px;
    width: 160px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .social-icon.x-logo {
    width: 20px;
  }
  
  /* Testimonial cards tablet styles */
  .columns-testimonials {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
  
  .card-testimonials {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
}

@media (max-width: 480px) {
  .footer {
    padding: 20px;
  }
  
  .footer-container {
    gap: 15px;
  }
  
  .footer-logo {
    height: 50px;
    width: 120px;
  }
  
  .social-icons {
    min-width: 140px;
    width: 140px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .social-icon.x-logo {
    width: 18px;
  }
  
  /* Testimonial cards responsive styles */
  .columns-testimonials {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 0.5rem !important;
  }
  
  .card-testimonials {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  
  .card-testimonials p {
    font-size: 0.9rem !important;
  }
  
  .card-testimonials .img-testimony-profile {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
  
  .card-testimonials .img-testimony-profile img {
    border-radius: 50% !important;
    object-fit: cover !important;
  }
  
  .card-testimonials .wp-block-gallery .img-testimony-profile {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
  
  .card-testimonials .wp-block-gallery .img-testimony-profile img {
    border-radius: 50% !important;
    object-fit: cover !important;
  }
  
  /* Force all testimonial profile images to be circular on mobile */
  .card-testimonials figure,
  .card-testimonials .wp-block-image,
  .card-testimonials .wp-block-gallery figure {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .card-testimonials figure img,
  .card-testimonials .wp-block-image img,
  .card-testimonials .wp-block-gallery figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    display: block !important;
  }
  
  .card-testimonials .wp-block-column:last-child p {
    font-size: 0.8rem !important;
  }
}
