/* main.css - Core styles */

/* Global Styles */
:root {
    --primary-color: #6A8A73; /* Muted Forest Green */
    --secondary-color: #14527B; /* Deep Blue */
    --accent-color: #FF994F; /* Warm Sunset Orange */
    --dark-color: #201F24; /* Deep Charcoal Black */
    --light-color: #F8F1E9; /* Soft Cream White */
    --neutral-color: #A9A9A9; /* Soft Gray */
    --text-color: #201F24; /* Deep Charcoal for text */
    --spacing: 2rem;
}

/*  --dark-color: #201F24; /* Deep Charcoal Black */ */

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

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: 120px; /* Space for fixed header */
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header & Navigation */
header {
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    /* position: sticky; */ /* Commented out - Handled by enhanced-header */
    /* top: 0; */ /* Commented out - Handled by enhanced-header */
    /* z-index: 100; */ /* Commented out - Handled by enhanced-header */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

/* Commented out basic navigation styles - using enhanced navigation from nav.css */
/*
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

nav ul li a:hover, 
nav ul li a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}
*/

/* Mobile menu button styles moved to nav.css */

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero/bwhero.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 3rem;
    margin-top: -12px; /* Negative margin to make flush with fixed header */
}

.hero-content {
    animation: fadeIn 1.5s ease-in-out;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero/page-header.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 99;
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.btn-alt {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-alt:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
    padding: var(--spacing) 0;
}

section {
    margin-bottom: var(--spacing);
    position: relative;
    padding: 4.5rem 0;
    z-index: 1;
    opacity: 0.8;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

section:nth-of-type(odd) {
    background-color: var(--light-color);
}

section:nth-of-type(even) {
    background-color: white;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.section-title {
    display: inline-block;
    margin: 0 auto 0.5rem;
    position: relative;
    padding: 0 0 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px; 
    background-color: var(--accent-color);
}

.section-title.animate-in,
.section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Private Gallery Section */
.private-gallery {
    padding: 3rem 0;
    background-color: var(--light-color);
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: -2rem;
    padding-top: 0;
}

.gallery-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
    min-height: 100px;
}

.gallery-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-card-icon {
    margin-bottom: 1.5rem;
}

.gallery-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(106, 138, 115, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.gallery-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.gallery-card h2::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    margin-top: 0.5rem;
}

.gallery-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.gallery-launch-link {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.gallery-launch-link a {
    color: var(--accent-color);
    font-weight: 600;
}

.gallery-launch-link a:hover {
    text-decoration: underline;
}

.gallery-form {
    position: relative;
    z-index: 2;
}

.input-group {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-right: none;
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 138, 115, 0.1);
}

.input-group .btn {
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
}

/* Add decorative elements */
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(106, 138, 115, 0.05);
    border-radius: 0 0 0 100%;
    z-index: 1;
}

.gallery-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 153, 79, 0.05);
    border-radius: 0 100% 0 0;
    z-index: 1;
}

/* About Section Styles */
.about {
    position: relative;
    padding: 6rem 0 14rem;
    background-color: transparent;
    overflow: visible;
    z-index: 0;
    margin-bottom: 0;
    margin-top: 2rem;
}

.about-title-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.about-title {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--light-color);
    padding: 0.5rem 2rem 1rem;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 0 0 4px 4px;
    transform: scaleX(0.3);
}

.about-container {
    position: relative;
    z-index: 5;
}

/* Three-column layout */
.about-columns {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    align-items: stretch;
}

.about-column {
    flex: 1;
    min-width: 250px;
    display: flex;
}

/* Text column gets more space */
.about-text {
    flex: 1.2;
}

/* Card styling */
.content-card {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
    min-height: 100px;
}

.content-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Styling for image columns */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image .content-card {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

/* Image container */
.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* First (vertical) image */
.about-column:first-of-type .about-img-direct,
.about-column:last-of-type .about-img-direct,
.about-column:last-of-type .about-img-direct2 {
    max-height: 350px;
    width: auto;
    object-fit: cover;
}

/* General image styling */
.about-img-direct,
.about-img-direct2 {
    max-width: 100%;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Text card specific styling */
.text-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 0.5rem;
}

/* Mountain background styling */
.mountain-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1 !important;
    overflow: hidden;
    pointer-events: none !important;
}

