/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 22 2026 | 15:32:36 */
@media screen and (min-width: 801px) {}

/* Disable text selection site-wide */
body {
	background-color: #ffffff !important;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* Internet Explorer/Edge */
    userallery-select: none; /* Standard syntax */
}

/* Enable text selection only on the contact page */
.contact-page {
    -webkit-user-select: text !important; /* Safari */
    -ms-user-select: text !important; /* Internet Explorer/Edge */
    user-select: text !important; /* Standard syntax */
}

h1, h2 {
    text-align: center !important;
    padding-bottom: 20px !important;
    color: #323232 !important;
}


img { border: 0; }

ul, ol {list-style: none; padding: 0; margin: 0;}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px; /* To prevent margin collapse */
    overflow: hidden;
    clip: rect(0, 0, 0, 0); /* Older IE support */
    white-space: nowrap; /* Prevent text wrapping */
    border: 0;
}
figure {
    margin-bottom: 0 !important; /* Use !important as a last resort if other specificity doesn't work */
    /* Or better, just margin-bottom: 0; without !important if your file loads after Bootstrap */
}

body a {
    color: #323232;
    text-decoration: none;
}

/* Add to prevent Bootstrap navbar shifts */
.navbar {
    min-height: 76px; /* Set minimum height */
}

.navbar-collapse {
    /* Prevent content jumping when menu opens */
    position: relative;
}

@font-face {
  font-family: 'Raleway';
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display SC';
  font-display: swap;
}
/* More specific Font Awesome font-display fix */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";  
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Existing Google Fonts already optimized */
@font-face {
  font-family: 'Raleway';
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display SC';
  font-display: swap;
}

/* Footer Section */
.footer-cta-text {
  margin-bottom: 40px !important;
  text-align: center;
}

.footer-cta-text h6 {
  font-size: 40px !important;
  margin: 0 auto 10px; 
  color: #333;
  font-family: 'Raleway', sans-serif;
  font-weight: 900 !important;
  border-bottom: 2px solid #333 !important;
  display: inline-block; 
  padding-bottom: 5px;
}

.footer-cta-text p {
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}


/* 1. GALLERY CONTAINER - RESTORE HORIZONTAL GRID */
.gallery-links-section {
  /* Container setup */
  min-height: 400px !important;
  max-width: 1500px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 60px 15px !important;
  
  /* CRITICAL: RESTORE FLEXBOX GRID LAYOUT */
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 15px !important;
  
  /* Background */
  background-color: #ffffff !important;
  
  /* Light containment only */
  contain: layout !important;
  box-sizing: border-box !important;
}

/* 2. GALLERY ITEMS - RESTORE GRID BEHAVIOR */
.gallery-link {
  /* CRITICAL: RESTORE FLEX GRID */
  flex: 0 0 200px !important;
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  
  /* Height for content */
  height: 280px !important;
  min-height: 280px !important;
  max-height: 280px !important;
  
  /* REMOVE AGGRESSIVE MARGINS */
  margin: 0 !important;
  padding: 0 !important;
  
  /* Layout properties */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform 0.3s ease !important;
  
  /* Light containment */
  contain: layout style !important;
  box-sizing: border-box !important;
  
  /* REMOVE OVERFLOW HIDDEN */
  overflow: visible !important;
}

/* 3. RESTORE HOVER EFFECTS */
.gallery-link:hover {
  transform: translateY(-5px) !important;
}

/* 4. ANCHOR TAGS - NATURAL FLOW */
.gallery-link a {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
  color: #333 !important;
  box-sizing: border-box !important;
}

/* 5. IMAGES - LOCK DIMENSIONS TO MATCH HTML */
.gallery-link img {
  /* Match your HTML: width="200" height="209" */
  width: 200px !important;
  height: 209px !important;
  min-width: 200px !important;
  min-height: 209px !important;
  max-width: 200px !important;
  max-height: 209px !important;
  
  /* Display properties */
  display: block !important;
  object-fit: cover !important;
  background: #f0f0f0 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  transition: box-shadow 0.3s ease !important;
  
  /* Remove spacing */
  margin: 0 !important;
  padding: 0 !important;
  
  /* Light containment */
  box-sizing: border-box !important;
  contain: layout !important;
}

/* 6. RESTORE HOVER EFFECTS FOR IMAGES */
.gallery-link:hover img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

/* 7. GALLERY LABELS - STABLE BUT FLEXIBLE */
.gallery-link .gallery-label,
.gallery-link span.gallery-label {
  /* Lock width to match container */
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  
  /* Flexible height for text */
  height: 50px !important;
  min-height: 50px !important;
  
  /* Layout */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* Spacing */
  margin: 15px 0 0 0 !important;
  padding: 0 !important;
  
  /* Typography */
  font-family: 'Raleway', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  text-decoration: none !important;
  text-align: center !important;
  line-height: 1.2 !important;
  
  /* Text handling */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  
  /* Light containment */
  box-sizing: border-box !important;
  contain: layout !important;
}

/* 8. RESTORE HOVER EFFECTS FOR LABELS */
.gallery-link a:hover .gallery-label {
  color: #c9beab !important;
  text-decoration: none !important;
}

