/* ============================================
   RESET E ESTILOS BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'system-ui', sans-serif;
    line-height: 1.6;
    color: #0D0D0D;
    background-color: #F2F2F2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   VARIÁVEIS DE CORES (DESIGN SYSTEM)
   ============================================ */
:root {
     --cor-roxo-profundo: #4B0082;
     --cor-rosa-claro: #FFE4E1;
     --cor-verde-eletrico: #39FF14;
     --cor-branco-puro: #F8F8FF;
     --cor-preto-roxo-escuro: #0D0D0D;
     --cor-pink-vibrante: #E91E63;
     --cor-verde-lima: #CDDC39;
     --cor-laranja-tangerina: #FF6B35;
     --cor-amarelo-sol: #FFC107;
     --cor-white: #ffffff;
     --cor-green: #10b981;
     --cor-gray: #f3f4f6;
     --cor-marrom: #4B0082;
     --cor-bege: #FFE4E1;
     --cor-terracota: #FF6B35;
     --cor-offwhite: #F8F8FF;
     --cor-dark: #0D0D0D;
}

/* ============================================
   UTILITÁRIOS E COMPONENTES BASE
   ============================================ */
.utility-classes {
    /* Espaçamentos */
    .mb-0 { margin-bottom: 0; }
    .mb-1 { margin-bottom: 0.25rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 0.75rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }

    .mt-0 { margin-top: 0; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-4 { margin-top: 1rem; }
    .mt-6 { margin-top: 1.5rem; }
    .mt-8 { margin-top: 2rem; }

    .p-2 { padding: 0.5rem; }
    .p-3 { padding: 0.75rem; }
    .p-4 { padding: 1rem; }
    .p-6 { padding: 1.5rem; }
    .p-8 { padding: 2rem; }

    /* Textos */
    .text-center { text-align: center; }
    .text-white { color: white; }
    .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .text-5xl { font-size: 3rem; line-height: 1; }

    .font-bold { font-weight: 700; }
    .font-semibold { font-weight: 600; }
    .font-medium { font-weight: 500; }

    /* Bordas */
    .rounded { border-radius: 0.25rem; }
    .rounded-lg { border-radius: 0.5rem; }
    .rounded-xl { border-radius: 0.75rem; }
    .rounded-2xl { border-radius: 1rem; }
    .rounded-full { border-radius: 9999px; }

    /* Sombras */
    .shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
    .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
    .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
    .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

    /* Transições */
    .transition-all { transition: all 0.3s ease; }
    .transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
    .transition-transform { transition: transform 0.3s ease; }
}

/* ============================================
   LAYOUT E GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* ============================================
   FLEXBOX UTILITIES
   ============================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* ============================================
   BOTÕES E COMPONENTES INTERATIVOS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cor-terracota), var(--cor-marrom));
    color: var(--cor-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--cor-marrom), var(--cor-terracota));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--cor-bege);
    color: var(--cor-marrom);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: var(--cor-marrom);
    color: var(--cor-bege);
    border-color: var(--cor-bege);
}

.btn-outline {
    background: transparent;
    color: var(--cor-marrom);
    border: 2px solid var(--cor-marrom);
}

.btn-outline:hover {
    background: var(--cor-marrom);
    color: var(--cor-white);
}

/* ============================================
   CARDS E COMPONENTES
   ============================================ */
.card {
    background: var(--cor-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-marrom);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--cor-terracota);
    font-weight: 500;
}

.card-body {
    color: var(--cor-dark);
    line-height: 1.6;
}

/* ============================================
   BACKGROUND PATTERNS
   ============================================ */
.bg-leaf {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 Q60 20 70 30 Q80 40 70 50 Q60 60 50 70 Q40 60 30 50 Q20 40 30 30 Q40 20 50 10" fill="%23D9CD91" opacity="0.1"/></svg>');
}

.bg-flower {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="%23A65C32"/><circle cx="35" cy="35" r="15" fill="%23D9CD91"/><circle cx="65" cy="35" r="15" fill="%23D9CD91"/><circle cx="35" cy="65" r="15" fill="%23D9CD91"/><circle cx="65" cy="65" r="15" fill="%23D9CD91"/></svg>');
}

.bg-wave {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 25 50 50 T100 50 V100 H0 Z" fill="%23F2F2F2"/></svg>');
}

/* ============================================
   ANIMAÇÕES E TRANSIÇÕES
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.8s ease-out forwards; }

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 640px) {
    .container { padding: 0 1rem; }
    .text-4xl { font-size: 2rem; }
    .text-5xl { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-3 { grid-template-columns: 1fr; }
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   PÁGINAS ESPECÍFICAS - CURSOS JOVENS
   ============================================ */
.cursos-jovens-hero {
    position: relative;
    overflow: hidden;
}

