/* Shared Header and Footer Styles for LPC Client Pages */
:root {
    --primary-green: #6B8E6B;
    --secondary-green: #8FBC8F;
    --accent-green: #90EE90;
    --light-green: #A8C8A8;
    --dark-green: #556B2F;
    --beige: #F5F5DC;
    --light-gray: #F0F0F0;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Ensure body accounts for fixed header */
body {
    padding-top: 0;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 8rem 0 4rem;
    min-height: 45vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: var(--white);
}

.hero-content .highlight {
    color: inherit !important;
    position: relative;
}

.hero-content .highlight::after {
    content: none;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: var(--white);
}

/* Utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.center-row { display: flex; justify-content: center; }

/* Abstract Design Elements */
.hero-section .abstract-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section .abstract-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    animation-delay: 0s;
}

.hero-section .abstract-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--light-green);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.hero-section .abstract-shape:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: var(--white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 4s;
}

.hero-section .abstract-shape:nth-child(4) {
    top: 40%;
    right: 30%;
    width: 30px;
    height: 30px;
    background: var(--light-green);
    border-radius: 50%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Hero Styles */
/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 8rem 0 3rem;
        min-height: 45vh;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-section .abstract-shape:nth-child(1) {
        width: 50px;
        height: 50px;
    }
    
    .hero-section .abstract-shape:nth-child(2) {
        width: 35px;
        height: 35px;
    }
    
    .hero-section .abstract-shape:nth-child(3) {
        width: 70px;
        height: 70px;
    }
    
    .hero-section .abstract-shape:nth-child(4) {
        width: 25px;
        height: 25px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 0 3rem;
        min-height: 50vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding-top: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-section .abstract-shape:nth-child(1) {
        width: 40px;
        height: 40px;
        top: 15%;
        left: 5%;
    }
    
    .hero-section .abstract-shape:nth-child(2) {
        width: 30px;
        height: 30px;
        top: 50%;
        right: 10%;
    }
    
    .hero-section .abstract-shape:nth-child(3) {
        width: 60px;
        height: 60px;
        bottom: 25%;
        left: 15%;
    }
    
    .hero-section .abstract-shape:nth-child(4) {
        width: 20px;
        height: 20px;
        top: 35%;
        right: 25%;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 6rem 0 2.5rem;
        min-height: 45vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        padding-top: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-section .abstract-shape:nth-child(1) {
        width: 35px;
        height: 35px;
    }
    
    .hero-section .abstract-shape:nth-child(2) {
        width: 25px;
        height: 25px;
    }
    
    .hero-section .abstract-shape:nth-child(3) {
        width: 50px;
        height: 50px;
    }
    
    .hero-section .abstract-shape:nth-child(4) {
        width: 18px;
        height: 18px;
    }
}
