/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure images are visible */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-family: 'Lora', serif;
  font-weight: 300;
  line-height: 1.8;
}

/* Header Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #8a9e85;
  z-index: 1000;
  padding: 0.2rem 0;
}

.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-left a:hover, .nav-right a:hover {
  color: white;
}

.nav-center {
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo-img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Hide mobile menu by default */
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.mobile-dropdown a {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #eee;
  width: 100%;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
}

/* New unified mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.mobile-menu.show {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 1rem 2rem;
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: max-height 0.5s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #bfbdb0;
}

/* Hamburger menu hidden by default */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: #2d2d2d;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  .mobile-dropdown.show {
    max-height: 500px;
  }
  
  /* Hide desktop navigation on mobile */
  .nav-left, .nav-right {
    display: none;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: 70px;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Gallery Preview Section */
.gallery-preview {
  padding: 6rem 0;
  background: white;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}


.gallery-navigation {
  text-align: center;
}

.set-numbers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.set-number {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.set-number.active,
.set-number:hover {
  color: #2d2d2d;
}

.gallery-cta {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
}

/* About Section */
.about-section {
  padding: 4rem 0 2rem;
  background-image: url('../images/watercolor_design.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 400px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 400px;
}

.about-text-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
  position: relative;
  z-index: 3;
}

/* Base decorative image styling */
.about-decorative {
  position: absolute;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0; /* Keep behind the text content */
  pointer-events: none; /* Allow clicking through */
}

.about-decorative.left-top {
  top: 2rem;
  left: 2rem;
}

.about-decorative.right-bottom {
  bottom: 2rem;
  right: 2rem;
  top: auto;
  transform: none;
}

.about-decorative img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-decorative {
    width: 100px;
    height: 100px;
  }

  .about-decorative.left-top {
    top: 1rem;
    left: 1rem;
  }

  .about-decorative.right-bottom {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .about-decorative {
    width: 80px;
    height: 80px;
  }

  .about-decorative.left-top {
    top: 0.5rem;
    left: 0.5rem;
  }

  .about-decorative.right-bottom {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

/* Removed horizontal flip - both leaves now display in original orientation */

.about-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #2d2d2d;
  letter-spacing: 1px;
}

.about-subtitle {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-subtitle a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-subtitle a:hover {
  color: #2d2d2d;
}

.about-text {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* About Us Section */
.about-us-section {
  padding: 6rem 0;
  background: #fafafa;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #2d2d2d;
}

.about-us-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-us-text {
  padding-right: 2rem;
}

.about-us-description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-us-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: none;
  height: 100%;
}

.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

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

.service-item {
  text-align: center;
  padding: 2rem;
}

.service-item h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.service-item p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.main-footer {
  background-color: #8a9e85;
  color: black;
  padding: 2rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 300;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section:first-child {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-section:last-child {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-nav a {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}


.contact-icon {
  margin-right: 0.5rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.contact-icon img {
  width: 8%;
  height: 8%;
  vertical-align: middle;
}

.copyright {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-nav {
    padding: 0 1rem;
  }
  
  .nav-left, .nav-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand-logo-img {
    height: 55px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .gallery-item img {
    height: 100%;
  }
  
  .about-us-content {
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }
  
  .about-us-text {
    padding-right: 0;
  }
  
  .about-us-image {
    height: 300px;
  }
  
  .about-us-image img {
    height: 100%;
  }
  
  .about-us-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-grid.services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .footer-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-section:first-child {
    text-align: center;
  }
  
  .footer-section:last-child {
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .about-content {
    min-height: 500px;
  }
  
  .about-decorative {
    width: 80px;
    height: 80px;
  }
  
  .about-decorative.left-top {
    top: 0.5rem;
    left: 0;
  }
  
  .about-decorative.right-bottom {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
  }
  
  .gallery-cta {
    font-size: 1rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.8rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .nav-left a, .nav-right a {
    font-size: 0.8rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .about-content {
    min-height: 350px;
  }
  
  .about-decorative {
    width: 80px;
    height: 80px;
  }
  
  .about-title {
    font-size: 1.4rem;
  }
  
  .about-subtitle {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }
  
  .about-text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .about-us-content {
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
  }
  
  .about-us-image {
    height: 100%;
  }
  
  .about-us-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.75rem;
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .gallery-item img {
    height: 100%;
  }
  
  .reviews-title {
    font-size: 1.5rem;
  }
  
  .reviews-subtitle {
    font-size: 0.7rem;
  }
  
  .review-content blockquote {
    font-size: 0.9rem;
  }
  
  .review-author {
    font-size: 1.1rem;
  }
  
  .review-number {
    font-size: 0.6rem;
  }
  
  .gallery-subtitle {
    font-size: 0.8rem;
  }
  
  .gallery-cta {
    font-size: 0.8rem;
  }
  
  .footer-section h4 {
    font-size: 0.8rem;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.7rem;
  }
  
  .copyright {
    font-size: 0.7rem;
  }
  
  .nav-left a, .nav-right a {
    font-size: 0.7rem;
  }
  
  .services-title {
    font-size: 1.4rem;
  }
  
  .services-subtitle {
    font-size: 0.7rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
}


.gallery-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-main {
  padding: 0 10px;
  background: white;
  margin-top: 90px;
  margin-bottom: 10px;
  position: relative;
}

.gallery-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5) 50%, white);
  pointer-events: none;
}

/* Original Gallery Styles */
.album {
  margin-top: 2.5%;
}

.album .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: 0;
  margin-bottom: 0px;
  margin-left: 0;
  justify-content: flex-start;
}

.album .responsive-container-block.bg {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: flex-start;
  gap: 10px;
  padding: 0; 
}

.album .img {
  width: 100%;
  margin: 0 0 10px 0;
}

.album .responsive-container-block.img-cont {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 7px);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.album .img.img-big {
  height: 50%;
  margin: 0 0 10px 0;
}

.album .responsive-container-block.img-cont {
  display: flex;
  flex-direction: column;
  max-width: 33.3%;
  height: 100%;
}

/* Services Section */
.services-section {
  padding: 6rem 2rem;
  background-color: #fdfdfd;
  margin-top: 90px;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Services container is now handled by the standard .container class */

.services-title {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.services-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #bfbdb0, #8A8E75);
  transform: scaleX(0);
  transition: transform 1s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.service-card p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Services page — image + caption cards */
.services-grid.services-cards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-card-visual {
  background: #fff;
  border: 1px solid #eeeeee;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card-link:hover .service-card-visual {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.service-card-visual__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.service-card-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-visual__body {
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-visual__body h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: #2d2d2d;
  line-height: 1.35;
}

/* Service detail subpages */
.service-detail-section {
  margin-top: 90px;
  padding: 4rem 0 5rem;
  background-color: #fdfdfd;
}

.service-detail-section .container {
  max-width: 720px;
}

.service-detail-back {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #2d2d2d;
  text-decoration: none;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-detail-back:hover {
  color: #8a9e85;
}

.service-detail-title {
  font-family: 'Lora', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-detail-lead {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  font-weight: 400;
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 2rem;
  background-color: white;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.reviews-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.reviews-subtitle {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

.review-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.review-image {
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.review-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-number {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-content blockquote {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2d2d2d;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.review-content blockquote::before {
  content: '';
}

.review-author {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2d2d2d;
  margin-top: 1rem;
}

.review-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review-image:hover img {
  transform: scale(1.05);
}

/* Mobile Menu Styles */
/* Mobile menu is now handled by the unified .mobile-menu class */

@media (max-width: 768px) {
  .gallery-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-item-large img {
    height: 250px;
  }
  
  .gallery-title {
    font-size: 2.5rem;
  }
  
  .services-title {
    font-size: 2.5rem;
  }
  
  /* Services and Reviews Mobile */
  .services-section,
  .reviews-section {
    padding: 4rem 1rem;
  }
  
  .services-title,
  .reviews-title {
    font-size: 2.5rem;
  }
  
  .services-subtitle,
  .reviews-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-grid.services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .review-item {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .review-content blockquote {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
  
  .review-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }
  
  .gallery-item-large img {
    height: 300px;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .review-item {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .review-content blockquote {
    font-size: 1rem;
  }
  
  .review-image img {
    height: 250px;
  }
}
