/* Color Scheme - Tennessee Orange & White */
:root {
    --tennessee-orange: #FF8200; /* Official Tennessee Orange */
    --orange-dark: #E67300;
    --orange-light: #FFA64D;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --text-medium: #666666;
    --bg-light: #FFF8F0;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: rgba(255, 130, 0, 0.15);
    --shadow-dark: rgba(255, 130, 0, 0.25);
    --smokey-gray: #4A5568; /* Smokey gray */
    --smokey-gray-dark: #2D3748;
    --smokey-gray-light: #718096;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeInUp 0.8s ease forwards;
    }
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo h1 {
    color: var(--tennessee-orange);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--tennessee-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--tennessee-orange);
    border-radius: 2px;
}

.nav-social {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.facebook-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--off-white);
    color: #1877F2;
    transition: all 0.3s ease;
}

.facebook-link:hover {
    background-color: #1877F2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-link svg {
    width: 20px;
    height: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--smokey-gray) 0%, var(--smokey-gray-dark) 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Pantograph pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.03) 40px,
            rgba(255,255,255,0.03) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.03) 40px,
            rgba(255,255,255,0.03) 41px
        ),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 0;
}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-check {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    color: var(--tennessee-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-quilt-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 130, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background-color: var(--white);
    color: var(--tennessee-orange);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background-color: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--tennessee-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Showcase Section */
.showcase-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }

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

.showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px var(--shadow-dark);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.showcase-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 6rem 20px;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--tennessee-orange);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2rem 0;
}

.feature-card {
    background-color: var(--off-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    margin-left: -1.5rem;
    z-index: 1;
}

.feature-card:first-child {
    margin-left: 0;
    z-index: 4;
}

.feature-card:nth-child(2) {
    z-index: 3;
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    z-index: 2;
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    z-index: 1;
    animation-delay: 0.3s;
}

.feature-card:nth-child(1) { animation-delay: 0s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tennessee-orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 15px 50px var(--shadow-dark);
    border-color: var(--tennessee-orange);
    z-index: 10;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--tennessee-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 130, 0, 0.1), rgba(255, 166, 77, 0.1));
    border-radius: 16px;
    padding: 1rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--tennessee-orange);
    stroke-width: 2.5;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Design Section */
.design-section,
.finishing-section,
.about-section {
    padding: 6rem 20px;
}

.design-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.finishing-section {
    background-color: var(--white);
}

.about-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
}

.design-wrapper,
.finishing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.design-content,
.finishing-content {
    text-align: left;
}

.design-content h2,
.finishing-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--tennessee-orange);
    font-weight: 700;
    line-height: 1.2;
}

.design-content p,
.finishing-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.emphasis {
    font-size: 1.2rem;
    color: var(--tennessee-orange);
    margin-top: 1rem;
    font-weight: 500;
    font-style: italic;
}

.design-visual,
.finishing-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quilt-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    transition: transform 0.4s ease;
}

.quilt-image-container:hover {
    transform: scale(1.05) rotate(1deg);
}

.quilt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--tennessee-orange), var(--orange-light));
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
    animation: float 3s ease-in-out infinite;
}

.image-decoration.reverse {
    top: auto;
    right: auto;
    bottom: -20px;
    left: -20px;
    animation: floatReverse 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.design-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.design-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.design-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tennessee-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
    transition: all 0.4s ease;
    border-top: 4px solid var(--tennessee-orange);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--shadow-dark);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--tennessee-orange);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--tennessee-orange);
    font-size: 1rem;
}

.finishing-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--tennessee-orange);
}

.option-item {
    padding: 0.8rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.option-item strong {
    color: var(--text-dark);
}

/* Services Section */
.services-section {
    padding: 6rem 20px;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2rem 0;
}

.service-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    margin-left: -1.5rem;
    z-index: 1;
}

.service-card:first-child {
    margin-left: 0;
    z-index: 4;
}

.service-card:nth-child(2) {
    z-index: 3;
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    z-index: 2;
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    z-index: 1;
    animation-delay: 0.3s;
}

.service-card:nth-child(1) { animation-delay: 0s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 130, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 15px 50px var(--shadow-dark);
    border-color: var(--tennessee-orange);
    z-index: 10;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--tennessee-orange);
    opacity: 0.15;
    line-height: 1;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    padding-right: 3rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: left;
}

.about-label {
    font-size: 1rem;
    text-transform: lowercase;
    color: var(--tennessee-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--tennessee-orange);
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    color: var(--tennessee-orange);
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--tennessee-orange) 0%, var(--orange-dark) 100%);
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

/* New About Section (Before Footer) */
.about-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    margin-top: 0;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    width: 100%;
    min-height: 500px;
}

.about-couple-photo {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-couple-photo {
    transform: scale(1.05);
}

.about-content-new {
    text-align: left;
}

.about-content-new h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--tennessee-orange);
    font-weight: 700;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content-new p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta-new {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--tennessee-orange);
    font-weight: 600;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background-color: var(--tennessee-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.section-link:hover {
    background-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}


/* Gallery */
.gallery-header {
    padding: 4rem 20px 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.gallery-header h1 {
    font-size: 2.5rem;
    color: var(--tennessee-orange);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.gallery-section {
    padding: 3rem 20px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px;
}

/* Contact Page */
.contact-header {
    padding: 4rem 20px 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--tennessee-orange);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-section {
    padding: 3rem 20px;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--tennessee-orange);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-item h3 {
    color: var(--tennessee-orange);
    margin-bottom: 1rem;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.info-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tennessee-orange);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tennessee-orange);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--tennessee-orange);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--tennessee-orange);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--tennessee-orange);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-page li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--smokey-gray) 0%, var(--smokey-gray-dark) 100%);
    color: white;
    padding: 4rem 20px 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--tennessee-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--tennessee-orange);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--tennessee-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
