: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;
}
}
.contact-hero {
background: linear-gradient(135deg, rgba(161, 168, 179, 0.9), rgba(198, 203, 212, 0.8)), url('/pages/background_gallery/art_5.jpg');
background-size: cover;
background-position: center;
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.contact-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 40%, rgba(234, 237, 239, 0.3) 50%, transparent 60%);
animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { transform: translateX(-100%); }
50% { transform: translateX(100%); }
}
.hero-content-wrapper {
text-align: center;
max-width: 600px;
padding: 40px 20px;
position: relative;
z-index: 2;
}
.main-hero-title {
font-size: 2.8rem;
color: #2c3e50;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
font-weight: 700;
}
.hero-subtitle {
font-size: 1.2rem;
color: #34495e;
margin-bottom: 0;
font-weight: 400;
}
.contact-main-container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
display: flex;
gap: 60px;
align-items: flex-start;
}
.contact-info-section {
flex: 1;
background: linear-gradient(135deg, #EAEDEF, #C6CBD4);
padding: 40px;
border-radius: 20px;
position: relative;
box-shadow: 0 15px 35px rgba(161, 168, 179, 0.2);
}
.contact-info-section::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: linear-gradient(45deg, #A1A8B3, #C6CBD4, #EAEDEF);
border-radius: 25px;
z-index: -1;
}
.section-title-contact {
font-size: 2.2rem;
color: #2c3e50;
margin-bottom: 30px;
font-weight: 600;
position: relative;
}
.section-title-contact::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: linear-gradient(90deg, #A1A8B3, #C6CBD4);
border-radius: 2px;
}
.contact-detail-block {
margin-bottom: 35px;
padding: 20px;
background: rgba(255, 255, 255, 0.6);
border-radius: 12px;
border-left: 4px solid #A1A8B3;
transition: all 0.3s ease;
}
.contact-detail-block:hover {
transform: translateX(8px);
box-shadow: 0 8px 20px rgba(161, 168, 179, 0.15);
}
.contact-label {
font-weight: 600;
color: #2c3e50;
font-size: 1.1rem;
margin-bottom: 8px;
display: block;
}
.contact-value {
color: #34495e;
font-size: 1rem;
line-height: 1.6;
margin: 0;
}
.location-details {
background: rgba(161, 168, 179, 0.1);
padding: 25px;
border-radius: 15px;
margin-top: 30px;
}
.location-title {
font-size: 1.4rem;
color: #2c3e50;
margin-bottom: 20px;
font-weight: 600;
}
.detail-item {
margin-bottom: 15px;
padding: 12px;
background: rgba(255, 255, 255, 0.7);
border-radius: 8px;
border-left: 3px solid #C6CBD4;
}
.detail-item:last-child {
margin-bottom: 0;
}
.detail-subtitle {
font-weight: 600;
color: #2c3e50;
font-size: 0.95rem;
margin-bottom: 5px;
}
.detail-text {
color: #34495e;
font-size: 0.9rem;
line-height: 1.5;
margin: 0;
}
.contact-form-section {
flex: 1;
background: #ffffff;
padding: 40px;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(161, 168, 179, 0.15);
position: relative;
}
.form-title {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 30px;
font-weight: 600;
text-align: center;
}
.appointment-form {
width: 100%;
}
.form-group-custom {
margin-bottom: 25px;
position: relative;
}
.form-label-custom {
display: block;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
font-size: 1rem;
}
.form-input-custom, .form-textarea-custom, .form-select-custom {
width: 100%;
padding: 15px;
border: 2px solid #EAEDEF;
border-radius: 10px;
font-size: 1rem;
color: #34495e;
background: #ffffff;
transition: all 0.3s ease;
box-sizing: border-box;
}
.form-input-custom:focus, .form-textarea-custom:focus, .form-select-custom:focus {
border-color: #A1A8B3;
outline: none;
box-shadow: 0 0 0 3px rgba(161, 168, 179, 0.1);
transform: translateY(-2px);
}
.form-textarea-custom {
min-height: 120px;
resize: vertical;
}
.time-selection-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-top: 10px;
}
.submit-button-custom {
width: 100%;
padding: 18px;
background: linear-gradient(135deg, #A1A8B3, #C6CBD4);
color: #ffffff;
border: none;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 20px;
box-shadow: 0 8px 20px rgba(161, 168, 179, 0.3);
}
.submit-button-custom:hover {
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(161, 168, 179, 0.4);
background: linear-gradient(135deg, #8a93a0, #b1b8c3);
}
.visit-preparation {
background: linear-gradient(135deg, rgba(161, 168, 179, 0.1), rgba(198, 203, 212, 0.05));
padding: 30px;
border-radius: 15px;
margin-top: 40px;
}
.preparation-title {
font-size: 1.5rem;
color: #2c3e50;
margin-bottom: 20px;
font-weight: 600;
text-align: center;
}
.preparation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.preparation-card {
background: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 12px;
border-top: 4px solid #A1A8B3;
transition: transform 0.3s ease;
}
.preparation-card:hover {
transform: translateY(-5px);
}
.card-title {
font-weight: 600;
color: #2c3e50;
font-size: 1.1rem;
margin-bottom: 10px;
}
.card-content {
color: #34495e;
font-size: 0.95rem;
line-height: 1.5;
margin: 0;
}
@media (max-width: 768px) {
.contact-main-container {
flex-direction: column;
gap: 40px;
padding: 40px 16px;
}
.contact-info-section {
order: 1;
padding: 30px 20px;
}
.contact-form-section {
order: 2;
padding: 30px 20px;
}
.main-hero-title {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.section-title-contact, .form-title {
font-size: 1.8rem;
}
.time-selection-grid {
grid-template-columns: 1fr;
}
.preparation-grid {
grid-template-columns: 1fr;
}
.contact-detail-block:hover {
transform: none;
}
}
@media (max-width: 480px) {
.hero-content-wrapper {
padding: 30px 16px;
}
.main-hero-title {
font-size: 1.9rem;
}
.contact-info-section, .contact-form-section {
padding: 25px 16px;
}
}