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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2D241B;
    background-color: #EAE0D5;
}

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

/* Navigation */
.navbar {
    background: #EAE0D5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.nav-logo h2 {
    color: #2C6E49;
    font-family: 'Snowburst One', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    line-height: 0.9;
}

.tagline {
    color: #34D1BF;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: -2px 0 0 0;
    line-height: 1;
    opacity: 0.8;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2D241B;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2C6E49;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #2C6E49;
    color: white;
    font-weight: 600;
}

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

.btn-secondary {
    background: #2C6E49;
    color: white;
    border: 2px solid #2C6E49;
}

.btn-secondary:hover {
    background: #759552;
    color: white;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #D9CAB3;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #2C6E49;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #EAE0D5;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2C6E49;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #EAE0D5;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #2C6E49;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #D9CAB3;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .hero-buttons {
    margin-top: auto;
    padding-top: 1rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2C6E49;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #D9CAB3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #2D241B;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #2C6E49;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form {
    background: #D9CAB3;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2D241B;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2C6E49;
}

/* Footer */
.footer {
    background: #2D241B;
    color: #EAE0D5;
    text-align: center;
    padding: 2rem 0;
}

/* Catalog Page */
.catalog-hero, .contact-hero {
    background: linear-gradient(135deg, #2C6E49 0%, #759552 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.catalog-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.catalog-content, .contact-content {
    padding: 80px 0;
}

.catalog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-filters select {
    padding: 12px 20px;
    border: 2px solid #759552;
    border-radius: 8px;
    background: #EAE0D5;
    font-size: 1rem;
    min-width: 200px;
    color: #2D241B;
}

.printing-options {
    margin-top: 1rem;
}

.printing-option {
    display: inline-block;
    background: #2C6E49;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 2px;
    font-weight: 500;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: #D9CAB3;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #759552;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2C6E49;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2C6E49;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .catalog-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page */
.about-hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-section h2 {
    color: #2C6E49;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.vision-card, .mission-card {
    background: #D9CAB3;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.vision-card h3, .mission-card h3 {
    color: #2C6E49;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    text-align: center;
    color: #2C6E49;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-item {
    background: #D9CAB3;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-item h4 {
    color: #2C6E49;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-section {
    margin: 4rem 0;
}

.process-section h2 {
    text-align: center;
    color: #2C6E49;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.step-number {
    background: #2C6E49;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #2D241B;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
.about-logo {
    font-family: 'Snowburst One', cursive !important;
    color: white !important;
    font-size: 6rem !important;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 0.9;
}

.brand-tagline {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
    margin-top: 15px;
    font-style: normal;
    letter-spacing: 15px;
    text-transform: uppercase;
    opacity: 0.8;
}
.home-logo {
    font-family: 'Snowburst One', cursive !important;
    color: white !important;
    font-size: 8rem !important;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 0.9;
}

.home-tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    margin-top: -10px;
    font-style: normal;
    letter-spacing: 15px;
    text-transform: uppercase;
    opacity: 0.8;
}

.business-section {
    padding: 100px 0;
    background: #EAE0D5;
    text-align: center;
}

.business-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2C6E49;
}

.business-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2D241B;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #2D241B;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.read-more {
    color: #2C6E49;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Service card text transitions */
.service-short, .service-full {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
}

.service-full {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.service-full.expanded {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1rem;
}

.service-short.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}
/* FAQ Page */
.faq-hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-content {
    padding: 80px 0;
}

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

.faq-item {
    background: #D9CAB3;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    background: #2C6E49;
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
    position: relative;
}

.faq-question:hover {
    background: #759552;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #2D241B;
    line-height: 1.6;
    margin: 0;
}
/* Terms & Conditions Page */
.terms-hero, .artwork-hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.terms-hero h1, .artwork-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.terms-content, .artwork-content {
    padding: 80px 0;
}

.terms-list, .artwork-list {
    max-width: 800px;
    margin: 0 auto;
}

.terms-item, .artwork-item {
    background: #D9CAB3;
    margin-bottom: 2rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.terms-title, .artwork-title {
    color: #2C6E49;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-text p, .artwork-text p {
    color: #2D241B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-text p:last-child, .artwork-text p:last-child {
    margin-bottom: 0;
}
.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #EAE0D5;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .home-logo {
        font-size: 6rem !important;
    }
    
    .about-logo {
        font-size: 4rem !important;
    }
    
    .business-section h1 {
        font-size: 2.8rem;
    }
    
    .services h2, .features h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .home-logo {
        font-size: 4rem !important;
    }
    
    .home-tagline {
        font-size: 1rem;
        letter-spacing: 8px;
    }
    
    .about-logo {
        font-size: 3rem !important;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
        letter-spacing: 8px;
    }
    
    .business-section h1 {
        font-size: 2.2rem;
    }
    
    .business-section p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .home-logo {
        font-size: 3rem !important;
    }
    
    .home-tagline {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
    
    .about-logo {
        font-size: 2.5rem !important;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
    
    .business-section h1 {
        font-size: 1.8rem;
    }
    
    .hero, .about-hero, .faq-hero, .terms-hero, .artwork-hero {
        padding: 100px 0 60px;
    }
    
    .business-section, .features, .services, .faq-content, .terms-content, .artwork-content {
        padding: 60px 0;
    }
    
    .feature-card, .service-card, .faq-item, .terms-item, .artwork-item {
        padding: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
}
/* Enhanced Responsive Design - Mobile First */
@media (max-width: 480px) {
    .nav-menu {
        display: none !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
    
    .home-logo {
        font-size: 2.5rem !important;
    }
    
    .home-tagline {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .business-section h1 {
        font-size: 1.6rem;
    }
    
    .features-grid, .services-grid, .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 10px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .home-logo {
        font-size: 4rem !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
    
    .home-logo {
        font-size: 8rem !important;
    }
}

/* Touch enhancements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    .feature-card, .service-card, .product-card,
    .offer-card, .vision-card, .mission-card, .value-item {
        -webkit-tap-highlight-color: rgba(44, 110, 73, 0.2);
        cursor: pointer;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 16px 24px;
    }
    
    .faq-question {
        padding: 1.5rem;
        min-height: 48px;
    }
}
/* About Page - What We Offer Section */
.what-we-offer {
    margin: 4rem 0;
}

.offer-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2D241B;
}

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

.offer-card {
    background: #D9CAB3;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.offer-card h4 {
    color: #2C6E49;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.note {
    background: #D9CAB3;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* About Page Story Box */
.story-box {
    background: #D9CAB3;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.what-we-offer h2 {
    color: #2C6E49;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Improved Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.values-grid .value-item:nth-child(4) {
    grid-column: 1 / 3;
    margin: 0 25%;
    grid-row: 2;
}

.values-grid .value-item:nth-child(5) {
    grid-column: 2 / 4;
    margin: 0 25%;
    grid-row: 2;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid .value-item:nth-child(4),
    .values-grid .value-item:nth-child(5) {
        margin: 0;
    }
}
.story-tagline {
    font-size: 1.8rem;
    color: #2C6E49;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 1px;
}
/* Typography Updates */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.about-section h2,
.what-we-offer h2,
.values-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.story-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

.faq-hero h1,
.terms-hero h1,
.artwork-hero h1,
.catalog-hero h1,
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

strong {
    font-weight: 600;
}
/* Complete Typography Consistency */
.catalog-hero h1, .contact-hero h1, .about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.vision-card h3, .mission-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.value-item h4, .offer-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.terms-title, .artwork-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.product-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.process-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
/* Buttons and Form Elements Typography */
.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select,
.catalog-filters select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.read-more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
/* About Page Card Hover Effects */
.offer-card, .vision-card, .mission-card, .value-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover, .vision-card:hover, .mission-card:hover, .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* Order Journey Page */
.order-hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.order-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
}

.order-content {
    padding: 80px 0;
}

.order-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.journey-steps {
    max-width: 900px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background: #D9CAB3;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    background: #2C6E49;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2C6E49;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-content a {
    color: #2C6E49;
    text-decoration: none;
    font-weight: 500;
}

.step-content a:hover {
    text-decoration: underline;
}

.order-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #D9CAB3;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2D241B;
}

@media (max-width: 768px) {
    .journey-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
}
/* Product Catalog Styles */
.catalog-hero {
    background: linear-gradient(45deg, #2C6E49 0%, #759552 25%, #2C6E49 50%, #759552 75%, #2C6E49 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

.catalog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.catalog-content {
    padding: 80px 0;
}

.catalog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-filters select {
    padding: 0.75rem 1rem;
    border: 2px solid #2C6E49;
    border-radius: 8px;
    background: white;
    color: #2C6E49;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #D9CAB3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    height: 200px;
    background: #2C6E49;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.placeholder-image {
    text-align: center;
    padding: 1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2C6E49;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-specs {
    display: grid;
    gap: 0.5rem;
}

.spec-item {
    font-size: 0.9rem;
    color: #2D241B;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(44, 110, 73, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .catalog-filters select {
        width: 100%;
        max-width: 300px;
    }
}
.product-story {
    font-style: italic;
    color: #2C6E49;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Critical Performance & Accessibility Fixes */

/* Improve font loading performance */
@font-display: swap;

/* Better focus states for accessibility */
*:focus {
    outline: 2px solid #2C6E49;
    outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2C6E49;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Improve button touch targets for mobile */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        padding: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Better contrast for text readability */
.hero-content p, .order-subtitle {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Consistent max-width for all content sections */
.hero-content, .business-section, .features, .services, 
.about-content, .catalog-content, .contact-content, 
.faq-content, .terms-content, .artwork-content, .order-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix navigation z-index issues */
.navbar {
    z-index: 1000;
}

/* Improve form validation styling */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #28a745;
}

/* Better loading states */
.product-image, .placeholder-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Consistent spacing system */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* Print styles */
@media print {
    .navbar, .footer, .btn-primary, .btn-secondary {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    display: none;
    position: absolute;
    right: 70px;
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-text {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-text {
        font-size: 12px;
        right: 60px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        animation: none;
    }
}