html, body {
    margin: 0;
    padding: 0;
    background-color: #faefae;
    color: #1a141a;
    font-family: Arial, Helvetica, sans-serif;
}


header {
    background-color: #f2c14e;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: fixed;
    width: 100%;
}

section {
    padding: 60px 10%;
    font-weight: bold;
}

.panel1 {
    text-align: center;
}

.panel1 h1 {
    margin-bottom: 50px;
}

.intro-left {
    max-width: 600px;
    text-align: left;
}

.intro-right {
    max-width: 600px;
    margin-left: auto;
    margin-top: 40px;
    text-align: right;
}

.panel2 {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    text-align: center;
}

.section-title,
.events-message {
    grid-column: 1 / -1;
    text-align: center;
}

.event-card {
    background: #f2c14e;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.event-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.panel3 h2 {
    text-align: center;
    margin-bottom: 40px;
}

.shopping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.shopping-card {
    background: #f2c14e;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.panel4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.panel4 h2 {
    text-align: center;
}

.contact-info,
form {
    background: #f2c14e;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    height: 100%;
}

.contact-socials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10%;
    align-items: center;
    padding-left: 25%;
    padding-right: 25%;
}

.social-link {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(50% -50%,100% 50%,50% 150%,0 50%);
    background: #8c6446ff;
}
  
  .social-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    padding: 12px 20px;
    cursor: pointer;
    width: 100%;
}

footer {
    background-color: #f2c14e;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .panel2 {
        grid-template-columns: 1fr;
    }

    .panel4 {
        grid-template-columns: 1fr;
    }

    .event-nav {
        display: none;
    }
}