.mountain-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translateX(-50%) scale(1.2);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Category Cards */
.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.category-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card .content {
    padding: 1.5rem;
    text-align: center;
}

.category-card h3 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* CTA Section Enhancement - Apply to all pages */

/* Improved CTA Section with better contrast */
.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Add a darker overlay to ensure text readability */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Enhanced button with better contrast */
.cta-section .btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    background-color: #e88e40; /* Slightly darker than var(--accent-color) */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Alternative Button Style for Light Backgrounds */
.btn-dark {
    background-color: var(--dark-color);
    color: white;
}

.btn-dark:hover {
    background-color: var(--primary-color);
}

/* Optional gradient background for more visual interest */
.cta-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #0e3b57);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}
/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-col ul li a {
    color: var(--light-color);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--neutral-color);
}

/* Introduction Section */
.intro-section {
    padding: 3rem 0;
    text-align: center;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Full-screen Category Slices */
.fullscreen-categories {
    display: flex;
    width: 100%;
    height: 80vh;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: -2rem;
}

/* Category slices header */
.categories-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    color: white;
    z-index: 10;
    pointer-events: none;
}

.categories-header h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.categories-header h2::after {
    display: none;
}

.category-slice {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(0,0,0,0.05);
}

.category-slice:first-child {
    border-left: none;
}

.category-slice:last-child {
    border-right: none;
}

.slice-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.9);
    transition: all 0.7s ease;
}

.slice-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--slice-color, rgba(0, 0, 0, 0.3));
    z-index: 1;
    transition: opacity 0.5s ease;
}

