*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--color-primary: #146b30;
--color-primary-dark: #0f5425;
--color-primary-light: #1a8a3e;
--color-accent: #f0f7f2;
--color-background: #ffffff;
--color-foreground: #3D3D3A;
--color-heading: #3D3D3A;
--color-muted: #6b7280;
--color-border: #e5e7eb;
--color-card: #ffffff;
--font-heading: 'Montserrat', sans-serif;
--font-body: 'Open Sans', sans-serif;
--radius: 0.75rem;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
--container-max: 1200px;
--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
color: var(--color-foreground);
background: var(--color-background);
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color 0.2s var(--ease-out);
}
a:hover {
color: var(--color-primary-dark);
} h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--color-foreground);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p {
margin-bottom: 1rem;
color: var(--color-muted);
} .container {
width: 100%;
max-width: var(--container-max);
margin: 0 auto;
padding: 0 1.5rem;
} .btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
font-family: var(--font-heading);
font-size: 0.875rem;
font-weight: 600;
border-radius: var(--radius);
border: 2px solid transparent;
cursor: pointer;
transition: all 0.2s var(--ease-out);
text-decoration: none;
line-height: 1.4;
}
.btn:active {
transform: scale(0.97);
}
.btn-primary {
background: var(--color-primary);
color: #fff;
border-color: var(--color-primary);
}
.btn-primary:hover {
background: var(--color-primary-dark);
border-color: var(--color-primary-dark);
color: #fff;
}
.btn-outline {
background: transparent;
color: var(--color-primary);
border-color: var(--color-primary);
}
.btn-outline:hover {
background: var(--color-primary);
color: #fff;
}
.btn-white {
background: #fff;
color: var(--color-primary);
border-color: #fff;
}
.btn-white:hover {
background: rgba(255,255,255,0.9);
color: var(--color-primary-dark);
}
.btn-lg {
padding: 1rem 2rem;
font-size: 1rem;
} .site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--color-border);
transition: box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled {
box-shadow: var(--shadow-md);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.site-logo img {
height: 48px;
width: auto;
} .main-nav {
display: flex;
align-items: center;
gap: 0.25rem;
}
.main-nav > li {
list-style: none;
position: relative;
}
.main-nav > li > a,
.main-nav > li > button {
display: flex;
align-items: center;
gap: 0.25rem;
padding: 0.5rem 0.875rem;
font-family: var(--font-heading);
font-size: 0.875rem;
font-weight: 500;
color: var(--color-foreground);
background: none;
border: none;
border-radius: 0.5rem;
cursor: pointer;
transition: all 0.2s var(--ease-out);
}
.main-nav > li > a:hover,
.main-nav > li > button:hover,
.main-nav > li > a.active {
background: var(--color-accent);
color: var(--color-primary);
} .nav-dropdown {
position: absolute;
top: 100%;
left: 0;
min-width: 220px;
background: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
padding: 0.5rem;
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: all 0.2s var(--ease-out);
}
.main-nav > li:hover .nav-dropdown,
.main-nav > li:focus-within .nav-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-dropdown a {
display: block;
padding: 0.625rem 1rem;
font-size: 0.875rem;
color: var(--color-foreground);
border-radius: 0.375rem;
transition: all 0.15s var(--ease-out);
}
.nav-dropdown a:hover {
background: var(--color-accent);
color: var(--color-primary);
} .nav-toggle {
display: none;
background: none;
border: none;
padding: 0.5rem;
cursor: pointer;
}
.nav-toggle svg {
width: 24px;
height: 24px;
stroke: var(--color-foreground);
} .hero {
position: relative;
min-height: 75vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}
.hero-content {
position: relative;
z-index: 2;
padding: 2rem;
max-width: 800px;
}
.hero h1 {
color: #fff;
margin-bottom: 1rem;
text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero p {
color: rgba(255,255,255,0.85);
font-size: 1.125rem;
margin-bottom: 2rem;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
} .page-hero {
position: relative;
min-height: 280px;
display: flex;
align-items: flex-end;
padding-bottom: 3rem;
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
overflow: hidden;
}
.page-hero::before {
content: '';
position: absolute;
inset: 0;
opacity: 0.1;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M0,400 L0,300 L200,200 L400,280 L600,150 L800,250 L1000,100 L1200,220 L1440,180 L1440,400 Z'/%3E%3C/svg%3E");
background-size: cover;
background-position: bottom;
}
.page-hero .container {
position: relative;
z-index: 2;
}
.page-hero .breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: rgba(255,255,255,0.7);
margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
color: rgba(255,255,255,0.7);
}
.page-hero .breadcrumb a:hover {
color: #fff;
}
.page-hero h1 {
color: #fff;
margin-bottom: 0.5rem;
}
.page-hero p {
color: rgba(255,255,255,0.8);
font-size: 1.125rem;
margin: 0;
} .section {
padding: 4rem 0;
}
.section-lg {
padding: 5rem 0;
}
.section-accent {
background: var(--color-accent);
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
margin-bottom: 0.75rem;
}
.section-header p {
max-width: 600px;
margin: 0 auto;
} .card {
background: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
transition: box-shadow 0.3s var(--ease-out);
}
.card:hover {
box-shadow: var(--shadow-lg);
}
.card-img {
width: 100%;
height: 200px;
object-fit: cover;
}
.card-body {
padding: 1.5rem;
}
.card-title {
font-size: 1.125rem;
margin-bottom: 0.5rem;
}
.card-text {
font-size: 0.875rem;
color: var(--color-muted);
} .grid {
display: grid;
gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); } .price-table {
width: 100%;
border-collapse: collapse;
background: var(--color-card);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
border: 1px solid var(--color-border);
}
.price-table thead {
background: var(--color-primary);
color: #fff;
}
.price-table th,
.price-table td {
padding: 0.75rem 1rem;
text-align: left;
font-size: 0.875rem;
}
.price-table th {
font-family: var(--font-heading);
font-weight: 600;
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.025em;
}
.price-table tbody tr {
border-bottom: 1px solid var(--color-border);
}
.price-table tbody tr:nth-child(even) {
background: var(--color-accent);
}
.price-table tbody tr:last-child {
border-bottom: none;
}
.price-table .price {
font-weight: 600;
color: var(--color-primary);
} .opening-hours {
background: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 2rem;
}
.opening-hours h3 {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}
.hours-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.hours-item dt {
font-weight: 600;
font-size: 0.875rem;
color: var(--color-foreground);
}
.hours-item dd {
font-size: 0.875rem;
color: var(--color-muted);
margin-top: 0.25rem;
} .review-card {
background: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 1.5rem;
}
.review-stars {
display: flex;
gap: 0.125rem;
margin-bottom: 0.75rem;
}
.review-stars svg {
width: 16px;
height: 16px;
fill: #facc15;
color: #facc15;
}
.review-text {
font-size: 0.875rem;
color: var(--color-foreground);
line-height: 1.6;
margin-bottom: 1rem;
font-style: italic;
}
.review-author {
font-size: 0.8125rem;
font-weight: 600;
color: var(--color-foreground);
}
.review-date {
font-size: 0.75rem;
color: var(--color-muted);
} .team-card {
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--color-border);
background: var(--color-card);
transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.team-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.team-card-img {
position: relative;
height: 260px;
overflow: hidden;
}
.team-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-card-img img {
transform: scale(1.05);
}
.team-card-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.team-card-img .team-info {
position: absolute;
bottom: 1rem;
left: 1rem;
z-index: 2;
}
.team-card-img .team-info h3 {
color: #fff;
font-size: 1.125rem;
margin-bottom: 0.125rem;
}
.team-card-img .team-info span {
color: rgba(255,255,255,0.8);
font-size: 0.8125rem;
}
.team-card-body {
padding: 1.25rem;
}
.team-card-body p {
font-size: 0.875rem;
margin-bottom: 1rem;
}
.team-tags {
display: flex;
flex-wrap: wrap;
gap: 0.375rem;
}
.team-tag {
font-size: 0.75rem;
padding: 0.25rem 0.625rem;
background: rgba(20, 107, 48, 0.1);
color: var(--color-primary);
border-radius: 9999px;
font-weight: 500;
} .faq-item {
border: 1px solid var(--color-border);
border-radius: var(--radius);
margin-bottom: 0.75rem;
overflow: hidden;
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 1.25rem 1.5rem;
background: var(--color-card);
border: none;
cursor: pointer;
font-family: var(--font-heading);
font-size: 0.9375rem;
font-weight: 600;
color: var(--color-foreground);
text-align: left;
transition: background 0.2s;
}
.faq-question:hover {
background: var(--color-accent);
}
.faq-question svg {
width: 20px;
height: 20px;
transition: transform 0.3s var(--ease-out);
flex-shrink: 0;
margin-left: 1rem;
}
.faq-item.open .faq-question svg {
transform: rotate(180deg);
}
.faq-answer {
padding: 0 1.5rem 1.25rem;
font-size: 0.875rem;
color: var(--color-muted);
line-height: 1.7;
display: none;
}
.faq-item.open .faq-answer {
display: block;
} .instagram-section {
background: var(--color-accent);
} .cta-section {
background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
color: #fff;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
inset: 0;
opacity: 0.1;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M0,400 L0,300 L200,200 L400,280 L600,150 L800,250 L1000,100 L1200,220 L1440,180 L1440,400 Z'/%3E%3C/svg%3E");
background-size: cover;
}
.cta-section .container {
position: relative;
z-index: 2;
}
.cta-section h2 {
color: #fff;
margin-bottom: 1rem;
}
.cta-section p {
color: rgba(255,255,255,0.8);
max-width: 600px;
margin: 0 auto 2rem;
} .site-footer {
background: var(--color-foreground);
color: rgba(255,255,255,0.7);
padding: 4rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-brand p {
color: rgba(255,255,255,0.6);
font-size: 0.875rem;
margin-top: 1rem;
}
.footer-brand img {
height: 40px;
filter: brightness(0) invert(1);
}
.site-footer h4 {
color: #fff;
font-size: 0.9375rem;
margin-bottom: 1rem;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: rgba(255,255,255,0.6);
font-size: 0.875rem;
transition: color 0.2s;
}
.footer-links a:hover {
color: #fff;
}
.footer-contact li {
display: flex;
align-items: flex-start;
gap: 0.5rem;
margin-bottom: 0.75rem;
font-size: 0.875rem;
}
.footer-contact svg {
width: 16px;
height: 16px;
flex-shrink: 0;
margin-top: 2px;
opacity: 0.8;
}
.footer-social {
display: flex;
gap: 0.75rem;
margin-top: 1.5rem;
}
.footer-social a {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255,255,255,0.1);
color: rgba(255,255,255,0.7);
transition: all 0.2s var(--ease-out);
}
.footer-social a:hover {
background: var(--color-primary);
color: #fff;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.8125rem;
}
.footer-legal {
display: flex;
gap: 1.5rem;
}
.footer-legal a {
color: rgba(255,255,255,0.5);
}
.footer-legal a:hover {
color: #fff;
} @media (max-width: 1024px) {
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.main-nav {
display: none;
position: fixed;
top: 72px;
left: 0;
right: 0;
bottom: 0;
background: var(--color-background);
flex-direction: column;
padding: 2rem;
gap: 0.5rem;
overflow-y: auto;
z-index: 99;
}
.main-nav.open {
display: flex;
}
.main-nav > li > a,
.main-nav > li > button {
padding: 0.875rem 1rem;
font-size: 1rem;
}
.nav-dropdown {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
border: none;
padding-left: 1rem;
}
.nav-toggle {
display: block;
}
.grid-2,
.grid-3 {
grid-template-columns: 1fr;
}
.hours-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.hero {
min-height: 60vh;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.price-table {
display: block;
overflow-x: auto;
}
.section {
padding: 3rem 0;
}
.section-lg {
padding: 3.5rem 0;
}
}
@media (max-width: 480px) {
.hero-buttons {
flex-direction: column;
align-items: center;
}
.btn-lg {
width: 100%;
justify-content: center;
}
}