@import 'colors.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Staatliches', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Main content styles */
main {
    padding-top: 120px;
    background: var(--bg-primary);
    min-height: 100vh;
    padding-bottom: 100px;
}

article {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

article h2 {
    color: var(--header-text);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

article h3 {
    color: var(--text-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

article p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

article img {
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 30%;
    height: auto;
}
.event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    margin-bottom: 20px;
    background-color: white;
    transition: transform 0.2s;
    position: relative;
    padding: 20px;
}
.event-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.edit-btn, .delete-btn, .quote-btn {
    background: var(--clay-red);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.edit-btn:hover, .delete-btn:hover, .quote-btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

.delete-btn {
    background-color: var(--btn-primary);
    color: var(--text-light);
}

.delete-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    opacity: 1;
}

.event-card a {
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

main a {
    text-decoration: none;
    color: inherit;
}

.flash-messages {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.alert {
    padding: 15px 40px 15px 15px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.alert-danger {
    background-color: var(--error);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-success {
    background-color: var(--success);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: inherit;
    border: none;
    background: none;
    font-size: 20px;
    padding: 0 5px;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.hero-content .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hero-content .btn, .call-to-action .btn {
    background: var(--clay-red);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.hero-content .btn:hover, .call-to-action .btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* About Our Mission */
.about-mission {
    padding: 50px 20px;
    text-align: center;
}
.about-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.about-mission p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.pillars {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.pillar {
    text-align: center;
    max-width: 200px;
}
.pillar span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.pillar p {
    font-size: 1rem;
}

/* Collections Section */
.collections {
    padding: 50px 20px;
    text-align: center;
}
.collections h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.collection-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.collection-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.collection-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.collection-card p {
    font-size: 1rem;
    line-height: 1.4;
}
.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    text-align: center;
}
.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
blockquote {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px;
    font-style: italic;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Call to Action Section */
.call-to-action {
    padding: 50px 20px;
    text-align: center;
}
.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.call-to-action p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.call-to-action .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.call-to-action .btn {
    padding: 10px 20px;
    background-color: var(--btn-primary);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
.call-to-action .btn:hover {
    background-color: var(--btn-hover);
}

/* Footer Callout */
.footer-callout {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--bg-secondary);
}
.footer-callout h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.footer-callout p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.footer-callout form {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer-callout input {
    padding: 10px;
    border: 1px solid var(--text-secondary);
    border-radius: 5px;
    font-size: 1rem;
}
.footer-callout button {
    padding: 10px 20px;
    background-color: var(--btn-primary);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.footer-callout button:hover {
    background-color: var(--btn-hover);
}