.cursos-jovens-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 205, 145, 0.05) 0%, rgba(166, 92, 50, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.cursos-jovens-hero > * {
    position: relative;
    z-index: 2;
}

.cursos-jovens-floating-element {
    animation: cursos-jovens-float 6s ease-in-out infinite;
}

@keyframes cursos-jovens-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@media (max-width: 768px) {
    .cursos-jovens-floating-element {
        animation-duration: 4s;
    }

    .curso-card {
        padding: 1.5rem;
    }

    /* Mobile cards com botões */
    .mobile-card-button {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .mobile-card-button .flex {
        flex-direction: column;
        gap: 0.75rem;
    }

    .mobile-card-button .text-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        margin-top: 0.5rem;
    }

    .mobile-card-button button {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Cards específicos para mobile */
    .course-card-mobile {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .course-card-mobile h4 {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .course-card-mobile p {
        font-size: 0.75rem;
        line-height: 1rem;
        margin-bottom: 0.5rem;
    }

    .course-card-mobile .course-info {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        margin-top: 0.5rem;
    }
}

/* ============================================
   PÁGINAS ESPECÍFICAS - CURSOS ADULTOS
   ============================================ */
.cursos-adultos-hero {
    position: relative;
    overflow: hidden;
}

.cursos-adultos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 205, 145, 0.05) 0%, rgba(166, 92, 50, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.cursos-adultos-hero > * {
    position: relative;
    z-index: 2;
}

.cursos-adultos-floating-element {
    animation: cursos-adultos-float 6s ease-in-out infinite;
}

@keyframes cursos-adultos-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@media (max-width: 768px) {
    .cursos-adultos-floating-element {
        animation-duration: 4s;
    }

    .curso-card {
        padding: 1.5rem;
    }
}

/* ============================================
   CORES DA MARCA (HATEVA DESIGN SYSTEM)
   ============================================ */
.text-hateva-marrom { color: var(--cor-marrom); }
.text-hateva-bege { color: var(--cor-bege); }
.text-hateva-terracota { color: var(--cor-terracota); }
.text-hateva-offwhite { color: var(--cor-offwhite); }
.text-hateva-dark { color: var(--cor-dark); }

.bg-hateva-marrom { background-color: var(--cor-marrom); }
.bg-hateva-bege { background-color: var(--cor-bege); }
.bg-hateva-terracota { background-color: var(--cor-terracota); }
.bg-hateva-offwhite { background-color: var(--cor-offwhite); }
.bg-hateva-dark { background-color: var(--cor-dark); }

/* ============================================
   NAVEGAÇÃO E HEADER
   ============================================ */
nav {
    background: var(--cor-marrom);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav a {
    color: var(--cor-offwhite);
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--cor-bege);
}

nav .logo {
    font-weight: 700;
    font-size: 1.25rem;
}

/* ============================================
   SEÇÕES PRINCIPAIS
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cor-marrom);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(135deg, var(--cor-terracota), var(--cor-bege));
    border-radius: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--cor-marrom);
    opacity: 0.8;
    max-width: 42rem;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cor-bege) 0%, var(--cor-terracota) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cor-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--cor-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    text-align: center;
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CARDS ESPECIAIS
   ============================================ */
.curso-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 205, 145, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(166, 92, 50, 0.5);
}

.curso-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(217, 205, 145, 0.1), transparent);
    border-radius: 50%;
    transform: translate(25%, -25%);
}

.curso-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(166, 92, 50, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-25%, 25%);
}

/* ============================================
   ELEMENTOS FLUTUANTES E DECORATIVOS
   ============================================ */
.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

/* ============================================
   FORMULÁRIOS E INPUTS
   ============================================ */
.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--cor-bege);
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: var(--cor-terracota);
    box-shadow: 0 0 0 3px rgba(166, 92, 50, 0.2);
    transform: scale(1.02);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-button {
    background: linear-gradient(135deg, var(--cor-terracota), var(--cor-marrom));
    color: var(--cor-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--cor-pink-vibrante);
    border-top: 2px solid var(--cor-rosa-claro);
    z-index: 40;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateY(0);
    max-height: 100vh;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--cor-branco-puro);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 228, 225, 0.3);
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: rgba(255, 228, 225, 0.2);
    padding-left: 2rem;
    color: var(--cor-rosa-claro);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--cor-dark), #1a1a1a);
    color: var(--cor-offwhite);
    padding: 3rem 0 2rem;
    text-align: center;
}

footer h4 {
    color: var(--cor-bege);
    margin-bottom: 1rem;
}

footer a {
    color: var(--cor-offwhite);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--cor-bege);
}

/* ============================================
   RESPONSIVIDADE AVANÇADA
   ============================================ */
@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
}

@media (max-width: 640px) {
    .section { padding: 3rem 0; }
    .section-title { font-size: 2.25rem; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .mobile-menu a { padding: 0.75rem 1rem; }
    .floating-element { display: none; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.75rem; }
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid var(--cor-bege);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero,
    .section:nth-child(even) {
        background: var(--cor-marrom) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-element {
        opacity: 0.3 !important;
    }
}

/* Header and Navigation */
header {
    background-color: #736830;
    color: #F2F2F2;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #D9CD91;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: #D9CD91;
    padding: 120px 20px 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #736830;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #A65C32;
}

.hero p {
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Sections */
.section {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.section:nth-child(even) {
    background-color: #D9CD91;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #736830;
    text-align: center;
}

.section p {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.activity {
    background-color: #F2F2F2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.activity h3 {
    color: #A65C32;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #A65C32;
    color: #F2F2F2;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #736830;
}

/* Footer */
footer {
    background-color: #0D0D0D;
    color: #F2F2F2;
    padding: 40px 0;
    text-align: center;
}

.contact p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        display: none; /* Simple mobile menu, can be enhanced */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}