.slice-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.slice-text-wrapper {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 4px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.slice-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-transform: uppercase;
    color: white;
    margin: 0.5rem 0;
    letter-spacing: 4px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.decorative-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* Slice CTA */
.slice-cta {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
}

.slice-cta .btn-slice {
    background-color: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.slice-cta .btn-slice:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hover Effects */
.category-slice:hover {
    flex: 1.8;
    z-index: 6;
}

.category-slice:hover .slice-image img {
    filter: saturate(1.1) brightness(1.05);
    transform: scale(1.05);
}

.category-slice:hover .slice-text-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.category-slice:hover .slice-image::after {
    opacity: 0.7;
}

.category-slice:hover .slice-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Touch device handling */
.category-slice.tapped .slice-image img {
    filter: saturate(1.1) brightness(1.05);
}

.category-slice.tapped .slice-text-wrapper,
.category-slice.tapped .slice-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

/* Seasonal Tabs */
.season-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.season-tab {
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.season-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.season-tab:last-child {
    border-radius: 0 4px 4px 0;
}

.season-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* Print Options */
.print-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.print-option {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.print-option .content {
    padding: 1.5rem;
}

.print-option h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.print-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
    margin-top: -8rem;
    padding-top: 10rem;
    z-index: 2;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/textures/subtle-dots.png');
    opacity: 0.05;
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Large screen optimizations */
@media screen and (min-width: 1200px) {
    .testimonial-grid {
        gap: 3rem;
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 2.5rem;
        min-height: 450px;
    }
}

/* Tablet breakpoint - single column for better readability */
@media screen and (max-width: 900px) and (min-width: 801px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
        width: 100%;
    }
}

/* Medium tablet breakpoint - 2 columns with larger spacing */
@media screen and (max-width: 1199px) and (min-width: 901px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.5rem 0;
    }
    
    .testimonial-card {
        padding: 2.25rem;
        min-height: 425px;
    }
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    opacity: 0.15;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-initials {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}


/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    margin-top: 2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
    min-height: 100px;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding-right: 2rem;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    border-left: 4px solid transparent;
}

.faq-answer p {
    margin: 0;
    padding: 0.5rem 0 1.5rem;
    line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-question {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    border-left-color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
    padding-bottom: 6rem;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('../images/dividers/wave-pattern.svg');
    background-size: 100px 10px;
    background-repeat: repeat-x;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-tab {
    padding: 0.8rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.04);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 0.3rem 0.5rem;
    border-radius: 4px;
    color: var(--text-color);
}

.pricing-tab:hover {
    background-color: rgba(106, 138, 115, 0.1);
}

.pricing-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* Pricing Panel Container */
.pricing-content {
    position: relative;
}

/* Individual Pricing Panels */
.pricing-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.pricing-panel.active {
    display: block;
}

/* Pricing Cards Layout */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Individual Pricing Card */
.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-top: 5px solid rgba(106, 138, 115, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
    min-height: 100px;
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Featured card styling */
.pricing-card.featured {
    border-top-color: var(--accent-color);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 0 0 8px;
    box-shadow: 0 3px 10px rgba(255, 153, 79, 0.3);
}

/* Pricing Card Header */
.pricing-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-header .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-top: 1.5rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: normal;
    text-align: center;
}

.pricing-header .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pricing-header h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.7;
}

.pricing-best-for {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.45;
    margin: -0.25rem auto 1rem;
    max-width: 22rem;
    font-weight: 400;
}

.pricing-price--from .price-prefix {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
    margin-bottom: 0.25rem;
}

/* Pricing Features */
.pricing-features {
    padding: 2rem 1.5rem;
}

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

.pricing-features li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Extras */
.pricing-extras {
    padding: 0 1.5rem 2rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.pricing-extras h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.pricing-extras li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.9;
}

.pricing-extras li::before {
    content: '+';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-extras .extra-price {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Footer */
.pricing-footer {
    display: none;
}

.pricing-footer .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: normal;
    text-align: center;
}

/* Pricing Note */
.pricing-note {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.note-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Instagram Feed Section */
.instagram-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    padding-bottom: 6rem;
    margin-bottom: -2rem;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/textures/graph-paper.png');
    opacity: 0.04;
    pointer-events: none;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.instagram-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.instagram-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Instagram Feed Grid */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Instagram Item */
.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-meta {
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    transform: translateY(10px);
}

.instagram-meta i {
    margin-right: 0.3rem;
    color: #ff4d67;
}

/* Hover effects */
.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-meta {
    transform: translateY(0);
}

/* Section Transitions */
.section-divider {
    height: 100px;
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.divider-wave {
    position: absolute;
    width: 100%;
    height: 100px;
    background-image: url('images/dividers/wave-divider.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.divider-angle {
    position: absolute;
    width: 100%;
    height: 100px;
    background-image: url('images/dividers/angle-divider.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Wave divider */
.wave-divider {
    height: 70px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--light-color);
}

/* Fade transition */
.fade-transition {
    background: linear-gradient(180deg, var(--light-color) 0%, rgba(255,255,255,0) 100%);
    height: 100px;
    width: 100%;
    position: relative;
    z-index: 3;
    margin-top: -50px;
    margin-bottom: -50px;
    pointer-events: none;
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5 !important;
    transition: opacity 0.3s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-icon i {
    color: white;
    font-size: 1rem;
}

.scroll-indicator:hover .scroll-icon {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* ======== RESPONSIVE BREAKPOINTS ======== */

/* Large Desktop (1200px and up) */
/* Logo sizing handled in nav.css */

/* Desktop (992px - 1200px) */
/* Logo sizing handled in nav.css */

/* Tablet (768px - 992px) */
@media screen and (max-width: 992px) {
    /* Navigation styles handled in nav.css */
}

/* Small Tablet (576px - 768px) */
@media screen and (max-width: 768px) {
    /* Logo sizing handled in nav.css */
    
    .header-container {
        padding: 0.2rem 0;
    }
}

/* Mobile (575px and below) */
@media screen and (max-width: 575px) {
    /* Logo sizing handled in nav.css */
    
    .header-container {
        padding: 0.15rem 0;
    }
    
    /* Ensure logo container doesn't get too big on small screens */
    .logo-container {
        max-width: 75%;
    }
}

/* Extra Small Mobile (375px and below) */
/* Logo sizing handled in nav.css */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .instagram-feed {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
}

@media screen and (max-width: 992px) {
    .about-column {
        flex-basis: 48%;
    }
    
    .about-text {
        flex-basis: 100%;
        margin-top: 1rem;
        order: -1; /* Move text to top on tablets */
    }
    
    .about {
        padding-bottom: 10rem;
    }
    
    .about-columns {
        gap: 1.5rem; /* Tighter spacing on tablets */
    }
    
    .content-card {
        padding: 1.25rem; /* Slightly reduced padding */
    }
    
    .text-card {
        padding: 1.5rem;
    }
    
    .fullscreen-categories {
        height: 70vh;
    }
    
    .slice-title {
        font-size: 2.4rem;
    }
    
    .pricing-card {
        flex-basis: calc(50% - 2rem);
        max-width: 450px;
    }
}

@media screen and (max-width: 980px) {
    .about-column {
        flex-basis: 48%;
    }
    
    .about-text {
        flex-basis: 100%;
        order: -1;
    }
    
    .about-column:first-of-type .about-img-direct,
    .about-column:last-of-type .about-img-direct,
    .about-column:last-of-type .about-img-direct2 {
        max-height: 350px;
    }
}

/* Fix for narrow testimonial cards in small tablet range (577px - 768px) */
@media screen and (max-width: 768px) and (min-width: 577px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 2rem 0;
    }
    
    .testimonial-card {
        max-width: 100%;
        padding: 2rem;
        min-height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 70vh;
        background-position: center 20%;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: calc(1.8rem + 1vw);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 1.5rem;
    }
    
    /* Mobile menu button styles handled in nav.css */
    
    section {
        padding: 3.5rem 0;
    }
    
    /* About section mobile improvements */
    .about {
        padding: 4rem 0 8rem;
    }
    
    .about-columns {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .about-column {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
    
    .about-text {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .text-card {
        padding: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .about-text .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-divider {
        height: 60px;
        margin-top: -30px;
        margin-bottom: -30px;
    }
    
    .testimonials {
        margin-top: -5rem;
        padding-top: 7rem;
    }
    
    
    .fullscreen-categories {
        flex-direction: column;
        height: auto !important;
    }
    
    .category-slice {
        height: 300px !important;
        flex: none !important;
    }
    
    .category-slice:hover {
        flex: 1;
        height: 350px;
    }
    
    .slice-text-wrapper,
    .slice-cta {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .gallery-card {
        padding: 2rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        border-radius: 4px;
        border-right: 2px solid #e0e0e0;
        margin-bottom: 1rem;
    }
    
    .input-group .btn {
        border-radius: 4px;
        width: 100%;
    }
    
    .pricing-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .pricing-card {
        flex-basis: 100%;
        max-width: 450px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-navigation {
        margin: 1.5rem 0 1rem;
    }
    
    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 801px) {
    /* Testimonial mobile improvements */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
        max-width: none;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
        min-height: 350px;
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    /* About section small mobile improvements */
    .about {
        padding: 3rem 0 6rem;
    }
    
    .about-columns {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .content-card {
        padding: 0.5rem;
    }
    
    .text-card {
        padding: 1rem;
    }
    
    /* Testimonial small mobile improvements */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
        max-width: none;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.25rem;
        min-height: 300px;
        width: 100%;
    }
}

/* Extra small mobile breakpoint */
@media screen and (max-width: 480px) {
    .testimonial-grid {
        gap: 0.75rem;
        padding: 0.75rem 0;
        max-width: none;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1rem;
        min-height: 280px;
        border-radius: 10px;
        width: 100%;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .about-text .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .about-column:first-of-type .about-img-direct,
    .about-column:last-of-type .about-img-direct,
    .about-column:last-of-type .about-img-direct2 {
        max-height: 250px; /* Smaller images on very small screens */
    }
    
    .category-slice {
        height: 250px;
    }
    
    .category-slice:hover {
        height: 300px;
    }
    
    .slice-title {
        font-size: 1.8rem;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-section {
        padding: 3rem 0;
    }
    
    section,
    .section-title,
    .section-subtitle,
    .content-card,
    .gallery-card,
    .testimonial-card,
    .pricing-card,
    .faq-item {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    section,
    .section-title,
    .section-subtitle,
    .content-card,
    .gallery-card,
    .testimonial-card,
    .pricing-card,
    .faq-item {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease;
    }
}