/* iPad and Tablet */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .feature-card,
    .service-card {
        margin-left: 0;
        padding: 2rem 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-wrapper,
    .finishing-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .container {
        padding: 0 30px;
    }
}

/* Mobile and Small Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-social {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .facebook-link {
        width: 50px;
        height: 50px;
    }

    .facebook-link svg {
        width: 24px;
        height: 24px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero .container {
        padding: 2rem 20px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-feature-item {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }

    .hero-image-wrapper {
        transform: rotate(0deg);
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-quilt-image {
        width: 100%;
        height: auto;
    }

    .design-wrapper,
    .finishing-wrapper,
    .about-wrapper,
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .design-content,
    .finishing-content,
    .about-content,
    .about-content-new {
        text-align: center;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .feature-card,
    .service-card {
        margin-left: 0;
        padding: 2rem 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-image {
        height: 300px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-section,
    .features-section,
    .showcase-section,
    .design-section,
    .finishing-section,
    .about-section {
        padding: 4rem 20px;
    }

    .logo-image {
        height: 40px;
    }

    .nav-container {
        padding: 0.75rem 20px;
    }
}

/* Small Mobile Phones - Simplified Text-Only Design */
@media (max-width: 480px) {
    /* Keep navbar always visible on mobile */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    body {
        padding-top: 60px;
    }

    /* Hide logo in navbar on mobile */
    .logo {
        display: none;
    }

    /* Hide "Welcome to" and "Volunteer Patchwork" text on mobile */
    .hero-label {
        display: none !important;
    }

    .hero-title {
        display: none !important;
    }

    /* Show logo in hero on mobile - make it large and visible */
    .hero-logo-mobile {
        display: block !important;
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-logo-image {
        height: 120px;
        width: auto;
        max-width: 280px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    /* Hide desktop hero image */
    .hero-image,
    .hero-image-wrapper,
    .hero-quilt-image {
        display: none !important;
    }

    /* Show mobile preview section */
    .mobile-preview-section {
        display: block;
        padding: 2rem 15px;
        background-color: var(--bg-light);
    }

    .mobile-preview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .mobile-preview-item {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-preview-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    /* Hide other images */
    .quilt-image-container,
    .quilt-image,
    .image-decoration,
    .showcase-item,
    .showcase-image,
    .showcase-grid {
        display: none !important;
    }

    /* Show about couple photo on mobile - wrap together */
    .about-wrapper-new {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image-container,
    .about-couple-photo {
        display: block !important;
    }

    .about-image-container {
        max-width: 100%;
        margin: 0 auto;
        order: 1;
    }

    .about-couple-photo {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .about-content-new {
        order: 2;
        margin-top: 0;
    }

    /* Simplify hero section */
    .hero {
        padding: 2rem 0 3rem 0;
        height: auto;
        min-height: auto;
        margin-top: 0;
    }

    .hero .container {
        padding: 2rem 15px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-label {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-feature-item {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Simplify sections */
    .services-section,
    .features-section,
    .showcase-section,
    .design-section,
    .finishing-section,
    .about-section {
        padding: 2.5rem 15px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Simplify cards */
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem 1.25rem;
        margin-left: 0;
        text-align: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .service-card h3 {
        padding-right: 3rem;
    }

    /* Hide showcase section on mobile */
    .showcase-section {
        display: none;
    }

    /* Simplify design and finishing sections */
    .design-wrapper,
    .finishing-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .design-content,
    .finishing-content {
        text-align: center;
    }

    .design-content h2,
    .finishing-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .design-content p,
    .finishing-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .design-list {
        text-align: left;
        margin: 1.5rem 0;
    }

    .design-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .finishing-options {
        margin: 1.5rem 0;
        padding: 1.25rem;
    }

    .option-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    /* Simplify about section */
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-content-new {
        text-align: center;
    }

    .about-content-new h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-content-new p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .about-intro {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .about-cta-new {
        font-size: 1rem;
        margin: 1.5rem 0;
    }

    /* Gallery - Keep simple with 2 photos side by side */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Contact form */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .submit-button {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Navigation */
    .logo-image {
        height: 35px;
    }

    .nav-container {
        padding: 0.75rem 15px;
    }

    .nav-menu {
        top: 60px;
    }

    .container {
        padding: 0 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    footer {
        padding: 3rem 15px 1.5rem;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 8px;
    }

    .lightbox-close {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }

    /* Hide showcase section on mobile */
    .showcase-section {
        display: none;
    }

    /* Ensure main content has proper spacing */
    main {
        padding-top: 0;
    }
}

/* Hide mobile preview on larger screens */
.mobile-preview-section {
    display: none;
}

/* Hide hero logo on desktop */
.hero-logo-mobile {
    display: none;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .service-card:hover,
    .showcase-item:hover {
        transform: none;
    }

    .cta-button,
    .section-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

