 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --teal: #0D5C63; --teal-dark: #094950; --amber: #D4A574; --amber-dark: #C08B5C; --terracotta: #C75B3F; --cream: #FAF7F2; --cream-dark: #F0EBE3; --charcoal: #2C2C2C; --white: #FFFFFF; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Source Sans 3', system-ui, sans-serif; background-color: var(--cream); color: var(--charcoal); line-height: 1.6; } h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; } .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; } @media (min-width: 640px) { .container { padding: 0 1.5rem; } } @media (min-width: 1024px) { .container { padding: 0 2rem; } } a { text-decoration: none; color: inherit; } img { max-width: 100%; height: auto; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 9999px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; } .btn-amber { background-color: var(--amber); color: var(--charcoal); box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4); } .btn-amber:hover { background-color: var(--amber-dark); transform: translateY(-2px); } .btn-teal { background-color: var(--teal); color: var(--white); } .btn-teal:hover { background-color: var(--teal-dark); } /* Header */ .header { position: sticky; top: 0; z-index: 100; background: rgba(250, 247, 242, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212, 165, 116, 0.2); } .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; } .logo { display: flex; align-items: center; gap: 0.75rem; } .logo-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; } .logo-icon svg { width: 24px; height: 24px; color: var(--white); } .logo-text { display: none; } @media (min-width: 640px) { .logo-text { display: block; } } .logo-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--teal-dark); line-height: 1.2; } .logo-subtitle { font-size: 0.75rem; color: #666; letter-spacing: 0.05em; } .nav { display: none; } @media (min-width: 1024px) { .nav { display: flex; align-items: center; gap: 2rem; } } .nav a { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); padding: 0.5rem 0; position: relative; transition: color 0.3s ease; } .nav a:hover, .nav a.active { color: var(--teal); } .nav a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--amber); } .header-cta { display: none; } @media (min-width: 768px) { .header-cta { display: block; } } .mobile-menu-btn { display: block; padding: 0.5rem; background: none; border: none; cursor: pointer; } @media (min-width: 1024px) { .mobile-menu-btn { display: none; } } /* Page Hero */ .page-hero { position: relative; padding: 6rem 0; background: var(--teal); overflow: hidden; } .page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; } .page-hero-content { position: relative; z-index: 10; text-align: center; } .page-hero h1 { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; } @media (min-width: 768px) { .page-hero h1 { font-size: 3.5rem; } } .page-hero p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); max-width: 640px; margin: 0 auto; } /* Featured Event */ .featured-event { padding: 5rem 0; background: var(--amber); } .featured-grid { display: grid; gap: 3rem; align-items: center; } @media (min-width: 1024px) { .featured-grid { grid-template-columns: 1fr 1fr; } } .featured-image img { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); } .featured-content h2 { font-size: 1rem; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; } .featured-content h3 { font-size: 2rem; color: var(--charcoal); margin-bottom: 1.5rem; } @media (min-width: 768px) { .featured-content h3 { font-size: 2.5rem; } } .event-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; } .event-detail { display: flex; align-items: center; gap: 0.75rem; } .event-detail svg { width: 1.5rem; height: 1.5rem; color: var(--teal); } .event-detail span { font-size: 1.125rem; color: var(--charcoal); } .featured-content p { font-size: 1.125rem; color: rgba(44, 44, 44, 0.8); line-height: 1.7; margin-bottom: 2rem; } /* Upcoming Events */ .upcoming-events { padding: 5rem 0; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2rem; color: var(--charcoal); margin-bottom: 1rem; } @media (min-width: 768px) { .section-header h2 { font-size: 2.5rem; } } .section-header p { font-size: 1.125rem; color: #666; } .events-grid { display: grid; gap: 2rem; } @media (min-width: 768px) { .events-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } } .event-card { background: var(--white); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; } .event-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); } .event-card-image { position: relative; height: 200px; overflow: hidden; } .event-card-image img { width: 100%; height: 100%; object-fit: cover; } .event-date-badge { position: absolute; top: 1rem; left: 1rem; background: var(--teal); color: var(--white); padding: 0.5rem 1rem; border-radius: 0.5rem; text-align: center; } .event-date-badge .day { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1; } .event-date-badge .month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; } .event-card-content { padding: 1.5rem; } .event-card-content h3 { font-size: 1.25rem; color: var(--charcoal); margin-bottom: 1rem; } .event-card-detail { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: #666; font-size: 0.875rem; } .event-card-detail svg { width: 1rem; height: 1rem; color: var(--amber); } .event-card-footer { padding: 0 1.5rem 1.5rem; } .event-card-footer .btn { width: 100%; padding: 0.75rem 1.5rem; } /* What to Expect */ .what-to-expect { padding: 5rem 0; background: var(--cream-dark); } .expect-grid { display: grid; gap: 2rem; } @media (min-width: 768px) { .expect-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .expect-grid { grid-template-columns: repeat(4, 1fr); } } .expect-item { text-align: center; padding: 2rem; background: var(--white); border-radius: 1rem; } .expect-icon { width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%; background: rgba(13, 92, 99, 0.1); display: flex; align-items: center; justify-content: center; } .expect-icon svg { width: 2rem; height: 2rem; color: var(--teal); } .expect-item h3 { font-size: 1.125rem; color: var(--charcoal); margin-bottom: 0.5rem; } .expect-item p { font-size: 0.875rem; color: #666; } /* Footer */ .footer { background: var(--teal-dark); color: var(--white); } .footer-pattern { height: 8px; background: linear-gradient(to right, var(--teal), var(--amber), var(--terracotta)); } .footer-content { padding: 4rem 0; } .footer-grid { display: grid; gap: 3rem; } @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } } .footer-about { max-width: 28rem; } .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; } .footer-logo-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; } .footer-logo-icon svg { width: 24px; height: 24px; color: var(--amber); } .footer-logo-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; } .footer-logo-subtitle { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); } .footer-about p { color: rgba(255, 255, 255, 0.8); line-height: 1.7; margin-bottom: 1.5rem; } .footer-social { display: flex; gap: 1rem; } .footer-social a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; } .footer-social a:hover { background: var(--amber); } .footer-social svg { width: 1.25rem; height: 1.25rem; } .footer-links h4, .footer-contact h4 { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 600; color: var(--amber); margin-bottom: 1.5rem; } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 0.75rem; } .footer-links a { color: rgba(255, 255, 255, 0.8); transition: color 0.3s ease; } .footer-links a:hover { color: var(--amber); } .footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; } .footer-contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--amber); margin-top: 0.125rem; flex-shrink: 0; } .footer-contact-item span, .footer-contact-item a { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; } .footer-contact-item a:hover { color: var(--amber); } .footer-bottom { padding: 2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; } @media (min-width: 768px) { .footer-bottom { flex-direction: row; } } .footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
