:root {
--primary-color: #A1A8B3;
--secondary-color: #C6CBD4;
--tertiary-color: #EAEDEF;
--text-dark: #2c3e50;
--text-light: #ffffff;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
--gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--tertiary-color);
}
header {
background: var(--gradient-primary);
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
position: relative;
box-shadow: 0 4px 20px rgba(161, 168, 179, 0.3);
backdrop-filter: blur(10px);
}
.logo-container {
display: flex;
align-items: center;
z-index: 100;
position: relative;
}
.logo-container img {
height: 45px;
width: auto;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
z-index: 10;
}
.nav-container a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: clamp(0.9rem, 2vw, 1.1rem);
padding: 0.8rem 1.2rem;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
white-space: nowrap;
}
.nav-container a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-container a:active {
transform: translateY(0);
}
@media (max-width: 768px) {
header {
flex-direction: column;
padding: 1rem;
min-height: 120px;
gap: 1rem;
}
.nav-container {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.nav-container a {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
}
@media (max-width: 480px) {
.nav-container {
gap: 0.5rem;
}
.nav-container a {
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
}
}
footer {
background: var(--gradient-primary);
color: var(--text-light);
padding: 3rem 2rem 1.5rem;
margin-top: auto;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.footer-section h3 {
color: var(--text-light);
margin-bottom: 1rem;
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section p,
.footer-section a {
color: var(--text-light);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section a:hover {
color: var(--tertiary-color);
transform: translateX(5px);
}
.footer-contact {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(5px);
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: var(--text-light);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--gradient-primary);
color: var(--text-light);
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
backdrop-filter: blur(10px);
}
.cookie-consent.show {
display: block;
}
.cookie-consent p {
margin-bottom: 1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-btn {
background: rgba(255, 255, 255, 0.2);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.cookie-consent {
left: 10px;
right: 10px;
bottom: 10px;
}
.cookie-buttons {
justify-content: center;
}
}
.about-hero-section {
background: linear-gradient(135deg, rgba(161, 168, 179, 0.9), rgba(198, 203, 212, 0.8)), url('/pages/background_gallery/art_6.jpg');
background-size: cover;
background-position: center;
padding: 100px 0;
text-align: center;
position: relative;
}
.about-hero-content {
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}
.about-hero-title {
font-size: 3.5rem;
color: white;
margin-bottom: 30px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
font-weight: 700;
}
.about-hero-subtitle {
font-size: 1.4rem;
color: white;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.story-section {
padding: 80px 0;
background: #EAEDEF;
}
.story-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.story-content {
padding: 40px;
}
.story-title {
font-size: 2.8rem;
color: #333;
margin-bottom: 25px;
line-height: 1.2;
}
.story-text {
font-size: 1.1rem;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}
.story-image-block {
background: url('/pages/background_gallery/art_7.jpg');
background-size: cover;
background-position: center;
height: 500px;
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.mission-section {
padding: 90px 0;
background: white;
position: relative;
}
.mission-wrapper {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.mission-header {
font-size: 2.6rem;
color: #333;
margin-bottom: 40px;
}
.values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 60px;
}
.value-card {
background: #A1A8B3;
padding: 40px 30px;
border-radius: 20px;
text-align: center;
transform: translateY(0);
transition: transform 0.3s ease;
}
.value-card:hover {
transform: translateY(-10px);
}
.value-icon {
width: 80px;
height: 80px;
background: white;
border-radius: 50%;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: #A1A8B3;
}
.value-title {
font-size: 1.4rem;
color: white;
margin-bottom: 15px;
font-weight: 600;
}
.value-description {
font-size: 1rem;
color: white;
line-height: 1.6;
}
.mission-statement {
font-size: 1.3rem;
color: #666;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}
.team-section {
padding: 80px 0;
background: linear-gradient(45deg, #C6CBD4, #EAEDEF);
}
.team-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
.team-intro {
text-align: center;
margin-bottom: 70px;
}
.team-title {
font-size: 2.7rem;
color: #333;
margin-bottom: 20px;
}
.team-description {
font-size: 1.2rem;
color: #555;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.team-member-showcase {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 50px;
align-items: center;
background: white;
border-radius: 25px;
padding: 50px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.member-photo {
background: url('/pages/background_gallery/art_9.jpg');
background-size: cover;
background-position: center;
height: 350px;
border-radius: 20px;
}
.member-info {
padding-left: 20px;
}
.member-name {
font-size: 2.2rem;
color: #333;
margin-bottom: 10px;
}
.member-role {
font-size: 1.3rem;
color: #A1A8B3;
margin-bottom: 25px;
font-weight: 500;
}
.member-bio {
font-size: 1.1rem;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}
.expertise-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 30px;
}
.expertise-tag {
background: #A1A8B3;
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.9rem;
}
.approach-highlight {
background: url('/pages/background_gallery/art_8.jpg');
background-size: cover;
background-position: center;
padding: 80px 0;
margin-top: 60px;
border-radius: 20px;
position: relative;
}
.approach-highlight::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(161, 168, 179, 0.85);
border-radius: 20px;
}
.approach-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 700px;
margin: 0 auto;
padding: 0 20px;
}
.approach-title {
font-size: 2.4rem;
color: white;
margin-bottom: 25px;
text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.approach-text {
font-size: 1.2rem;
color: white;
line-height: 1.7;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
.about-hero-title {
font-size: 2.5rem;
}
.about-hero-subtitle {
font-size: 1.2rem;
}
.story-container {
grid-template-columns: 1fr;
gap: 40px;
}
.story-content {
padding: 20px;
order: 2;
}
.story-image-block {
height: 300px;
order: 1;
}
.story-title {
font-size: 2.2rem;
}
.values-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.team-member-showcase {
grid-template-columns: 1fr;
padding: 30px;
gap: 30px;
}
.member-info {
padding-left: 0;
text-align: center;
}
.member-photo {
height: 250px;
}
.expertise-list {
justify-content: center;
}
.approach-highlight {
margin-top: 40px;
padding: 60px 0;
}
.approach-title {
font-size: 2rem;
}
}