/* 9. RESPONSIVE - MAINTAIN GRID BEHAVIOR */
@media (min-width: 1025px) {
  .gallery-links-section {
    text-align: center !important;
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 60px 15px !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .gallery-links-section {
    text-align: center !important;
    padding: 50px 15px !important;
  }
  
  .gallery-link {
    flex: 0 0 200px !important;
    width: 200px !important;
    height: 280px !important;
    margin: 0 0 40px 0 !important;
  }
  
  .gallery-link img {
    width: 200px !important;
    height: 208px !important;
  }
  
  .gallery-label {
    width: 200px !important;
  }
}

@media (max-width: 768px) {
  .gallery-links-section {
    text-align: center !important;
    padding: 40px 20px !important;
    min-height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .gallery-link {
    flex: 0 0 auto !important;
    width: 90vw !important;
    max-width: 350px !important;
    height: auto !important;
    min-height: 420px !important;
    margin: 0 auto 25px auto !important;
    display: block !important;
  }
  
  .gallery-link img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 350px !important;
  }
  
  .gallery-label {
    width: 100% !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  .gallery-link {
    width: 95vw !important;
    max-width: 320px !important;
  }
  
  .gallery-link img {
    max-height: 320px !important;
  }
}

* MOBILE GALLERY TEXT LABEL FIXES */
@media (max-width: 768px) {
  .gallery-links-section {
    text-align: center !important;
    padding: 40px 20px !important;
    min-height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Force immediate layout calculation */
    contain: layout !important;
  }
  
  .gallery-link {
    flex: 0 0 auto !important;
    width: 90vw !important;
    max-width: 350px !important;
    /* CRITICAL: Lock mobile height to prevent text shifts */
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
    margin: 0 auto 25px auto !important;
    display: block !important;
    
    /* Prevent any layout changes */
    contain: layout style !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .gallery-link img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 350px !important;
    /* CRITICAL: Reserve minimum mobile image height */
    min-height: 280px !important;
  }
  
  /* MOBILE TEXT LABEL - ABSOLUTE CONTROL */
  .gallery-link .gallery-label,
  .gallery-link span.gallery-label {
    /* CRITICAL: Lock mobile text dimensions */
    width: 100% !important;
    height: 60px !important; /* Increased height for mobile */
    min-height: 60px !important;
    max-height: 60px !important;
    
    /* Layout */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Spacing */
    margin: 15px 0 0 0 !important;
    padding: 5px !important;
    
    /* Typography - lock mobile font */
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.2 !important;
    
    /* CRITICAL: Allow text wrapping on mobile */
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    
    /* Prevent layout changes */
    box-sizing: border-box !important;
    contain: layout style !important;
    
    /* Force immediate rendering */
    transform: translateZ(0) !important;
    
    /* Prevent font loading shifts */
    font-display: block !important;
  }
  
  /* MOBILE ANCHOR TAG - LOCK HEIGHT */
  .gallery-link a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #333 !important;
    box-sizing: border-box !important;
    
    /* Prevent layout changes */
    contain: layout !important;
    overflow: hidden !important;
  }
}

/* SMALL MOBILE - ADDITIONAL FIXES */
@media (max-width: 480px) {
  .gallery-link {
    width: 95vw !important;
    max-width: 320px !important;
    /* Maintain locked height */
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
  
  .gallery-link img {
    max-height: 320px !important;
    min-height: 260px !important;
  }
  
  /* SMALL MOBILE TEXT - EVEN MORE CONTROLLED */
  .gallery-link .gallery-label,
  .gallery-link span.gallery-label {
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
    font-size: 0.95rem !important;
    padding: 3px !important;
  }
}

/* CRITICAL: PREVENT FONT LOADING SHIFTS ON MOBILE */
@media (max-width: 768px) {
  .gallery-label,
  .gallery-link .gallery-label,
  .gallery-link span.gallery-label {
    /* Force font to load immediately */
    font-display: block !important;
    text-rendering: optimizeSpeed !important;
    
    /* Prevent any text measurement changes */
    word-break: break-word !important;
    hyphens: auto !important;
  }
  
  /* Force immediate font loading for mobile */
  .gallery-link a,
  .gallery-link span {
    font-display: block !important;
  }
}

/* EMERGENCY: HIDE TEXT UNTIL FONTS LOAD ON MOBILE */
@media (max-width: 768px) {
  .gallery-link .gallery-label {
    /* Prevent flash of unstyled text */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }
}

/* MOBILE HOVER EFFECTS - MAINTAIN STABILITY */
@media (max-width: 768px) {
  .gallery-link:hover {
    /* Remove transform on mobile to prevent shifts */
    transform: none !important;
  }
  
  .gallery-link a:hover .gallery-label {
    /* Maintain color change but prevent layout impact */
    color: #c9beab !important;
    text-decoration: none !important;
  }
}




/* ========================================= */
/* Portrait Configurator Styles - Responsive */
/* ========================================= */
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            background: white;
            margin-bottom: 30px;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section h2 {
            color: #b5b9a3;
            margin-bottom: 20px;
            font-size: 1.8em;
            text-align: center;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .option-card {
            background: #f5f5f0;
            border: 3px solid #f5f5f0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .option-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .option-card.selected {
            background: #b5b9a3;
            border-color: #b5b9a3;
            color: white;
        }

        .option-card.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .option-card h3 {
            margin-bottom: 10px;
            font-size: 1.3em;
        }

        .option-card p {
            font-size: 0.9em;
            opacity: 0.8;
        }

        .pricing-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .price-option {
            background: #f9f9f7;
            border: 2px solid #e5e5e5;
            border-radius: 6px;
            padding: 15px;
            text-align: center;
            margin-bottom: 10px;
        }

        .price-option.unavailable {
            opacity: 0.5;
            background: #f0f0f0;
        }

        .price-size {
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 5px;
            color: #333;
        }

        .price-amount {
            font-size: 1.3em;
            font-weight: bold;
            color: #b5b9a3;
            margin-bottom: 5px;
        }

        .price-note {
            font-size: 0.8em;
            color: #666;
        }

        .hidden {
            display: none;
        }

        .intro-text {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: #f0f0f0;
            border-radius: 8px;
        }

        .all-pricing {
            margin-top: 40px;
        }

        .all-pricing h3 {
            color: #b5b9a3;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.5em;
        }

        .pricing-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-column {
            text-align: center;
        }

        .pricing-column h4 {
            color: #b5b9a3;
            margin-bottom: 15px;
            font-size: 1.1em;
        }

        .pricing-column h5 {
            font-size: 0.9em;
            margin-bottom: 12px;
            color: #666;
        }

        .price-option {
            background: #f9f9f7;
            border: 2px solid #e5e5e5;
            border-radius: 6px;
            padding: 12px 8px;
            text-align: center;
            margin-bottom: 8px;
            max-width: 280px;
            margin-left: auto;
            margin-right: auto;
        }

        .price-option.unavailable {
            opacity: 0.5;
            background: #f0f0f0;
        }

        .price-size {
            font-weight: bold;
            font-size: 1em;
            margin-bottom: 4px;
            color: #333;
        }

        .price-amount {
            font-size: 1.2em;
            font-weight: bold;
            color: #b5b9a3;
            margin-bottom: 4px;
        }

        .price-note {
            font-size: 0.75em;
            color: #666;
        }

        .additional-info {
            background: #f9f9f7;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            color: #666;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .section {
                padding: 20px 15px;
                margin-bottom: 20px;
            }

            .section h2 {
                font-size: 1.4em;
                margin-bottom: 15px;
            }

            .options-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .option-card {
                padding: 15px;
            }

            .option-card img {
                height: 120px !important;
                margin-bottom: 10px !important;
            }

            .option-card h3 {
                font-size: 1.1em;
                margin-bottom: 8px;
            }

            .option-card p {
                font-size: 0.85em;
            }

            .pricing-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-column h4 {
                font-size: 1.1em;
                margin-bottom: 15px;
            }

            .pricing-column h5 {
                font-size: 0.9em;
                margin-bottom: 10px;
            }

            .price-option {
                padding: 10px 8px;
                margin-bottom: 8px;
            }

            .price-size {
                font-size: 0.9em;
                margin-bottom: 3px;
            }

            .price-amount {
                font-size: 1.1em;
                margin-bottom: 3px;
            }

            .price-note {
                font-size: 0.7em;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .intro-text {
                padding: 15px;
                margin-bottom: 20px;
            }

            .intro-text h4 {
                font-size: 1.1em;
                margin-bottom: 8px;
            }

            .intro-text p {
                font-size: 0.85em;
            }

            .additional-info {
                padding: 15px;
            }

            .additional-info p {
                font-size: 0.8em;
                margin-bottom: 5px;
            }
        }

        /* Very small mobile screens */
        @media (max-width: 480px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .price-option {
                padding: 8px 6px;
            }

            .price-size {
                font-size: 0.85em;
            }

            .price-amount {
                font-size: 1em;
            }

            .price-note {
                font-size: 0.65em;
            }
        }

/* ========================================= */
/* SOCIAL SECTION - KEEP THE PERFECT CLS FIXES */
/* ========================================= */

/* SOCIAL SECTION - PRECISE CONTAINMENT */
.footer-social-section {
  /* Lock exact container dimensions */
  min-height: 350px !important;
  height: 350px !important; /* Force exact height */
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 50px 20px !important;
  
  /* Layout properties */
  background-color: #ffffff !important;
  text-align: center !important;
  border-top: 1px solid #e0e0e0 !important;
  
  /* Critical: Prevent any layout recalculation */
  contain: layout style !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  
  /* Force GPU layer */
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
}

/* CTA TEXT - LOCK DIMENSIONS */
.footer-cta-text {
  /* Force exact container size */
  margin-bottom: 30px !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  height: 110px !important; /* Exact height */
  min-height: 110px !important;
  max-height: 110px !important;
  
  /* Prevent changes */
  contain: layout style !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.footer-cta-text h6 {
  /* Lock heading size */
  font-size: 2.5rem !important;
  margin: 0 auto 15px !important;
  color: #333 !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #333 !important;
  display: inline-block !important;
  padding-bottom: 10px !important;
  
  /* Force exact dimensions */
  height: 55px !important;
  min-height: 55px !important;
  max-height: 55px !important;
  line-height: 1.1 !important;
  
  /* Prevent font shifts */
  font-display: block !important;
  contain: layout style !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.footer-cta-text p {
  /* Lock paragraph size */
  font-size: 1.1rem !important;
  color: #555 !important;
  line-height: 1.6 !important;
  font-family: 'Raleway', sans-serif !important;
  margin: 0 !important;
  
  /* Force exact dimensions */
  height: 45px !important;
  min-height: 45px !important;
  max-height: 45px !important;
  
  /* Prevent text reflow */
  overflow: hidden !important;
  font-display: block !important;
  contain: layout style !important;
  box-sizing: border-box !important;
}

/* SOCIAL ICON BAR - ABSOLUTE CONTROL */
.footer-social-icon-bar {
  /* Force exact layout */
  display: flex !important;
  justify-content: center !important;
  gap: 25px !important;
  margin: 30px 0 !important;
  
  /* Lock exact height */
  height: 65px !important;
  min-height: 65px !important;
  max-height: 65px !important;
  
  /* Center alignment */
  align-items: center !important;
  
  /* Prevent any changes */
  contain: layout style !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  
  /* Force immediate rendering */
  transform: translateZ(0) !important;
}

.footer-social-icon-bar a {
  /* Lock icon dimensions */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  
  /* Visual properties */
  border-radius: 50% !important;
  background-color: #f8f8f8 !important;
  color: #333 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  
  /* Prevent flex changes */
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  
  /* Lock everything */
  box-sizing: border-box !important;
  contain: layout style !important;
  overflow: hidden !important;
  
  /* Smooth transitions without layout impact */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  transform: translateZ(0) !important;
}

.footer-social-icon-bar a:hover {
  transform: translateY(-3px) translateZ(0) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.footer-social-icon-bar i {
  /* Lock icon font */
  font-size: 1.25rem !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  line-height: 1 !important;
  
  /* Prevent font loading shifts */
  font-display: block !important;
  contain: layout !important;
}

/* Individual social media colors */
.footer-social-icon-bar .fa-youtube:hover { color: #ff0000 !important; }
.footer-social-icon-bar .fa-facebook-f:hover { color: #3b5998 !important; }
.footer-social-icon-bar .fa-instagram:hover { color: #ac2bac !important; }
.footer-social-icon-bar .fa-pinterest-p:hover { color: #c61118 !important; }

/* BLOG LINK - PRECISE CONTROL */
.blog-link {
  /* Force exact container */
  margin-top: 25px !important;
  height: 45px !important;
  min-height: 45px !important;
  max-height: 45px !important;
  
  /* Lock layout */
  contain: layout style !important;
  text-align: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.blog-link a {
  /* Lock button dimensions */
  display: inline-block !important;
  background-color: #333 !important;
  color: white !important;
  padding: 12px 25px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  font-family: 'Raleway', sans-serif !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  
  /* Force exact size */
  min-width: 180px !important;
  width: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  line-height: 1.2 !important;
  
  /* Prevent font shifts */
  font-display: block !important;
  
  /* Lock everything */
  box-sizing: border-box !important;
  contain: layout style !important;
  overflow: hidden !important;
  
  /* Smooth hover without layout impact */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  transform: translateZ(0) !important;
}

.blog-link a:hover {
  background-color: #555 !important;
  transform: translateY(-2px) translateZ(0) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* MOBILE RESPONSIVE FOR SOCIAL SECTION */
@media (max-width: 768px) {
  .footer-social-section {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    padding: 40px 15px !important;
  }
  
  .footer-cta-text {
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
  }
  
  .footer-cta-text h6 {
    font-size: 1.8rem !important;
    height: 45px !important;
    min-height: 45px !important;
    max-height: 45px !important;
  }
  
  .footer-cta-text p {
    font-size: 1rem !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
  
  .footer-social-icon-bar {
    gap: 20px !important;
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
  }
  
  .blog-link {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
}

/* CRITICAL: FONT LOADING PROTECTION */
.footer-cta-text h6,
.footer-cta-text p,
.blog-link a,
.footer-social-icon-bar i {
  /* Prevent font swap layout shifts */
  font-display: block !important;
  text-rendering: optimizeSpeed !important;
}

/* ===================================== */
/*        ENHANCED STYLING LAYER        */
/* ===================================== */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@400;600;700&display=swap');

/* Container wrapper to prevent overflow issues */
.footer-wrapper {
  overflow-x: hidden;
  width: 100%;
}

.footer-copyright-column p {
  min-height: 1.5em;
}

/* Enhanced Gallery Styling */
.gallery-links-section {
  background-color: #ffffff;
}

.gallery-link {
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-link:hover {
  transform: translateY(-5px);
}

.gallery-link img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.gallery-link:hover img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  text-align: center;
}

.gallery-link a {
  text-decoration: none;
  color: #333;
}

.gallery-link a:hover .gallery-label {
  color: #c9beab;
  text-decoration: none;
}

/* Footer CTA Text */
.footer-cta-text {
  margin-bottom: 40px !important;
  text-align: center;
}

.footer-cta-text h6 {
  font-size: 40px !important;
  margin: 0 auto 10px; 
  color: #333;
  font-family: 'Raleway', sans-serif;
  font-weight: 900 !important;
  border-bottom: 2px solid #333 !important;
  display: inline-block; 
  padding-bottom: 5px;
}

.footer-cta-text p {
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

/* Social Media Section */
.footer-social-section {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  min-height: 350px;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.footer-cta-text {
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-text h6 {
  font-size: 2.5rem;
  margin: 0 auto 15px;
  color: #333;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-cta-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
  margin: 0;
}

/* Social Icons */
.footer-social-icon-bar {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 30px 0;
}

.footer-social-icon-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-social-icon-bar a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-icon-bar i {
  font-size: 1.25rem;
}

/* Individual social media colors */
.footer-social-icon-bar .fa-youtube:hover { color: #ff0000; }
.footer-social-icon-bar .fa-facebook-f:hover { color: #3b5998; }
.footer-social-icon-bar .fa-instagram:hover { color: #ac2bac; }
.footer-social-icon-bar .fa-pinterest-p:hover { color: #c61118; }

/* Blog Link */
.blog-link {
  margin-top: 25px;
}

.blog-link a {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-link a:hover {
  background-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Main Footer */
.main-footer {
  background-color: #323232;
  color: #d7d8d3;
  padding: 50px 0 30px;
  font-family: 'Raleway', sans-serif;
  min-height: 300px;
  width: 100%;
  margin: 0 auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Left Column - Links */
.footer-links-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #d7d8d3;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(215, 216, 211, 0.3);
  padding-bottom: 10px;
}

.footer-links-column h4 span {
  color: #a1a19f;
  padding: 0 6px;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.footer-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer-nav-links a:hover,
.footer-nav-links a:visited {
  color: #ffffff;
  text-decoration: underline;
}

/* Center Column - Logo */
.footer-logo-column {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  width: 179px;
  height: 122px;
}

/* Right Column - Copyright */
.footer-copyright-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright-column p {
  color: #9e9e97;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons.icon-only a {
  width: 55px;
  height: 55px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-buttons.icon-only a.messenger {
  background-color: #0084FF;
}

.floating-buttons.icon-only a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-buttons.icon-only a.messenger:hover {
  background-color: #006FDB;
}

.floating-buttons.icon-only i {
  font-size: 1.4rem;
}

/* ===================================== */
/*     RESPONSIVE DESIGN OVERRIDES      */
/* ===================================== */

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-nav-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 15px;
  }
  
  .footer-cta-text h6 {
    font-size: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-social-section {
    padding: 40px 15px;
    min-height: 320px;
  }
  
  .footer-cta-text h6 {
    font-size: 1.8rem;
  }
  
  .footer-cta-text p {
    font-size: 1rem;
  }
  
  .footer-social-icon-bar {
    gap: 20px;
  }
  
  .footer-nav-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
  }
  
  .main-footer {
    padding: 40px 0 20px;
    min-height: 280px;
  }
  
  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-buttons.icon-only a {
    width: 50px;
    height: 50px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .footer-nav-links {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .footer-cta-text h6 {
    font-size: 1.5rem;
  }
  
  .footer-social-icon-bar {
    gap: 15px;
  }
  
  .footer-social-icon-bar a {
    width: 45px;
    height: 45px;
  }
}

/* Prevent layout shift and ensure smooth rendering */
.gallery-links-section,
.footer-social-section,
.main-footer {
  width: 100%;
  overflow: hidden;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .gallery-link,
  .gallery-link img,
  .footer-social-icon-bar a,
  .blog-link a,
  .floating-buttons.icon-only a {
    transition: none;
  }
}



/* ============================= */
/*        NAVBAR STYLING         */
/* ============================= */

/* Navbar Background */
.custom-navbar {
    background-color: #fff !important; 
}

/* White Line Above Navbar */
.navbar::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #323232;
    position: absolute;
    top: 0;
    left: 0;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #323232 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 13px !important;
    font-size: 15px;
	font-weight: bold!important;
}

/* Navbar Hover Effect */
.navbar-nav .nav-link:hover {
    color: #c9beab !important;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    background-color: #fff !important;
    border-top: 5px solid #c9beab !important;
}

/* Dropdown Menu Items */
.navbar-nav .dropdown-menu .dropdown-item {
    color: #323232 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    font-size: 15px;
}

/* Dropdown Hover Effect */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #fff !important;
    color: #c9beab !important;
}

/* Navbar Button */
.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #323232;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    padding: 20px 20px;
}

/* Navbar Button Focus */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* MENU Text Inside Navbar Button */
.menu-text {
    color: #323232;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Navbar Padding */
.navbar {
    padding: 25px 0 !important;
}

/* Adjust Navbar Alignment */
.navbar-expand-lg {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

/* width fix */
@media (max-width: 1200px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 14px !important;
        padding: 7px 9px !important;
        letter-spacing: 0.5px !important;
    }
}

/* Fix Navbar on Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .navbar-nav .nav-link {
        padding-left: 5px !important;
        padding-right: 5px !important;
        text-align: left !important;
    }

    .dropdown-menu {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Remove Focus Outline on Click */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}


/* ============================= */
/*        HEADER STYLING         */
/* ============================= */

.custom-header {
    background-color: #fff; 
    color: #4c4b4c;
    text-align: center;
    padding: 15px 0 !important;
    font-family: 'Playfair Display', serif;
}

.custom-header .custom-title,
.custom-header .custom-tagline {
    display: block;
    text-align: center;
    margin: 0 auto;
font-family: 'Playfair Display', serif;
}

.custom-header .custom-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.custom-header .custom-title a {
    text-decoration: none;
    color: #4c4b4c;
    font-family: 'Playfair Display', serif;
}

.custom-header .custom-title a:hover {
    color: #c9beab;
}

.custom-header .custom-title span {
    color: #c9beab;
    padding-left: 6px;
    padding-right: 4px;
}

.custom-header .custom-title span:hover {
    color: #4c4b4c;
}

.custom-header .custom-tagline {
    font-size: 1rem;
    margin-top: 5px;
    color: #4c4b4c;
}

.custom-header .custom-tagline a {
    text-decoration: none;
    color: #4c4b4c;
}

.custom-header .custom-tagline a:hover {
    color: #c9beab;
}


/* ================================= */
/*     REDESIGNED ABOUT PAGE CSS     */
/* ================================= */

/* Enhanced Split Section - Better Balance */
.split-top-section {
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px 40px;
    gap: 50px;
    border-bottom: 1px solid #ddd;
    min-height: 500px; /* Ensures consistent height */
}

/* Alternating layout for visual interest */
.split-top-section:nth-child(even) {
    background: #faf9f7; /* Subtle background variation */
}

.split-top-section:nth-child(even) .split-image {
    order: 2; /* Moves image to right on even sections */
}

.split-top-section:nth-child(even) .split-text {
    order: 1; /* Moves text to left on even sections */
}

/* Image container - Larger and more prominent */
.split-image {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.split-image img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.split-image img:hover {
    transform: translateY(-5px);
}

/* Enhanced image labels */
.image-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Text content - Better hierarchy */
.split-text {
    padding: 20px;
}

.split-text h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
}

/* Decorative underline for headings */
.split-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9beab, #a8967a);
    border-radius: 2px;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Highlight first paragraph */
.split-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Enhanced links */
.split-text a {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.split-text a:hover {
    color: #a8967a;
    border-bottom-color: #a8967a;
}

/* Top section improvements */
.top-section {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 80px 0;
    text-align: center;
}

.top-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-section h1 {
    font-size: 3rem !important;
    margin-bottom: 30px !important;
    color: #2c2c2c !important;
    font-family: 'Playfair Display', serif;
    border-bottom: 3px solid #c9beab !important;
    padding-bottom: 15px !important;
    display: inline-block;
}

.top-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Card-style sections for better LLM scanning */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #c9beab;
}

.content-card h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Quote/highlight boxes for key information */
.highlight-box {
    background: linear-gradient(135deg, #c9beab, #a8967a);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
}

.highlight-box::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

/* Stats or facts boxes */
.fact-box {
    background: #f0f4f8;
    border: 2px solid #c9beab;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
}

.fact-box .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c9beab;
    display: block;
}

.fact-box .label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline-style layout for career progression */
.timeline-section {
    position: relative;
    padding: 40px 0;
}

.timeline-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #c9beab, #a8967a);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #c9beab;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Gallery grid for multiple images */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}



/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .split-top-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
    }
    
    .split-top-section:nth-child(even) .split-image,
    .split-top-section:nth-child(even) .split-text {
        order: unset;
    }
    
    .split-image img {
        height: 350px;
    }
    
    .timeline-section::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .top-section h1 {
        font-size: 2.5rem !important;
    }
    
    .split-text {
        padding: 10px;
    }
    
    .split-text h2 {
        font-size: 1.8rem;
    }
    
    .split-image img {
        height: 300px;
    }
    
    .content-card {
        padding: 25px;
        margin: 25px 0;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .split-top-section {
        padding: 30px 20px;
    }
    
    .top-container {
        padding: 0 20px;
    }
    
    .top-section h1 {
        font-size: 2rem !important;
    }
    
    .top-text {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        padding: 20px;
        font-size: 1.1rem;
    }
}

/* LLM-friendly improvements */
.section-summary {
    background: #f8f9fa;
    border-left: 4px solid #c9beab;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.key-points {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.key-points h3 {
    color: #c9beab;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.key-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9beab;
    font-weight: bold;
}



/* Learn Pet Portraits */

.learn-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  font-family: 'Raleway', sans-serif;
  color: #333;
}

.learn-title-wrapper {
  text-align: center;
}

.learn-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 auto 40px;
  color: #4c4c4c !important;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid #4c4c4c !important;
}

.intro-text,
.section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

.contact-note {
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* New background sections */
.cream-section {
  background-color: #fdf7ef;
  padding: 40px 20px;
  color: #333; /* Add this line */
}

.cream-section h2 {
  font-size: 1.9rem;
  color: #4c4c4c;
  text-align: center !important;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.cream-section,
.cream-section h2,
.cream-section p{
  color: #333 !important;
}


.white-section {
  background-color: #ffffff;
  padding: 40px 20px;
}



.clickeroo {
  margin-top: 60px;
}

.clickeroo a {
  background-color: #222;
  color: #fff!important;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.clickeroo a:hover {
  background-color: #444!important;
}


/* Tick List */
.tick-list {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
}

.tick-list h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tick-list-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tick-list-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  text-align: left;
}

.tick-list-points li {
  margin: 1rem 0;
  font-size: 1rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
}

.tick-list-points li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #3f7d66;
  font-size: 1.2rem;
}

.tick-list-button {
  display: inline-block;
  background-color: #a6896f;
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.tick-list-button:hover {
  background-color: #8f745c;
}
.tick-list-points li::before {
  content: '●'; /* Unicode dot */
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #a6896f; /* Soft gold-brown dot */
  font-size: 0.9rem;
}
.tick-list-points {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 0;
}

.tick-list-points li {
  margin: 1.5rem 0;
  font-size: 1.05rem;
  padding-left: 2rem;
  line-height: 1.7;
  position: relative;
}
.tick-list-button {
  display: inline-block;
  background-color: #a6896f;
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
  text-align: center;
}

.tick-list-button:hover {
  background-color: #8f745c;
}

/* New addition 鈥� this wrapper centers the button */
.button-centre-wrapper {
  text-align: center;
  margin-top: 2rem;
}




/* How it Works */
.how-it-works {
  background-color: #f8efe1;
  color: #4c4b4c;
  font-family: 'Georgia', serif;
  padding: 40px;
  margin: 0 auto;
  border-radius: 20px;
}

.how-it-works-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4em;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 40px;
  color: #4c4b4c;
  border-bottom: 2px solid #4c4b4c;
  padding-bottom: 10px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}

.step img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.step h2,
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9em;
  font-weight: 400;
  padding-top: 20px;
  margin-bottom: 8px;
  color: #4c4b4c;
}


.step-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  font-weight: 400;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  margin: 0px auto 60px;
  text-align: center;
}


.step p {
  margin: 0;
  font-size: 1em;
  padding-left: 30px;
}

/* Two-column wrapper */
.how-it-works-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

/* Each column */
.how-it-works .column {
  flex: 1;
}



/* Responsive fallback */
@media (max-width: 1024px) {
  .how-it-works-columns {
    flex-direction: column;
  }

  .how-it-works .column {
    width: 100%;
  }

}
.how-it-works-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.how-it-works .column {
  flex: 1;
  min-width: 300px;
}

.step-divider {
  border: none;
  border-top: 1px solid #4c4b4c;
  margin: 20px 0;
  display: none; /* default hidden */
}

@media (max-width: 1024px) {
  .step-divider {
    display: block;
  }
}

/* Responsive stack on smaller screens */
@media (max-width: 1024px) {
  .how-it-works-columns {
    flex-direction: column;
  }
}


@media (max-width: 1024px) {
  .step-title,
  .section-heading {
    text-align: left !important;
    font-size: 1.6em;
  }

  .step-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .step-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .step-title,
  .section-heading {
    font-size: 1.4em;
  }

  .step-content {
    padding: 0 15px;
  }

  .step-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .step-title,
  .section-heading {
    font-size: 1.3em;
  }

  .step-description {
    font-size: 0.9rem;
  }
}


/* Packaging Page Specific Styles */
.packaging-hero {
    background-color: #323232;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.packaging-hero h1 {
    font-size: 2.5rem !important;
    color: white !important;
    border-bottom: 2px solid white !important;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.packaging-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.packaging-section {
    padding: 60px 0;
    width: 100%;
}

.packaging-section:nth-child(even) {
    background-color: #fdf7ef;
}

.packaging-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.packaging-step {
    text-align: center;
}

.packaging-step img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.packaging-step h3 {
    font-size: 1.3rem !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #c9beab !important;
    padding-bottom: 8px !important;
    font-family: 'Raleway', sans-serif;
}

.packaging-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.section-description {
    text-align: center;
    margin-bottom: 50px;
}

.section-description h2 {
    font-size: 2.2rem !important;
    color: #333 !important;
    border-bottom: 2px solid #333 !important;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-description p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.packaging-features {
    background-color: #b5b9a3;
    color: #333;
    padding: 50px 20px;
    text-align: center;
}

.packaging-features h2 {
    font-size: 2.2rem !important;
    color: #333 !important;
    border-bottom: 2px solid #333 !important;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #c9beab;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    border: none !important;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packaging-hero h1 {
        font-size: 2rem !important;
    }
    
    .packaging-hero p {
        font-size: 1rem;
    }
    
    .section-description h2 {
        font-size: 1.8rem !important;
    }
    
    .packaging-features h2 {
        font-size: 1.8rem !important;
    }
}

.top-frame-bar {
  background-color: #000;
  height: 6px;
  width: 100%;
  display: block; /* Ensure it takes up space immediately */
  margin: 0;
  padding: 0;
}

/* Colourful Social Icons */
.social-icon-bar {
    background-color: #f4f2f0;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center; /* Changed from space-between to center */
    align-items: center;
    min-height: 50px;
    position: relative; /* Add this for button positioning */
}

.social-icons-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon-bar i {
  font-size: 20px;
  margin: 0 12px;
  transition: transform 0.3s ease;
}

/* Individual brand colours */
.social-icon-bar .fa-facebook-f { color: #3b5998; }
.social-icon-bar .fa-instagram  { color: #ac2bac; }
.social-icon-bar .fa-pinterest-p { color: #c61118; }
.social-icon-bar .fa-blog { color: #5c5c5c; } /* Neutral grey blog icon */

/* Optional: Subtle grow on hover */
.social-icon-bar a:hover i {
  transform: scale(1.2);
}



/* Login button styles for social media bar */
.login-button {
    position: absolute; /* Put back absolute positioning */
    right: 20px; /* Position on the right */
    background-color: #323232;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-button:hover {
    background-color: #c9beab;
    color: #323232;
    text-decoration: none;
}

.login-button:visited {
    color: white;
}

.login-button:visited:hover {
    color: #323232;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .social-icon-bar {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        align-items: center;
    }
}


/* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Shared Button Style */
.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  width: auto;
  height: auto;
  padding: 10px 15px;
}

/* Messenger Button Specific Colour */
.floating-buttons a.messenger {
  background-color: #0084FF;
}

/* Hover Styles */
.floating-buttons a:hover {
  background-color: #128C7E;
}

.floating-buttons a.messenger:hover {
  background-color: #006FDB;
}

/* Visited Colour Fix */
.floating-buttons a,
.floating-buttons a:visited,
.floating-buttons a:active {
  color: white;
}

/* ICON-ONLY Mode */
.floating-buttons.icon-only a {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

/* Font Awesome Icon Size */
.floating-buttons.icon-only i {
  font-size: 24px;
}


/* Voucher Buttons */
.voucher-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.voucher-button-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voucher-section {
  background-color: #e1e6dc;
  padding: 20px 20px;
}

.voucher-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
}

.voucher-button-box iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .voucher-buttons {
    padding: 0 10px;
  }
}


/* Wrapper to center buttons */
.clickeroo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

/* Button base style */
.clickeroo a {
    display: inline-block;
    background-color: #323232;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important; /* FORCE no underline */
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    min-width: 180px;
}

/* Hover effect */
.clickeroo a:hover {
    background-color: black;
    color: white;
}

/* Visited link stays white */
.clickeroo a:visited {
    color: white;
}

/* Stack on smaller screens */
@media (max-width: 768px) {
    .clickeroo {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .clickeroo a {
        width: 100%;
        max-width: 300px;
    }
}

/* Pet Gallery Quick Facts Box */
.pet-gallery {
    background-color: #d0d6c5; /* Soft green */
    padding: 15px 20px 30px 20px; /* Added extra bottom padding */
    border-radius: 10px;
    width: 90%; /* Adjusts width on smaller screens */
    max-width: 600px;
    margin: 20px auto;
	margin-top: 50px;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure padding on mobile */
@media (max-width: 600px) {
    .pet-gallery {
        width: 85%; /* Prevents full-width stretching */
        padding: 15px; /* Slightly reduce padding for better fit */
    }
}


.pet-gallery h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.pet-gallery ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pet-gallery li {
    font-size: 1rem;
    color: #333;
    padding: 5px 0;
}

.gallery-button {
    display: block;
    background-color: #c4a468;
    color: #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin: 25px auto 0 auto;
    text-align: center;
    width: fit-content;
}

.gallery-button:hover {
    background-color: #d4a419;
    color: white;
}

.gallery-button:visited {
    color: #222;
}


/* ORDER FORM */
.order-form-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .form-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #7dc3b7;
        }
        .form-section {
            margin-bottom: 35px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #7dc3b7;
        }

.order-form-title {
    font-size: 2.5em;
    color: #323232!important;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

/* Optional: Make it responsive */
@media (max-width: 768px) {
    .order-form-title {
        font-size: 2em;
    }
}
        .form-section h3 {
            color: #2c5530;
            margin-bottom: 20px;
            font-size: 1.4em;
        }
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        .form-group {
            flex: 1;
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c5530;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7dc3b7;
            box-shadow: 0 0 0 3px rgba(125, 195, 183, 0.1);
        }
        .required {
            color: #e74c3c;
        }
        .photo-upload {
            border: 3px dashed #7dc3b7;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            background: #f8fff8;
            cursor: pointer;
            transition: all 0.3s;
        }
        .photo-upload:hover {
            background: #e8f5f3;
            border-color: #5da99c;
        }
        .photo-upload.dragover {
            background: #d4f4f0;
            border-color: #4a8c7f;
        }
        .upload-icon {
            font-size: 3em;
            color: #7dc3b7;
            margin-bottom: 15px;
        }
        .file-preview {
            margin-top: 20px;
            max-height: 200px;
            overflow-y: auto;
        }
        .file-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: white;
            margin-bottom: 10px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .file-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
        }
        .file-info {
            flex: 1;
        }
        .file-remove {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
        }
        .pricing-info {
            background: #e8f5f3;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .size-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .size-option {
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }
        .size-option:hover {
            border-color: #7dc3b7;
        }
        .size-option.selected {
            border-color: #7dc3b7;
            background: #f0f9f7;
        }
        .size-option input[type="radio"] {
            display: none;
        }
        .timeline-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .timeline-option {
            padding: 20px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }
        .timeline-option:hover {
            border-color: #7dc3b7;
        }
        .timeline-option.selected {
            border-color: #7dc3b7;
            background: #f0f9f7;
        }
        .timeline-option input[type="radio"] {
            display: none;
        }
        .timeline-option h4 {
            margin: 0 0 10px 0;
            color: #2c5530;
        }
        .timeline-option p {
            margin: 0;
            font-size: 0.9em;
            color: #666;
        }
        .submit-section {
            text-align: center;
            padding: 30px;
            background: #f8fff8;
            border-radius: 10px;
            margin-top: 40px;
        }
        .submit-btn {
            background: linear-gradient(135deg, #7dc3b7, #5da99c);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(125, 195, 183, 0.3);
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(125, 195, 183, 0.4);
        }
        .form-status {
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            display: none;
        }
        .status-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .status-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }
            .size-options {
                grid-template-columns: 1fr;
            }
            .timeline-options {
                grid-template-columns: 1fr;
            }
        }


/* Pet Story Section */
.pet-story {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* Prevents it from stretching full width */
}

/* Ensure rounded edges for images */
.pet-story img {
    width: 40%;
    border-radius: 10px !important; /* Ensures the rounding remains */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pet-story {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 85%; /* Brings it in on smaller screens */
    }

    .pet-story img {
        width: 80%;
        margin-bottom: 15px;
        border-radius: 10px !important; /* Forces rounded edges on mobile too */
    }

    .pet-story-text {
        width: 100%;
    }
}


.pet-story-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.pet-story-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pet-story {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pet-story img {
        width: 80%;
        margin-bottom: 15px;
    }

    .pet-story-text {
        width: 100%;
    }
}

/* Image Annotation Overlay */
.image-label-wrapper {
  position: relative;
  min-height: 30px;
}

.image-label {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 5px;
  font-family: 'Raleway', sans-serif;
  pointer-events: none; 
}


.embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Masonry Gallery Section */
.latest-masonry-gallery {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Masonry Grid */
.latest-masonry-grid {
    column-count: 3;
    column-gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Individual Items */
.latest-masonry-item {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 10px;
}

/* Add this to your existing CSS - text paragraph under H2 in latest-masonry-gallery */
.latest-masonry-gallery .gallery-description {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin: 0 auto 30px auto;
    max-width: 800px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Responsive adjustments for the description text */
@media (max-width: 768px) {
    .latest-masonry-gallery .gallery-description {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .latest-masonry-gallery .gallery-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

/* Images */
.latest-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Masonry Thumb Structure */
.masonry-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fix for spacing between image and caption */
.masonry-thumb img {
    display: block;
    margin: 0;
    padding: 0;
}

.masonry-thumb a {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

/* Caption Styling */
.masonry-caption {
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    padding: 5px 10px;
    color: #111;
}

.masonry-caption h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
    font-family: 'Raleway', sans-serif;
}

.caption-name {
  font-weight: 700;
  margin: 0;
  color: #7a7a7a;
  text-align: center;
  padding-top: 10px;
  font-family: 'Raleway', sans-serif;
}

.caption-medium {
  font-weight: normal;
  font-size: 0.8rem;	
  margin: 0;
  color: #7a7a7a;
  text-align: center;
  margin-bottom: 15px; 
  font-family: 'Raleway', sans-serif;
}


.masonry-caption p {
    font-size: 0.9rem;
    color: #6b7a5c;
    margin: 0;
    padding-bottom: 50px;
    line-height: 1.2;
}

.masonry-caption p a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}


/* Hover Effects */
.masonry-thumb:hover h3,
.masonry-thumb:hover p {
    color: #4e5d45;
    transition: color 0.3s ease;
}

/* Text Blocks Styled Like Items */
.latest-masonry-item.text-block {
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .latest-masonry-grid {
        column-count: 2;
        column-gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .latest-masonry-gallery {
        padding: 20px;
    }

    .latest-masonry-grid {
        column-count: 1;
        column-gap: 8px;
        padding: 10px;
    }

    .latest-masonry-item {
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .latest-masonry-item.text-block {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .latest-masonry-gallery {
        padding: 15px;
    }

    .latest-masonry-grid {
        column-gap: 5px;
    }

    .latest-masonry-item.text-block {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Intro Section (Black) */
.latest-gallery-intro {
    background: #323232;
    color: white;
    text-align: center;
    padding: 50px 100px; /* Default padding */
    position: relative; /* Ensures it doesn't break the grid */
    z-index: 2; /* Keeps it above without affecting flow */
}


/* Heading Styling */
.latest-gallery-intro h2, h1 {
    font-size: 2.5rem; /* Default large size */
    font-family: 'Playfair Display', serif;
    color: white !important;
    border-bottom: 1px solid white !important;
    display: inline-block;
    padding-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .latest-gallery-intro {
        padding: 40px 60px; /* Slightly less padding on tablets */
    }
    .latest-gallery-intro h2, h1 {
        font-size: 2.2rem; /* Reduce heading size on tablets */
    }
}

@media (max-width: 768px) {
    .latest-gallery-intro {
        padding: 30px 40px; /* Reduce padding more for mobile */
    }
    .latest-gallery-intro h2, h1 {
        font-size: 2rem; /* Adjust heading size */
    }
}

@media (max-width: 480px) {
    .latest-gallery-intro {
        padding: 20px 20px; /* Minimal padding for smaller screens */
    }
    .latest-gallery-intro h2, h1 {
        font-size: 1.8rem; /* Make heading more compact */
    }
}


/* Full-width informational section */
.top-section {
    background: #fff; 
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Container for text */
.top-container {
    max-width: 900px; 
    text-align: center;
    color: #4c4b4c; 
    padding: 20px 20px; 
}

.top-section h1,
.top-section h2,
.top-section h3 {
 font-size: 2rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    color: #4c4b4c !important;
    border-bottom: 2px solid #4c4b4c !important;
    padding-bottom: 10px !important;
    display: block !important;
}

/* Normal paragraph */
.top-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 10px;
    color: #4c4b4c;
}

/* Bold paragraph for emphasis */
.top-text-bold {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 600;
    margin-top: 10px;
    color: #4c4b4c;
}


.top-section a {
    color: #4c4b4c;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.top-section a:hover {
    color: #a4a469; /* Slightly softer white on hover */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-container {
        max-width: 90%;
    }

    .top-title {
        font-size: 1.9rem;
    }

    .top-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .top-title {
        font-size: 1.6rem;
    }

    .top-text {
        font-size: 1.2rem;
    }
}

.custom-single {
    background-color: #2b2b2b;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.custom-single-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-single-h1 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    color: white;
}

.custom-single-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    color: white;
}

.custom-single-text {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 10px;
    color: #fff;
}

.custom-single a,
.custom-single a:visited,
.custom-single-text a,
.custom-single-inner a {
  color: #ffffff !important;
  text-decoration: none;
}

.custom-single a:hover,
.custom-single-text a:hover,
.custom-single-inner a:hover {
  color: #f0a500 !important;
}

.custom-single i {
  color: #ffffff !important;
}

@media (max-width: 600px) {
  .custom-single-h1 {
    font-size: 1.8rem;
  }

  .custom-single-title {
    font-size: 1.5rem;
  }

  .custom-single-text {
    font-size: 1rem;
  }
}

/* Pet Header Section */
.pet-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image */
.pet-header-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom overlay strip */
.pet-header-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2); /* Adjust opacity as needed */
  padding: 2rem 2rem;
  box-sizing: border-box;
}

/* Text style */
.pet-header-caption p {
  margin: 0;
  color: white;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}

/* Optional span styling for subtle emphasis */
.pet-header-caption span {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

/* iPad and smaller tablets */
@media (max-width: 1024px) {
  .pet-header-caption {
    padding: 1.5rem;
  }

  .pet-header-caption p {
    font-size: 1.25rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .pet-header-caption {
    padding: 1rem;
  }

  .pet-header-caption p {
    font-size: 1rem;
  }
}



.my-divider-section {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}


/* Split Top Section with Image and Text */ 
.split-top-section {
    background: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    border-bottom: 1px solid #ddd;
    flex-wrap: nowrap; /* Prevent wrapping */
}

/* Image container */
.split-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-text {
    flex: 1;
    max-width: 600px;
    color: #222;
    text-align: left;
    font-family: 'Raleway', sans-serif;
}

.split-text :is(h1, h2, h3, h4) {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #111!important;
  margin-bottom: 15px;
  text-align: center;
}


.split-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
	text-align: justify;
}

.split-text p.bold-line {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 15px;
    color: #111;
}

/* Responsive 鈥� iPad Portrait (768x1024) and similar */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .split-top-section {
    flex-direction: column;

  }

  .split-text,
  .split-image {
    width: 100%;
    max-width: 100%;
  }

  .split-image {
    margin-bottom: 30px;
  }

  .split-image img {
    width: 99%;
    max-width: 950px;
    min-height: 650px; 
    margin: 0 auto;
  }

  .split-text {
    padding: 0 70px;
  }
}

/* Responsive 鈥� general tablets & phones (max-width 980px) */
@media screen and (max-width: 980px) {
  .split-top-section {
    flex-direction: column;

  }

  .split-text,
  .split-image {
    width: 100%;
    max-width: 100%;
  }

  .split-image {
    margin-bottom: 30px;
  }

  .split-image img {
    width: 100%;
    max-width: 950px;
    height: auto;
    margin: 0 auto;
  }

  .split-text {
    padding: 0 30px;
  }
}



/* Sage Green Split Section */

.sage-split-section {
    background: #f4f2f0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image container */
.sage-split-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
}

.sage-split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Text container */
.sage-split-text {
    flex: 1;
    max-width: 600px;
    color: #323232;
    text-align: left;
    font-family: 'Raleway', sans-serif;
}

.sage-split-text h2 {
    font-size: 2.2rem !important;
    font-family: 'Playfair Display', serif;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
	color: #323232;
}

.sage-split-text h3 {
    font-size: 2.2rem !important;
    font-family: 'Playfair Display', serif;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
	color: #323232;
}

.sage-split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 10px;
    color: #323232!important;
}

.sage-split-text p.bold-line {
    font-weight: 700;
    font-size: 1.1rem;
    color: #323232;
}

.sage-split-text a {
    display: inline-block;
    font-weight: bold;
    text-decoration: underline;
    color: #323232;
    transition: color 0.3s ease;
}

.sage-split-text a:hover {
    color: #d4d4c5;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .sage-split-section {
    flex-direction: column;
    text-align: center;
  }

  .sage-split-text,
  .sage-split-image {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .sage-split-image {
    margin-bottom: 30px;
  }

  .sage-split-image img {
    width: 99%;
    max-width: 950px;
    min-height: 650px;
    margin: 0 auto;
  }
	
.sage-split-text {
    padding: 0 70px;
}
	
  .image-label {
    right: 5%;
    bottom: 10px;
  }
}

@media screen and (max-width: 980px) {
  .sage-split-section {
    flex-direction: column;
    text-align: center;
  }

  .sage-split-text,
  .sage-split-image {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .sage-split-image {
    margin-bottom: 30px;
  }

  .sage-split-image img {
    width: 100%;
    max-width: 950px;
    height: auto;
    margin: 0 auto;
  }

  .sage-split-text {
    padding: 0 30px;
  }

  .image-label {
    right: 5%;
    bottom: 10px;
  }
}


/* Advanced Infodrop Dropdown */
.advanced-infodrop {
  margin: 2rem auto;
  max-width: 900px;
  padding: 0 2rem;
}

.infodrop-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}

.infodrop-toggle {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 0;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  line-height: 1.4;
  min-height: 45px;
  display: flex;
  align-items: center;
}

.infodrop-toggle:hover {
  color: #555;
}

.infodrop-toggle:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Arrow indicator */
.infodrop-toggle::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #666;
  transition: transform 0.3s ease;
}

.infodrop-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* CRITICAL: Hide content by default with CSS, not JavaScript */
.infodrop-content {
  padding: 1rem 0 1rem 0;
  background: transparent;
  border-top: none;
  /* Hide by default - but content is still in HTML for bots */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

/* Show content when expanded */
.infodrop-toggle[aria-expanded="true"] + .infodrop-content {
  max-height: 500px; /* Large enough for any content */
  opacity: 1;
}

.infodrop-heading {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 3rem auto 2rem auto;
  color: #222;
  max-width: 900px;
  padding: 0 2rem;
  line-height: 1.3;
}

.infodrop-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #555;
}

.infodrop-content p:last-child {
  margin-bottom: 0;
}

.infodrop-content a {
  color: #007bff;
  text-decoration: underline;
}

.infodrop-content a:hover {
  color: #0056b3;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .advanced-infodrop {
    padding: 0 1rem;
    margin: 1rem auto;
  }
	
.infodrop-heading {
  font-size: 1.5rem;
  padding: 0 1rem;
}
  
  .infodrop-toggle {
    padding: 0.7rem 2rem 0.7rem 0;
    font-size: 1rem;
    min-height: 40px;
  }
  
  .infodrop-toggle::after {
    right: 0;
    font-size: 0.8rem;
  }
  
  .infodrop-content {
    padding: 0.8rem 0;
  }
  
  .infodrop-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Override link colors on mobile */
  .infodrop-content a {
    color: #555;
    text-decoration: none;
  }
  
  .infodrop-content a:hover,
  .infodrop-content a:active,
  .infodrop-content a:focus {
    color: #555;
    text-decoration: none;
  }
}





/* Split Info Section with Full-Height Image on Left */
.pet-portraits-info {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    border-bottom: 1px solid #ddd;
    background: #9c9c8d; /* fallback in case image doesn't load */
}

/* Fix ONLY for .pet-portraits-info layout */
.pet-portraits-info .portraits-image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.pet-portraits-info .portraits-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Keep label pinned to image */
.pet-portraits-info .image-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 5px;
  font-family: 'Raleway', sans-serif;
  pointer-events: none;
}


/* Right side text content */
.portraits-text {
    flex: 1;
    background-color: #9c9c8d; /* soft sage */
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    text-align: left;
}

/* Custom non-h2 heading */
.section-heading {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

/* Bold intro line */
.portraits-text p.bold-line {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Regular text */
.portraits-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.portraits-text a {
    display: inline-block;
    text-decoration: underline;
    color: #ffffff;
    transition: color 0.3s ease;
}

.portraits-text a:hover {
    color: #d4d4c5;
}

.portraits-text a:visited {
    color: #fff;
}





/* ========================= */
/* CONTACT BUTTONS STYLES */
/* ========================= */

.inline-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.inline-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #eee;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #222;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

.inline-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.email-btn {
  background-color: #e74c3c;
  color: white;
}

.form-btn {
  background-color: #d0d6c5;
  color: #000;
}

.form-btn:hover {
  background-color: #c0c8b5;
  color: white;
}

.form-btn:visited {
  color: #000;
}

.form-btn:visited:hover {
  color: white;
}

.messenger-btn {
  background-color: #0084FF;
  color: white;
}

.messenger-btn:hover {
  background-color: #006edc;
  color: white;
}

.messenger-btn:visited {
  color: white;
}

.inline-button i {
  font-size: 18px;
}

/* Stack contact buttons on mobile */
@media (max-width: 600px) {
  .inline-contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .inline-contact-buttons .inline-button {
    width: 80%;
    justify-content: center;
    margin-bottom: 10px;
  }
}


/* Contact Form Container */
.contact-form-wrapper {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-wrapper button[type="submit"] {
    background-color: #c4a468;
    color: #222;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.contact-form-wrapper button[type="submit"]:hover {
    background-color: #d4a419;
    color: white;
}
.honeypot {
    display: none;
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}




/* Custom Section */
.custom-section {
    background-color: #2b2b2b; /* Dark background */
    color: #fff; /* White text */
    padding: 50px 50px;
}

/* Container to hold columns */
.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns items at the top */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px; /* Adjusts the gap between columns */
}

/* Column Styling */
.custom-column {
    flex: 1;
    margin: 10px;
}

/* Left Column Specific Styling */
.custom-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns title at the top */
    text-align: right;
    flex: 1; /* Ensures both sides take equal space */
}

/* Ensures right column stays aligned */
.custom-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensures text starts from the top */
    text-align: left;
    flex: 1; /* Ensures both columns are balanced */
}

/* Large Text Styling */
.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Small Text Styling */
.small-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Ensure the custom section title doesn't inherit global styles */
.custom-title {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    margin-bottom: 15px;
    text-align: right; /* Aligns with the larger paragraph */
    color: white !important;
    border: none !important;
    padding-bottom: 0 !important;
    font-family: 'Raleway', sans-serif !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column; /* Stacks columns vertically */
    }

    .custom-left, .custom-right {
        text-align: center; /* Center-align text on smaller screens */
    }

    /* Ensures title is the first item */
    .custom-title {
        order: -1; /* Moves the title to the top */
        text-align: center !important; /* Centers the title on mobile */
        margin-bottom: 20px; /* Adds space below */
    }

    /* Keep large text below the title */
    .large-text {
        order: 0; /* Keeps large text after the title */
        margin-bottom: 20px;
    }
}


/* Index Gallery - Three Images Side by Side */
/* Index Gallery - Three Images Side by Side */
.index-gallery {
    max-width: 1300px; /* Increased from 1100px for wider gallery */
    margin: 0 auto;
    padding: 0 0 40px 0; /* Added 40px bottom padding */
}

.index-gallery .index-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
}

.index-gallery .index-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Remove outer padding from first and last items */
.index-gallery .index-item:first-child {
    padding-left: 0;
}

.index-gallery .index-item:last-child {
    padding-right: 0;
}

/* Image link styling */
.index-gallery .index-item a {
    display: block;
    text-decoration: none;
}

/* Image styling */
.index-gallery .index-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Title styling */
.index-gallery .index-item h3 {
    margin: 5px 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.index-gallery .index-item h3 a {
    color: #333;
    text-decoration: none;
}

/* Button container and styling */
.index-gallery .index-item .clickeroo {
    margin-top: 10px;
}

.index-gallery .index-item .clickeroo a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .index-gallery .index-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .index-gallery .index-item {
        padding: 0;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .index-gallery .index-item:first-child,
    .index-gallery .index-item:last-child {
        padding: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .index-gallery .index-item {
        padding: 0 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .index-gallery .gallery-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .index-gallery .gallery-item {
        padding: 0;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .index-gallery .gallery-item:first-child,
    .index-gallery .gallery-item:last-child {
        padding: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .index-gallery .gallery-item {
        padding: 0 8px;
    }
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 20px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Title Styling */
.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
    display: inline-block;
    margin-top: 10px !important;
    padding-top: 0 !important;
    font-family: 'Raleway', sans-serif !important;
}


/* Gallery container with flexbox layout */
.larger-pages-gallery .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual gallery items */
.gallery-item {
    flex: 1 1 30%;
    max-width: 600px;
    text-align: center;
    box-sizing: border-box;
}

/* Image styling */
.gallery-item img {
    width: 100%;
    height: auto; /* Maintain natural aspect ratio */
    display: block;
    border-radius: 10px;
	    transition: none !important;  /* Stop animations */
    transform: none !important;   /* Stop scale/move */
    outline: none !important;     /* Remove focus outlines */
}

/* Hover effect (optional) */
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Hide captions from view but keep them for screen readers */
.gallery-item figcaption.sr-only {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.external-link {
    font-weight: bold;
    color: #666;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .gallery-item {
        flex: 1 1 100%;
        max-width: 90%;
    }
}

/* Two per row on medium screens */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 1 1 45%;
        max-width: 500px;
    }
}

/* One per row on small screens */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        flex: 1 1 100%;
        max-width: 90%;
    }
}



/* Info section */
.info-section {
    background: white;
    padding: 20px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.info-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.info-image {
    max-height: 900px;
}

@media screen and (max-width: 768px) {
    .info-image {
        height: 70vh;
        min-height: 300px;
        object-fit: cover;
        width: 100%;
        display: block;
    }
}

/* Remove default spacing from <figure> */
figure {
  margin: 0;
  padding: 0;
}

/* Make sure images don鈥檛 behave like inline elements */
figure img {
  display: block;
  width: 100%;           /* Optional: keeps images fluid */
  height: auto;          /* Optional: maintains natural scaling */
  object-fit: cover;     /* Optional: crop if container is fixed height */
}

/* If you鈥檙e using figcaption, keep it clean */
figure figcaption {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;     /* Optional styling */
  color: #666;           /* Optional styling */
}

/* Optional tighter control: strip stray line-height/padding if needed */
figure, figure * {
  line-height: 1;
  vertical-align: top;
}


/* TESTIMONIAL SECTION */
/* Quick Jump Navigation */
.testimonial-nav {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 2px solid #c9beab;
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-btn {
    background: #323232;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover, .nav-btn.active {
    background: #c9beab;
    color: #323232;
}

/* Navigation description text */
.nav-container p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

/* Section Headers */
.testimonial-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border-radius: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: #323232!important;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    border-bottom: 3px solid #c9beab;
    display: inline-block;
    padding-bottom: 10px;
}

/* Section description paragraphs */
.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Historical section special description */
.testimonial-section p.historical-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Integration */
.faq-box {
    background: #f0f4f8;
    border-left: 4px solid #c9beab;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.faq-question {
    font-weight: bold;
    color: #323232;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

/* Video Grid */
.video-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Video styling */
.video-container video {
    width: 100%;
    height: auto;
}

/* Video captions */
.video-container p {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* Review Cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* Review Images - Updated Styling */
.review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #f5f5f5;
}

/* Responsive image sizing for different orientations */
.review-image.portrait {
    height: 400px;
    object-position: center top;
}

.review-image.landscape {
    height: 270px;
    object-position: center center;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: #c9beab;
    text-align: right;
}

/* Stats Box */
.stats-box {
    background: linear-gradient(135deg, #c9beab, #a8967a);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

/* Stats box heading */
.stats-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Stats box description */
.stats-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Filter Buttons for Oil and Pencil sections */
.filter-section {
    text-align: center;
    margin: 30px 0;
}

.filter-btn, .pencil-filter-btn {
    background: #f8f8f8;
    border: 2px solid #c9beab;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover,
.pencil-filter-btn.active, .pencil-filter-btn:hover {
    background: #c9beab;
    color: white;
}

/* Load More */
.load-more {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: #323232;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #c9beab;
    color: #323232;
}

/* Load more success message */
.load-more p {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Hidden Reviews */
.hidden-review {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    .section-title { 
        font-size: 2rem; 
    }
    .review-grid { 
        grid-template-columns: 1fr; 
    }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .review-image {
        height: 200px;
    }
    .review-image.portrait {
        height: 280px;
    }
    .review-image.landscape {
        height: 200px;
    }
    .section-header p {
        font-size: 1.1rem;
    }
    .stats-box h2 {
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Info Container */
.info-container {
    max-width: 900px;
    width: 90%;
    text-align: center;
    color: black;
    padding: 30px 20px;
}

.info-container h1,
.info-container h2,
.info-container h3 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    margin-top: 10px !important;
    padding-top: 0 !important;
    color: black !important;
    font-family: 'Raleway', sans-serif !important;
    border-bottom: 1px solid #1A1A1A !important;
}


.info-container p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}

.info-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Full-width Garden Studio Section */
.studio-section {
    background: #b5b9a3; /* Soft sage green */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Full-width image */
.studio-image {
    width: 100%;
    max-height: 90%; /* Adjust as needed */
    object-fit: cover; /* Ensures the image fills the space neatly */
}

/* Container for text */
.studio-container {
    max-width: 700px;
    width: 90%;
    text-align: center;
    padding: 40px;
	color: #000000 !important;
}

/* Title Styling */
.studio-container h1, 
.studio-container h2{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000000 !important;
	border-bottom: 1px solid #000000 !important;
}

/* Paragraph Styling */
.studio-container p {
    font-size: 1.1rem;
    line-height: 1.6;
	color: #000000 !important;
}

.studio-section a {
    color: #fff; 
    text-decoration: none;
}

/* Hover effect */
.studio-section a:hover {
    color: #5EABA0;
    text-decoration: underline;
}

/* Visited links */
.studio-section a:visited {
    color: #fff;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .studio-container {
        max-width: 90%;
    }

    .studio-container h2 {
        font-size: 1.8rem;
    }

    .studio-container p {
        font-size: 1rem;
    }

    .studio-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .studio-container h2 {
        font-size: 1.5rem;
    }

    .studio-container p {
        font-size: 0.9rem;
    }

    .studio-image {
        max-height: 450px;
    }
}


/* Full-width section with background */
.story-section {
    background: #58584e; /* Your chosen background color */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Make image full width while keeping it part of the section */
.story-image {
    width: 100%;
    max-height: 400px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image fills the area nicely */
}

/* Container for the text */
.story-container {
    max-width: 800px; /* Fixed width for text */
    width: 90%;
    text-align: center;
    color: white;
    padding: 60px 40px 40px 40px;
}

/* Title Styling */
.story-container h3 {
    font-size: 2rem;
    margin-bottom: 15px;
color:#FFFFFF!important;
}

/* Paragraph Styling */
.story-container p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .story-container {
        max-width: 90%;
    }

    .story-container h3 {
        font-size: 1.8rem;
    }

    .story-container p {
        font-size: 1rem;
    }

    .story-image {
        max-height: 300px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .story-container h2 {
        font-size: 1.5rem;
    }

    .story-container p {
        font-size: 0.9rem;

    }

    .story-image {
        max-height: 250px; /* Smaller image for mobile */
    }
}

/* Full-width testimonial section with background */
.testimonial-static {
    background: #9c9c8d; /* Matches your existing theme */
    padding: 30px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container for testimonials */
.testimonial-container {
    max-width: 700px;
    width: 90%;
    color: white; /* White text for contrast */
}

.testimonial-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFFFFF !important;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    border-bottom: none !important; /* Ensure no default black border */
}

/* Custom wider underline */
.testimonial-container h2::after {
    content: "";
    position: absolute;
    left: -10px; /* Extends underline beyond text */
    right: -10px;
    bottom: 0;
    height: 2px;
    background-color: #FFFFFF; /* Keeps it white */
}


/* Testimonial Text */
.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Author Styling */
.testimonial-author {
    font-size: 1.1rem;
    font-weight: bold;
}





/* Hero Section */
.hero-section {
	width: 100% !important; 
    background-color: #323232 !important; 
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 40px 0; 
}

/* Content inside the Hero */
.hero-content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Heading */
.hero-content h3,
.hero-content h4,
.hero-content h5 {
  font-size: 40px !important;
  margin-bottom: 10px;
  color: #f2f2f2;
  font-family: 'Raleway', sans-serif;
  font-weight: 900; /* Bold */
  border-bottom: 1px solid #f2f2f2;
}

/* Hero Paragraph */
.hero-content p {
    margin-top: 10px;
    color: #f2f2f2;
    font-size: 18px;
    padding: 0 50px;
    max-width: 900px;
}

/* White Contact button */
.whitebuttondiv {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.whitebutton a {
    display: inline-block;
    background-color: white;
    color: #000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    text-decoration: none !important;
    border-radius: 4px;
    border: 2px solid #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    text-align: center;
    min-width: 180px;
}

.whitebutton a:hover {
    background-color: #f2f2f2;
    color: #000;
    border-color: #000;
}

/* Visited links stay black */
.whitebutton a:visited {
    color: #000;
}

/* Mobile layout */
@media (max-width: 768px) {
    .whitebuttondiv {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .whitebutton a {
        width: 100%;
        max-width: 300px;
    }
}




/* Full-width background wrapper */
.faq-background {
    background: linear-gradient(to bottom, #ffffff 0px, #dfe3d6 150px);
    width: 100%;
}

/* Inner FAQ content area */
.faq-section {
    padding: 20px 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

.faq-section p.faq-heading {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #b5b9a3;
    color: #2f2f2f;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.faq-section .faq-main-heading {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #000 !important;
    text-align: center !important;
    margin-top: 60px !important;
    margin-bottom: 70px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #000 !important;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}



/* Paragraphs */
.faq-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
}

/* Links */
.faq-section a {
    color: #6b7a5c;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-section a:hover {
    color: #4e5d45;
}


/* SECTION BACKGROUNDS */
.section-white {
  background-color: #ffffff;
}

.section-cream {
  background-color: #f8efe1;
}

/* STEP WRAPPER */
.step-wrapper {
  width: 100%;
  padding: 40px 40px;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
  color: #333;
}

/* CONTAINER */
.step-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

/* TITLE */
.step-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: #000;
  text-align: center;
  margin: 0 auto 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  display: inline-block;
}

/* PARAGRAPH TEXT */
.step-description {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SECTION SUB-HEADING OR HIGHLIGHT */
.step-highlight {
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  margin: 25px 0 10px;
}

/* LINKS - consistent, accessible styling */
a {
  color: #000;
  text-decoration: underline;
}

a:visited {
  color: #000;
  text-decoration: underline;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .step-wrapper {
    padding: 40px 20px;
  }

  .step-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .step-content {
    padding: 0 10px;
  }

  .step-description {
    font-size: 1rem;
  }
}

/* Styling for Three Side-by-Side Images */
.three-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding-bottom: 20px;
}

/* Style figure wrappers */
.three-images figure {
  width: 32%;
  margin: 0;
}

/* Ensure images fill figure and scale properly */
.three-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

/* Responsive stacking on tablets & mobile */
@media (max-width: 1024px) {
  .three-images {
    flex-direction: column;
    align-items: center;
  }

  .three-images figure {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
  }

  .three-images figure:last-child {
    margin-bottom: 0;
  }
}






/* Wrapper to Center the Converter Box */
.currency-wrapper {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    width: 100%;
    margin: 20px auto;
    text-align: center;
}

/* Ensures the Box is Properly Centered */
.columns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto; /* Adjusts based on content */
    text-align: center;
    margin: 0 auto; /* Forces centering */
}

.currency-wrapper .wprice {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 10px;
    background: #33383b;
    color: white;
    border-radius: 8px;
}

.currency-header {
    background-color: #33383b; /* Keeps the dark background */
    color: white;
    font-size: 18px; /* Adjust as needed */
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
    text-align: center;
}


/* Pricing Section Styling */
.pricing-section {
    background-color: #b5b9a3; /* Neutral sage green */
    padding: 20px 0px;
    color: #000;
	width: 100%;
    text-align: center;
	
}

.pricing-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #000 !important;
    border-bottom: 1px solid #000 !important;
    padding-bottom: 10px;
    display: inline-block; /* Ensures the underline only spans the text */
    padding-left: 20px; /* Adds space on the left */
    padding-right: 20px; /* Adds space on the right */
}


/* Intro Text Styling */
.pricing-intro {
    font-size: 1rem;
    line-height: 1.8;
    padding: 30px;
    text-align: center; 
}

/* Wrapper for All Pricing Groups */
.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
}

/* Each Pricing Group (Box + Image) */
.pricing-group {
    width: 26%; /* Gives space for 3 with gap */
    min-width: 280px; /* Prevents squishing on mid-size screens */
}

/* Pricing Box */
.pricing-item {
    background: #ffffff;
    color: #333;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title Inside Pricing Box */
.pricing-subtitle {
    font-size: 2.1rem;
    color: #000;
    font-family: 'Playfair Display SC', serif; 
    font-weight: 400;
    margin: 0 auto 20px auto;
    padding-bottom: 10px;
    border-bottom: 2px solid black;
    display: block; /* Make it block so the underline always shows */
    width: fit-content; /* Keeps underline only under the text */
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.4; /* A bit more readable than 1 */
    color: #555;
    margin: 2px 0; /* Very small vertical spacing between lines */
}
.pricing-description-block {
    padding: 20px 0; /* Or whatever feels right */
}
/* Title Link Styling */
.pricing-subtitle a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pricing-subtitle a:hover {
    color: #000;
    text-decoration: none; /* Add this line */
}
.pricing-subtitle a:visited {
    color: #000;
}

/* Price List */
.pricing-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pricing-list li:last-child {
    border-bottom: none;
}
.size,
.price {
    font-weight: bold;
    color: #222;
}

/* Image Below Pricing Box */
.pricing-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .pricing-group {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-group {
        width: 90%;
    }

    .pricing-title {
        font-size: 2rem;
        max-width: 90%;
        border-bottom: 1px solid white;
    }
}

@media (max-width: 480px) {
    .pricing-group {
        width: 100%;
    }

    .pricing-title {
        max-width: 80%;
    }
}

/* Multi-pet Table Styling */
.multi-pet-table-wrapper {
    margin-top: 25px;
    overflow-x: auto;
}

.multi-pet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: center;
    color: #333;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* Header row styling */
.multi-pet-table thead {
    background-color: #ffffff; /* No pink */
    border-bottom: 2px solid #ccc;
}

.multi-pet-table th,
.multi-pet-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.multi-pet-table th {
    font-weight: 600;
    color: #000;
}

.multi-pet-table td {
    font-weight: 400;
    color: #222;
}

/* Responsive Font Size */
@media (max-width: 768px) {
    .multi-pet-table {
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .multi-pet-table th,
    .multi-pet-table td {
        padding-left: 4px;
        padding-right: 4px;
    }
}





/* black bar */	
.black-info-bar {
    background-color: #323232;
    color: white;
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.black-info-bar h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.black-info-bar p {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
    padding: 0 20px;
}

.black-info-subheading {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 6px;
}

.black-info-bar p:first-of-type .black-info-subheading {
    margin-top: 0; /* tighter spacing below the main heading */
}

	
	
/* Full-width Info Section */
.size-section {
    background-color: #58584e; /* Dark gray background */
    padding: 60px 20px;
    width: 100%;
    color: #f1f1f1; /* Slightly off-white for better contrast */
    text-align: center;
}

/* Centered Container for Content */
.size-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Title Styling */
.size-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white !important;
    border-bottom: 1px solid white; /* White underline */
    padding-bottom: 10px;
    display: inline-block; /* Keeps underline only as wide as the text */
    text-align: center;
}

/* Paragraph Styling */
.size-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 700px; /* Prevents overly long lines for readability */
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .size-section {
        padding: 40px 15px; /* Reduce padding on smaller screens */
    }
    .size-title {
        font-size: 2rem;
    }
    .size-text {
        font-size: 1rem;
    }
}

/* Main Reviews Container */
.reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Full-width Reviews */
.review.full-width {
    text-align: center;
    background: #cbcdc3; /* Soft cream */
    padding: 40px 20px;
    margin-bottom: 30px;
	margin-top: 30px;
    border-radius: 10px;
}

.review.full-width .review-image {
    width: 60%; /* Makes the image larger */
    max-width: 500px; /* Ensures a clean, readable image */
    height: auto;
    border-radius: 15px; /* Soft rounded corners */
    margin-bottom: 20px;
}

/* Two-Column Reviews */
.review.two-column {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Individual Review Items */
.review-item {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* New Larger Image Styling */
.review-item .review-image {
    width: 100%; /* Ensures the image fills its container */
    max-width: 400px; /* Restricts the size */
    height: auto;
    border-radius: 15px; /* Soft edges */
    margin-bottom: 15px;
}

/* Review Text */
.review-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.review-text span {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: bold;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review.two-column {
        flex-direction: column;
    }

    .review-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .review.full-width .review-image,
    .review-item .review-image {
        width: 90%;
        max-width: 350px; /* Adjusts the size for mobile */
    }

    .review-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .review.full-width .review-text {
        font-size: 1rem;
    }
}


/* Main video container - centers everything and limits width */
.videobox {
    max-width: 1200px; /* Controls overall width instead of 100vw */
    margin: 0 auto; /* Centers the container */
    padding: 40px 20px; /* Adds padding around videos */
    background-color: #f8f8f8;
}

/* Video gallery - flex container for all videos */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: flex-start; /* Aligns videos to top */
}

/* Portrait video containers */
.video-container.portrait {
    flex: 0 0 280px; /* Fixed width, no grow/shrink */
    max-width: 280px; /* Smaller than your current 320px */
}

.video-container.portrait video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds subtle shadow */
}

/* Landscape video container */
.landscape-video-container {
    flex: 0 0 100%; /* Takes full width of gallery */
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-container.landscape {
    max-width: 600px; /* Smaller than your current 640px */
    width: 100%;
}

.video-container.landscape video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .videobox {
        padding: 20px 10px;
    }
    
    .video-container.portrait {
        flex: 0 0 250px; /* Slightly smaller on mobile */
        max-width: 250px;
    }
    
    .video-container.landscape {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container.portrait {
        flex: 0 0 90%;
        max-width: 300px;
    }
}


/* Masonry Gallery */
.modern-gallery {
    column-count: 3;
    column-gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Individual Image Blocks */
.modern-item {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    break-inside: avoid;
    cursor: pointer; /* Ensures it's clickable */
    border-radius: 10px;
}

/* Image Styling */
.modern-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Caption Overlay */
.modern-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
}

/* Lightbox Styling */
.modern-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

/* Lightbox Image */
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
}

/* Navigation Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transform: translateY(-50%);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Default: 3 Columns */
.modern-gallery {
    column-count: 3; /* 3 images per row */
    column-gap: 15px; /* Space between images */
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Adjust for Tablets (iPads) */
@media (max-width: 1024px) {
    .modern-gallery {
        column-count: 3; /* 3 images per row */
    }
}

/* Adjust for iPads in Portrait (768px - 820px) */
@media (max-width: 820px) {
    .modern-gallery {
        column-count: 3; /* 3 images per row */
    }
}

/* Adjust for Mobile (Phones) */
@media (max-width: 768px) {
    .modern-gallery {
        column-count: 1; /* 1 image per row */
    }
}




.black-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2b2b2b;
    color: white;
    padding: 60px 10%; /* Keeps spacing balanced */
    gap: 40px;
    border-radius: 20px; /* Adds rounded corners */
    max-width: 90%; /* Prevents stretching to the full page width */
    margin: 40px auto; /* Centers the box and adds spacing */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); /* Adds subtle shadow */
}

/* Left column for image & heading */
.black-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
}

/* Image styling */
.black-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

/* Right column for smaller text */
.black-right {
    flex: 1;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

/* Ensure heading is styled properly */
.black-left h2 {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff !important;
    padding-bottom: 5px; /* Ensures proper spacing under the line */
}

/* Ensure heading is styled properly */
.black-left h3 {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff !important;
    padding-bottom: 5px; /* Ensures proper spacing under the line */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .black-section {
        flex-direction: row; /* Keeps image & text side by side */
        align-items: center;
        text-align: left; /* Aligns text properly */
        padding: 40px; /* More padding for better spacing */
        gap: 30px;
        max-width: 90%;
        margin: 0 auto;
    }

    .black-left {
        flex: 1;
        text-align: left;
    }

    .black-left img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .black-left h1 {
        font-size: 1.8rem;
    }

    .black-right {
        flex: 1;
        text-align: left;
        font-size: 1rem;
    }
}

/* Stacks only on smaller devices */
@media (max-width: 768px) {
    .black-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
        max-width: 95%;
    }

    .black-left img {
        max-width: 80%;
        margin: 0 auto;
    }

    .black-left h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .black-right {
        text-align: center;
        font-size: 1rem;
    }
}




/* General Styling */
.client-text-section {
    text-align: center;
    padding: 10px 20px 40px; /* Increased top padding */
    max-width: 800px;
    margin: 0 auto;
}

.client-text-section h1, .client-text-section h2 {
    font-size: 2rem;
    color: #2b2b2b!important;
    margin-bottom: 10px;
}

.client-text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Gallery Layout */
.client-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Alternating Background Colors */
.client-gallery-item:nth-child(4n+1) { background-color: #d0d6c5; } /* Soft Green */
.client-gallery-item:nth-child(4n+2) { background-color: #f1f1f1; } /* Light Grey */
.client-gallery-item:nth-child(4n+3) { background-color: #a5b49d; } /* Deeper Green */
.client-gallery-item:nth-child(4n+4) { background-color: #e0e4dc; } /* Soft Muted Grey-Green */

.client-gallery-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.client-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px; /* Adjust the value for more or less rounding */
    margin: 20px 0; /* Adds padding above and below */
    padding: 10px; /* Optional: Adds space inside */
}

/* Title Styling */
.client-gallery-item h3 {
    display: inline-block; /* Ensures the line only takes up the width of the text */
    border-bottom: 3px solid #333; /* Adjust thickness & color */
    padding-bottom: 5px; /* Adjust spacing */
}

/* Description Text */
.client-gallery-item p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .client-gallery-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 768px) {
    .client-gallery-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
    }

    .client-text-section {
        padding: 60px 15px 30px; /* Adjust for smaller screens */
    }
}




/* Commissioned Section */
.commissioned-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #c5bdac;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

.commissioned-section.green {
    background-color: #b5b9a3; 
}

/* Responsive Design: Stack Image Above Text on Smaller Screens */
@media screen and (max-width: 768px) {
    .commissioned-section {
        grid-template-columns: 1fr;
    }

    .commissioned-image {
        order: -1; /* Ensures image appears first */
    }

    .commissioned-text {
        padding: 20px; /* Adjust padding for better spacing */
    }
}

.commissioned-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commissioned-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: black;
}

.commissioned-text h3 {
    font-size: 1.6rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    color: black !important;
    border-bottom: 2px solid black !important;
    padding-bottom: 10px !important;
    display: block !important;
    font-family: 'Raleway', sans-serif !important;
}

.commissioned-text p {
    font-size: 18px;
    max-width: 400px;
}
.commissioned-text a {
    display: inline-block;
    text-decoration: underline;
    color: black;
    transition: color 0.3s ease;
}

.commissioned-text a:hover {
    color: #fff;
}

.commissioned-text a:visited {
    color: black;
}


.wedding-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff; 
    color: #323232;
    padding: 80px 8%;
    gap: 60px;
}

/* Images Side-by-Side on Larger Screens */
.wedding-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 55%; /* Increased size of the images */
}

.wedding-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

/* Text Content Section */
.wedding-content {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title Section */
.wedding-title {
    margin-bottom: 20px;
    text-align: left;
}

.wedding-title p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 20px;
    color: #323232;
    text-align: justify;
}

.wedding-title .subtitle {
    font-family: wfont_3dfcb8_9fc3d41d313a422aa2dc37bb3a1d52fc, 
               wf_9fc3d41d313a422aa2dc37bb3, 
               orig_libre_caslon_condensed_italic;
    font-style: italic;
    font-size: 50px;
}

.wedding-title .main-title {
    font-family: wfont_3dfcb8_9fc3d41d313a422aa2dc37bb3a1d52fc, 
                 wf_9fc3d41d313a422aa2dc37bb3, 
                 orig_libre_caslon_condensed_italic;
    font-weight: 700; /* Set this as needed */
    font-size: 1.9rem!important;
    font-style: italic; /* Optional: add to match subtitle if needed */
    margin-top: 30px;
    margin-bottom: 10px;
    line-height: 1.2;
}


.wedding-text {
    font-size: 18px;
    color: #323232;
    line-height: 1.8;
    text-align: left;
}


/* RESPONSIVE STYLES */

/* Tablets (Medium Screens) */
@media (max-width: 1024px) {
    .wedding-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .wedding-images {
        max-width: 80%;
    }

    .wedding-content {
        max-width: 80%;
    }

    .wedding-title .subtitle {
        font-size: 38px;
    }

    .wedding-title .main-title {
        font-size: 32px;
    }

    .wedding-text {
        font-size: 16px;
    }
}

/* Mobile (Small Screens) */
@media (max-width: 768px) {
    .wedding-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .wedding-images {
        max-width: 100%;
    }

    .wedding-content {
        max-width: 100%;
    }

    .wedding-title .subtitle {
        font-size: 28px;
    }

    .wedding-title .main-title {
        font-size: 26px;
    }

    .wedding-text {
        font-size: 14px;
    }

    .wedding-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* Unified Image Container Styles for Oil Site */
.img-container,
.img-container1,
.img-container2,
.img-container3,
.img-container4,
.img-container5,
.img-container6,
.img-container7,
.img-container8,
.img-container9,
.img-container10,
.img-container11,
.img-container12,
.img-container13,
.img-container14,
.img-container15,
.img-container20,
.img-container21{
    width: 100%;
    height: 28vh;
    min-height: 380px;
    max-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 10;
    box-shadow: 0px 12px 20px -6px rgba(0, 0, 0, 0.4);
}

/* Individual background images */
.img-container  { background-image: url(https://www.pet-portraitartist.com/images/hand-painted-pet-portraits.webp); }
.img-container1 { background-image: url(https://www.pet-portraitartist.com/images/cat-portraits-comission-information-2.webp); }
.img-container2 { background-image: url(https://www.pet-portraitartist.com/images/pet-portrait-artists.webp); }
.img-container3 { background-image: url(https://www.pet-portraitartist.com/images/pet-portraits-contact.webp); }
.img-container4 { background-image: url(https://www.pet-portraitartist.com/images/pet-portrait-reviews.webp); }
.img-container5 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits.webp); }
.img-container6 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits1.webp); }
.img-container7 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits2.webp); }
.img-container8 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits3.webp); }
.img-container9 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits4.webp); }
.img-container10 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits5.webp); }
.img-container11 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits6.webp); }
.img-container12 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits7.webp); }
.img-container13 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits8.webp); }
.img-container14 { background-image: url(https://www.pet-portraitartist.com/images/oil-pet-portraits9.webp); }
.img-container15 { background-image: url(https://www.pet-portraitartist.com/images/pencil-pet-portraits.webp); }
.img-container20 { background-image: url(https://www.pet-portraitartist.com/images/pet-portrait-artists-1.webp); }
.img-container21 { background-image: url(https://www.pet-portraitartist.com/images/dog-portraits-framed-8.webp); }

/* Responsive height adjustments */
@media (max-width: 1024px) {
    .img-container,
    .img-container1,
    .img-container2,
    .img-container3,
    .img-container4,
    .img-container5,
    .img-container6,
    .img-container7,
    .img-container8,
    .img-container9,
    .img-container10,
    .img-container11,
    .img-container12,
    .img-container13,
    .img-container14,
    .img-container15,
    .img-container20,
	.img-container21{
        height: 30vh;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .img-container,
    .img-container1,
    .img-container2,
    .img-container3,
    .img-container4,
    .img-container5,
    .img-container6,
    .img-container7,
    .img-container8,
    .img-container9,
    .img-container10,
    .img-container11,
    .img-container12,
    .img-container13,
    .img-container14,
    .img-container15,
    .img-container20,
	.img-container21{
        height: 26vh;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .img-container,
    .img-container1,
    .img-container2,
    .img-container3,
    .img-container4,
    .img-container5,
    .img-container6,
    .img-container7,
    .img-container8,
    .img-container9,
    .img-container10,
    .img-container11,
    .img-container12,
    .img-container13,
    .img-container14,
    .img-container15,
    .img-container20,
	.img-container21{
        height: 22vh;
        max-height: 200px;
    }
}

.star-row {
  text-align: center;
  margin: 1rem 0;
}

.star-row .fa-star {
  color: gold;
  margin: 0 4px;
  font-size: 1rem;
}



/* Homepage YouTube Shorts Section */
.shorts-video-section {
  background-color: #fdf7ef;
  padding: 4rem 1rem;
  text-align: center;
}

.shorts-video-container {
  max-width: 600px;
  margin: 0 auto;
  color: #000;
  font-family: Georgia, serif;
}

.shorts-video-container h2 {
    font-family: wfont_3dfcb8_9fc3d41d313a422aa2dc37bb3a1d52fc, 
               wf_9fc3d41d313a422aa2dc37bb3, 
               orig_libre_caslon_condensed_italic;
    font-style: italic!important;
    font-size: 2.5rem!important;
  margin-bottom: 1rem;
}

.shorts-video-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.shorts-video-wrapper {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
}



/* Masonry Grid */
.oil-gallery {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.oil-gallery-grid {
    column-count: 3;
    column-gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Individual Masonry Items */
.oil-gallery-item {
   display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 10px;
}

/* Images Inside Masonry */
.oil-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Text Block Styled Like an Image */
.oil-gallery-item.text-block {
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

/* Responsive Masonry Grid Adjustments */
@media (max-width: 1024px) {
    .oil-gallery-grid {
        column-count: 2;
        column-gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .oil-gallery {
        padding: 20px;
    }

    .oil-gallery-grid {
        column-count: 1;
        column-gap: 8px;
        padding: 10px;
    }

    .oil-gallery-item {
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .oil-gallery-item.text-block {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oil-gallery {
        padding: 15px;
    }

    .oil-gallery-grid {
        column-gap: 5px;
    }

    .oil-gallery-item.text-block {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Intro Section (Black) */
.oil-gallery-intro {
    background: #323232;
    color: white;
    text-align: center;
    padding: 50px 100px;
    position: relative;
    z-index: 2;
}

.oil-gallery-intro h2, h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white !important;
    border-bottom: 1px solid white !important;
    display: inline-block;
    padding-bottom: 10px;
}

@media (max-width: 1024px) {
    .oil-gallery-intro {
        padding: 40px 60px;
    }
    .oil-gallery-intro h2, h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .oil-gallery-intro {
        padding: 30px 40px;
    }
    .oil-gallery-intro h2, h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .oil-gallery-intro {
        padding: 20px 20px;
    }
    .oil-gallery-intro h2, h1 {
        font-size: 1.8rem;
    }
}


#section1{max-width:850px;margin:0 auto;padding-right:5px;padding-left:5px;color:#333333;font-size:17px;font-family:'Playair Display', serif;line-height:1.9em;font-weight:normal;font-style:normal;text-decoration:none!important}
#section1 .justify{text-align:justify;text-decoration:none}

.terms {color: #b20000;text-align: justify;padding: 0 20px 0 10px}


.testimonials {max-width:100%;margin: 0 auto;box-sizing: border-box;padding: 40px .7% 40px 1.7%;background-color: #fafafa;background-repeat: no-repeat;background-size: cover;outline-style: solid;outline-color:#d7d8d3;}

blockquote.style2{font-family:'El Messiri',sans-serif!important;font-weight:400;font-size:16px;color:#6c6c68;text-align:left;margin:10px 60px 10px 50px;padding-left:15px;border-left:3px solid #d7d8d3!important}

blockquote.style3{font-family: 'Source Sans Pro', sans-serif;font-weight:400;font-size:16px;color:#fff;text-align:left;margin:10px 60px 10px 50px;padding-left:15px;border-left:3px solid #d7d8d3}


.class1{padding:0 20px 0 10px!important;margin: 1em 0 .5em 0!important;font-family: 'Playfair Display SC', serif!important;position:relative!important;font-size:18px!important;line-height:40px!important;text-transform:lowercase!important;color:#d7d8d3!important;border-bottom:1px solid rgba(64,58,53, 0.2)!important;}
.class1 span{color:#a1a19f;padding-left:6px;padding-right:4px}
.class1 span:hover{color:#6c6c68}
.class2{text-align:center!important;color:#7a98ae;font-size:10px;}
.class4{color:#4d4d4d;text-align:center!important;font-family:Playfair Display SC,sans-serif;font-weight:400;font-size:25px;text-transform:uppercase;}
.class6{color:#f16334;font-family:Playfair Display SC,serif;font-weight:400;font-size:18px;}
.class10{color:#4d4d4d!important;font-family:'El Messiri',sans-serif!important;font-size:18px!important;font-weight:400!important;}