/* Additional styles for About, Contact, and Equipment Advice pages */

/* Common styles for content containers */
.about-container,
.contact-container,
.advice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* About page styles */
.about-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #fff;
    color: #000;
}

.about-section.inverted {
    background-color: #000;
    color: #fff;
}

.about-section h2 {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid currentColor;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.about-section.inverted .service-card {
    border: 3px solid #fff;
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.team-member p {
    opacity: 0.8;
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-block {
    text-align: center;
    padding: 1.5rem;
    border: 3px solid #000;
    background-color: #fff;
}

.contact-block i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.contact-block h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 3px solid #000;
    background-color: #000;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #333;
    color: #fff;
}

.contact-form-container {
    background-color: #000;
    color: #fff;
    padding: 2rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 3px solid #333;
    background-color: #111;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
    color: #fff;
}

.map-container {
    margin-top: 3rem;
}

.map-container h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.map {
    border: 3px solid #000;
    height: 450px;
    overflow: hidden;
}

/* Equipment Advice page styles */
.advice-intro {
    margin-bottom: 4rem;
}

.advice-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.advice-text {
    flex: 1.5;
}

.advice-text h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.advice-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advice-image {
    flex: 1;
}

.advice-image img {
    width: 100%;
    height: auto;
    border: 3px solid #000;
}

.event-types {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background-color: #000;
    color: #fff;
}

.event-types h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-card {
    background-color: #fff;
    color: #000;
    border: 3px solid #fff;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.event-card ul {
    text-align: left;
    margin-bottom: 2rem;
    list-style-position: inside;
}

.event-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.event-card .link {
    display: inline-block;
    background-color: #000;
    color: #fff;
    border: none;
}

.event-card .link:hover {
    background-color: #333;
}

.advice-process {
    margin-bottom: 4rem;
}

.advice-process h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    border: 3px solid #000;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.testimonials {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background-color: #000;
    color: #fff;
}

.testimonials h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial {
    text-align: center;
    padding: 2rem;
}

.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-weight: bold;
    font-style: normal;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 3px solid #000;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #000;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .link {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    font-size: 1.2rem;
}

.cta-section .link:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content,
    .advice-content {
        flex-direction: column;
    }

    .about-image,
    .advice-image {
        order: -1;
    }

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

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

    .about-section h2,
    .contact-form-container h2,
    .advice-text h2,
    .event-types h2,
    .advice-process h2,
    .testimonials h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-section,
    .event-card,
    .process-step {
        padding: 1.5rem;
    }

    .about-image img {
        height: 250px;
    }

    .team-member img {
        height: 200px;
    }
}
