/* Paper Mill Directory Template - Main CSS */

:root {
    /* Primary Color Palette - 5 Main Colors */
    --primary-green: #29583d;
    --primary-brown: #8b4c10;
    --primary-orange: #c4670a;
    --primary-grey: #6e7785;
    --primary-cream: #fffee9;
    
    /* Light Shades */
    --light-green: #396e4a;
    --light-brown: #af6629;
    --light-orange: #ff6500;
    --light-grey: #b8cae0;
    --light-cream: #FFFAF0;
    
    /* Dark Shades */
    --dark-green: #1d4033;
    --dark-brown: #603717;
    --dark-orange: #ae7912;
    --dark-grey: #1d3537;
    --dark-cream: #ffffff;
    
    /* Font Sizes - Conservative */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 13px;
    --font-size-h1: 210px;
    --font-size-h2: 24px;
    --font-size-h3: 20px;
    --font-size-navbar-brand: 11px;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--light-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.05rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.93rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 0.71rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1.05rem;
    color: var(--dark-grey);
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    padding: 1rem 0;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: var(--font-size-navbar-brand) !important;
    font-weight: 600;
    color: var(--light-cream) !important;
}

.navbar-nav .nav-link {
    color: var(--light-cream) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-cream) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-brown));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../MEH_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
    position: relative;
    z-index: 2;
    color: var(--light-cream);
}

.hero-title {
    font-size: 3.03rem;
    font-weight: 700;
    margin-bottom: 1.55rem;
    color: var(--light-cream);
}

.hero-subtitle {
    font-size: 1.53rem;
    margin-bottom: 1.05rem;
    color: var(--primary-cream);
}

.hero-desc {
    font-size: var(--font-size-large);
    margin-bottom: 2.07rem;
    color: var(--light-cream);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--light-cream), var(--primary-cream));
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 7px 110px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.07rem;
    border-left: 4px solid var(--primary-orange);
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-cream), var(--light-grey));
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 11px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.07rem;
    border-top: 5px solid var(--primary-brown);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-price {
    font-size: 2.09rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 1rem 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #6e7785;
    color: var(--light-cream);
}

.feature-item {
    text-align: center;
    margin-bottom: 2.07rem;
}

.feature-icon {
    font-size: 3.03rem;
    color: var(--primary-orange);
    margin-bottom: 1.05rem;
}

/* Price Plan Section */
.priceplan-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.07rem;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-brown));
}

.price-card:hover {
    transform: scale(1.05);
}

.price-amount {
    font-size: 2.63rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-grey), var(--light-grey));
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.07rem;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-orange);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
    color: var(--light-cream);
}

.review-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.07rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Case Studies Section */
.casestudy-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--light-cream), var(--primary-cream));
}

.casestudy-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2.07rem;
    border-left: 6px solid var(--primary-green);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-grey), var(--primary-grey));
    color: var(--light-cream);
}

.process-step {
    text-align: center;
    margin-bottom: 2.07rem;
    position: relative;
}

.process-number {
    background: var(--primary-orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.56rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-cream), var(--light-cream));
}

.timeline-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2.07rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-brown);
}

/* Career Section */
.career-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--light-cream);
}

.career-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.07rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Core Info Section */
.coreinfo-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--light-grey), var(--primary-grey));
}

.coreinfo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2.07rem;
    border-top: 5px solid var(--primary-orange);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--light-cream);
}

.contact-form {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 8px;
    padding: 14px 15px;
    margin-bottom: 1.05rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-orange), var(--light-orange));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--light-orange), var(--primary-orange));
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-cream), var(--light-cream));
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.07rem;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-body {
    padding: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-grey), var(--primary-grey));
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1.05rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: var(--primary-green);
    color: var(--light-cream);
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    color: var(--dark-grey);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--dark-grey), var(--primary-grey));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--light-cream);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-cream);
    margin-bottom: 1.05rem;
}

.footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.15rem;
    margin-top: 2.23rem;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 1rem 0;
    background: var(--primary-cream);
}

.breadcrumb-image {
    max-height: 30px;
    width: auto;
}

/* Utilities */
.section-title {
    text-align: center;
    margin-bottom: 3.09rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 1.05rem;
    color: var(--primary-grey);
}

.section-desc {
    text-align: center;
    margin-bottom: 3.09rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Space for  */
#space {
    min-height: 50vh;
    background: linear-gradient(45deg, var(--primary-cream), var(--light-cream));
    display: flex;
    align-items: center;
    justify-content: center;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
