/* Main Styles for MMA Fundamentals Course Landing Page */

/* Base Styles */
:root {
    --primary-color: #D20A0A;
    --secondary-color: #333333;
    --accent-color: #FFD700;
    --light-color: #FFFFFF;
    --dark-color: #000000;
    --gray-color: #F5F5F5;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #b00808;
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: #222222;
    color: var(--light-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Instructor Section */
.instructor {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.instructor-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.instructor-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.instructor-text {
    flex: 1;
}

.instructor-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Testimonial Quote Styling */
.testimonial-quote {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

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

.testimonial-quote .quote-author {
    font-weight: 700;
    text-align: right;
    color: var(--primary-color);
}

.credentials-list {
    margin-bottom: 2rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.credentials-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.social-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-color);
}

/* Course Overview Section */
.course-overview {
    padding: 100px 0;
}

.parts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.part-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.part-card:hover {
    transform: translateY(-10px);
}

.part-number {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.part-card h3 {
    padding: 20px 20px 10px;
}

.part-card p {
    padding: 0 20px 20px;
}

.part-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.preview-button {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    z-index: 1;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium .pricing-header {
    background-color: var(--dark-color);
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.pricing-header h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-cta {
    padding: 0 20px 30px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    font-style: normal;
    opacity: 0.8;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--gray-color);
}

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

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle i {
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/untitled (265 of 310)(b).jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    margin-right: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .instructor-content {
        flex-direction: column;
    }
    
    .instructor-image, .instructor-text {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--box-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured, .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card.featured:hover, .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
}

/* Add specific styling for the logos container */
.logos {
    display: flex;
    align-items: center;
}

/* Add specific styling for the footer logos container */
.footer-logos {
    display: flex;
    align-items: center;
}
