* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', serif;
line-height: 1.6;
color: #2c5530;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding-top: 65px; }
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} header {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
padding: 0.5rem 0;
height: 65px;
min-height: 65px;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
color: white;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
flex-wrap: nowrap;
}
.logo {
font-size: 1.3rem;
font-weight: bold;
color: #ff6b6b;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
text-decoration: none;
flex-shrink: 0;
}
.watermelon-symbol {
display: inline-block;
animation: pulse 2s ease-in-out infinite;
font-size: 1.1rem;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.nav-menu {
display: flex;
list-style: none;
gap: 1rem;
margin: 0;
padding: 0;
align-items: center;
flex-wrap: nowrap;
}
.nav-menu li {
margin: 0;
padding: 0;
}
.nav-menu a {
color: #2d5016;
text-decoration: none;
transition: color 0.3s ease;
font-weight: 600;
font-size: 0.8rem;
padding: 0.3rem 0.5rem;
white-space: nowrap;
}
.nav-menu a:hover {
color: #ff6b6b;
}
.mobile-toggle {
display: none;
background: none;
border: none;
color: #2d5016;
font-size: 1.5rem;
cursor: pointer;
padding: 0.5rem;
border-radius: 4px;
transition: all 0.3s ease;
}
.mobile-toggle:hover {
background: rgba(255, 107, 107, 0.1);
color: #ff6b6b;
} .hero {
background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.7));
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 10rem 0 8rem 0;
position: relative;
margin-top: 0; }
.hero::before {
content: '🍉';
position: absolute;
font-size: 8rem;
top: 20%;
left: 10%;
opacity: 0.1;
animation: float 6s ease-in-out infinite;
}
.hero::after {
content: '🦋';
position: absolute;
font-size: 4rem;
top: 30%;
right: 15%;
opacity: 0.2;
animation: float 4s ease-in-out infinite reverse;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero h1 {
font-size: 3.5rem;
font-weight: 100;
letter-spacing: -2px;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
animation: slideInFromTop 1s ease-out;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
animation: slideInFromBottom 1s ease-out 0.3s both;
}
@keyframes slideInFromTop {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInFromBottom {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.cta-button {
display: inline-block;
background: linear-gradient(135deg, #007AFF, #0051D5);
color: white;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 12px;
font-weight: 500;
letter-spacing: 0.5px;
backdrop-filter: blur(20px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
animation: slideInFromBottom 1s ease-out 0.6s both;
position: relative;
overflow: hidden;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease;
}
.cta-button:hover::before {
left: 100%;
} section {
padding: 4rem 0;
scroll-margin-top: 100px;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #2d5016;
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 60px;
height: 4px;
background: linear-gradient(135deg, #ff6b6b, #2d5016);
margin: 1rem auto;
border-radius: 2px;
} .mission {
background: white;
border-radius: 20px;
padding: 3rem;
margin: 2rem 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mission-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.mission-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
padding: 2rem;
border-radius: 15px;
text-align: center;
transition: transform 0.3s ease;
border-left: 4px solid #ff6b6b;
animation: fadeInUp 0.6s ease forwards;
opacity: 0;
transform: translateY(30px);
}
.mission-card:hover {
transform: translateY(-5px);
}
.mission-card:nth-child(1) { animation-delay: 0.1s; }
.mission-card:nth-child(2) { animation-delay: 0.2s; }
.mission-card:nth-child(3) { animation-delay: 0.3s; }
.mission-card:nth-child(4) { animation-delay: 0.4s; }
.mission-card:nth-child(5) { animation-delay: 0.5s; }
.mission-card:nth-child(6) { animation-delay: 0.6s; }
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.mission-card h3 {
color: #2d5016;
margin-bottom: 1rem;
font-size: 1.5rem;
} .post {
background: white;
border-radius: 15px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.post-title {
color: #2d5016;
margin-bottom: 1rem;
}
.post-title a {
color: #2d5016;
text-decoration: none;
}
.post-title a:hover {
color: #ff6b6b;
}
.post-meta {
color: #666;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.post-content {
line-height: 1.8;
}
.read-more {
color: #ff6b6b;
text-decoration: none;
font-weight: bold;
cursor: pointer;
font-weight: 500;
text-decoration: underline;
font-size: 0.85rem;
}
.read-more:hover {
color: #ee5a52;
} footer {
background: #2d5016;
color: white;
text-align: center;
padding: 3rem 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: #ff6b6b;
margin-bottom: 1rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: color 0.3s ease;
text-decoration: none;
}
.social-links a:hover {
color: #ff6b6b;
} .modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
animation: fadeIn 0.3s ease;
}
.modal-content {
background: white;
margin: 5% auto;
padding: 2rem;
border-radius: 20px;
width: 90%;
max-width: 600px;
max-height: 80vh;
overflow-y: auto;
position: relative;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: slideUp 0.3s ease;
}
.close-modal {
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 2rem;
cursor: pointer;
color: #999;
transition: color 0.3s ease;
}
.close-modal:hover {
color: #ff6b6b;
}
.modal-artist-photo {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
background: #f0f0f0;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from { transform: translateY(50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
} select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: white;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: 2.5rem;
cursor: pointer;
}
select::-moz-focus-inner {
border: 0;
}
select::-ms-expand {
display: none;
} .filter-buttons {
margin-bottom: 2rem;
padding: 1rem;
position: relative;
z-index: 150;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.filter-btn {
background: rgba(255, 107, 107, 0.1);
color: #2d5016;
border: 2px solid #ff6b6b;
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s ease;
margin: 0.2rem;
white-space: nowrap;
}
.filter-btn:hover {
background: rgba(255, 107, 107, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.filter-btn.active {
background: linear-gradient(135deg, #ff6b6b, #ee5a52);
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
.filter-btn:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
}
#artistGrid {
transition: all 0.3s ease;
min-height: 300px;
}
.artist-card {
transition: all 0.5s ease;
opacity: 1;
transform: translateY(0);
}
.artist-card.hidden {
opacity: 0;
transform: translateY(20px);
pointer-events: none;
} .back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 50px;
height: 50px;
background: linear-gradient(135deg, #ff6b6b, #ee5a52);
color: white;
border: none;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
transition: all 0.3s ease;
z-index: 999;
opacity: 0;
visibility: hidden;
transform: translateY(100px);
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
} .wp-block-group {
margin: 2rem 0;
}
.wp-block-image {
text-align: center;
margin: 2rem 0;
}
.wp-block-quote {
border-left: 4px solid #ff6b6b;
padding-left: 1rem;
margin: 2rem 0;
font-style: italic;
}
.aligncenter {
text-align: center;
}
.alignleft {
float: left;
margin: 0 1rem 1rem 0;
}
.alignright {
float: right;
margin: 0 0 1rem 1rem;
}  @media (min-width: 1200px) {
.logo {
font-size: 1.4rem;
}
.nav-menu {
gap: 1.5rem;
}
.nav-menu a {
font-size: 0.85rem;
padding: 0.4rem 0.6rem;
}
} @media (min-width: 769px) and (max-width: 1024px) {
.logo {
font-size: 1.2rem;
}
.nav-menu {
gap: 0.8rem;
}
.nav-menu a {
font-size: 0.75rem;
padding: 0.2rem 0.4rem;
}
.hero h1 {
font-size: 3rem;
}
.mission-grid {
grid-template-columns: repeat(2, 1fr);
}
} @media (min-width: 769px) and (max-width: 900px) {
.logo {
font-size: 1.1rem;
}
.nav-menu {
gap: 0.6rem;
}
.nav-menu a {
font-size: 0.7rem;
padding: 0.2rem 0.3rem;
}
} @media (max-width: 768px) {
body {
padding-top: 0;
}
header {
position: relative;
height: auto;
padding: 1rem 0;
}
nav {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
.nav-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.mobile-toggle {
display: block;
}
.nav-menu {
width: 100%;
flex-direction: column;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 1rem;
gap: 0.5rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
margin-top: 1rem;
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.nav-menu.mobile-visible {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.nav-menu li {
width: 100%;
text-align: center;
}
.nav-menu a {
display: block;
padding: 0.8rem 1rem;
border-radius: 8px;
font-size: 0.9rem;
width: 100%;
text-align: center;
}
.nav-menu a:hover {
background: rgba(255, 107, 107, 0.1);
transform: translateX(5px);
}
.hero {
padding: 4rem 0 3rem 0;
}
.hero h1 {
font-size: 2.5rem;
line-height: 1.2;
}
.hero p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
}
.container {
padding: 0 1rem;
}
.mission-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.mission-card {
padding: 1.5rem 1rem;
}
.section-title {
font-size: 2rem;
}
.filter-buttons {
flex-direction: column;
align-items: center;
gap: 0.3rem;
margin-bottom: 1.5rem;
padding: 0.5rem;
}
.filter-btn {
width: 100%;
max-width: 200px;
text-align: center;
padding: 0.8rem 1rem;
font-size: 0.85rem;
}
.back-to-top {
bottom: 1rem;
right: 1rem;
width: 45px;
height: 45px;
font-size: 1rem;
}
.modal-content {
margin: 10% auto;
width: 95%;
padding: 1.5rem;
}
select {
font-size: 16px; }
} @media (max-width: 480px) {
.hero {
padding: 3rem 0 2rem 0;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.mission-card {
padding: 1rem;
}
.filter-btn {
font-size: 0.8rem;
padding: 0.7rem 0.8rem;
}
} html {
scroll-behavior: smooth;
}
a[href^="#"] {
scroll-behavior: smooth;
} .filter-btn:focus-visible {
outline: 3px solid #ff6b6b;
outline-offset: 2px;
}
@media (prefers-contrast: high) {
.filter-btn {
border-width: 3px;
font-weight: 600;
}
.filter-btn.active {
background: #000;
color: #fff;
border-color: #000;
}
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
html {
scroll-behavior: auto;
}
}  h3 {
text-align: center !important;
color: #2d5016 !important;
font-size: 1.4rem !important;
font-weight: 600 !important;
margin-bottom: 1rem !important;
} .container h3,
main h3,
section h3,
article h3 {
text-align: center !important;
color: #2d5016 !important;
font-size: 1.4rem !important;
font-weight: 600 !important;
margin-bottom: 1rem !important;
} h3 + p,
.container h3 + p,
main h3 + p,
section h3 + p {
text-align: center !important;
color: #666 !important;
line-height: 1.6 !important;
font-size: 0.95rem !important;
margin-bottom: 2rem !important;
} .emoji,
span[role="img"],
span.emoji,
div.emoji,
p.emoji, p:has-text("🎭"),
p:has-text("📖"),
p:has-text("🎭"),
p:has-text("🌍"), .wp-block-paragraph,
.entry-content p, p:empty + p,
h3 + p + p {
text-align: center !important;
font-size: 2.5rem !important;
margin: 0.5rem auto !important;
display: block !important;
} body p {
text-align: center !important;
} .container > p,
main > p,
section > p,
article > p {
text-align: center !important;
font-size: 2rem !important;
margin: 1rem auto !important;
} .wp-block-heading h3,
.entry-content h3,
.post-content h3 {
text-align: center !important;
color: #2d5016 !important;
font-size: 1.4rem !important;
}  .emoji,
span.emoji {
display: block !important;
text-align: center !important;
font-size: 2.5rem !important;
margin: 1rem auto !important;
width: 100% !important;
} .emoji-container,
div:has(.emoji),
p:has(.emoji) {
text-align: center !important;
width: 100% !important;
} .entry-content .emoji,
.post-content .emoji,
.content .emoji {
display: block !important;
text-align: center !important;
font-size: 2.5rem !important;
margin: 1rem auto !important;
width: 100% !important;
} *:has(> .emoji) {
text-align: center !important;
} @media (max-width: 768px) { body {
padding-top: 0 !important;
margin-top: 0 !important;
} header {
position: relative !important;
margin-bottom: 0 !important;
} section {
padding: 1.5rem 0 !important;
margin-top: 0 !important;
} .hero {
padding: 3rem 0 2rem 0 !important;
margin-top: 0 !important;
} .container {
padding: 0 1rem !important;
margin-top: 0 !important;
} .mission-card {
padding: 1.5rem 1rem !important;
margin-bottom: 1rem !important;
} .mission-grid {
margin-top: 1rem !important;
gap: 1rem !important;
} .section-title {
margin-bottom: 1.5rem !important;
font-size: 2rem !important;
} section:first-of-type,
.hero,
main > section:first-child {
padding-top: 1rem !important;
margin-top: 0 !important;
} .entry-content,
.post-content,
.page-content {
margin-top: 0 !important;
padding-top: 0.5rem !important;
} .nav-menu {
margin-top: 1rem !important;
} .filter-buttons {
margin-top: 1rem !important;
padding: 1rem 0.5rem !important;
}
} @media (max-width: 480px) { section {
padding: 1rem 0 !important;
}
.hero {
padding: 2rem 0 1.5rem 0 !important;
}
.container {
padding: 0 0.5rem !important;
}
.mission-card {
padding: 1rem !important;
}
.section-title {
font-size: 1.8rem !important;
margin-bottom: 1rem !important;
}
} @media (max-width: 768px) { div[style*="text-align: center"] {
margin-top: 0 !important;
margin-bottom: 1rem !important;
padding-top: 0 !important;
} div[style*="margin-bottom: 2rem"] {
margin-top: 0 !important;
margin-bottom: 1rem !important;
} [style*="text-align: center"] {
margin-top: 0 !important;
padding-top: 0 !important;
} body {
padding-top: 0 !important;
}
header {
margin-bottom: 0 !important;
}
} @media (max-width: 768px) { section[style*="margin-top: 80px"] {
margin-top: 10px !important;
} section[style*="margin-top"] {
margin-top: 10px !important;
} section[style*="background: white"] {
margin-top: 10px !important;
}
} @media (max-width: 768px) { nav {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
} .nav-menu.mobile-hidden {
display: none !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
} .nav-menu.mobile-visible {
display: flex !important;
margin-top: 1rem !important;
} section[style*="margin-top: 80px"] {
margin-top: 1rem !important;
} header {
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
}