/*
Theme Name: Society Theme
Author: Assistant
Description: Custom Single Page Society Theme
Version: 1.0.0
*/

:root {
    --primary-color: #be2c36;
    /* Deep Red */
    --primary-color-hover: #a1232d;
    --text-color: #2b2b2b;
    --text-light: #666666;
    --bg-color: #f7f9fc;
    --bg-white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    color: #fff;
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-color);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 8px 24px;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 45px;
    height: 45px;
    background-color: #eee;
    border-radius: 50%;
    background-image: url('https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?ixlib=rb-1.2.1&auto=format&fit=crop&w=100&q=80');
    background-size: cover;
    background-position: center;
}

.site-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    font-weight: 500;
    font-size: 0.95rem;
}

.primary-nav a:not(.btn):hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #1a2238;
    background-image: linear-gradient(rgba(26, 34, 56, 0.8), rgba(26, 34, 56, 0.8)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    border-bottom: 5px solid var(--primary-color);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-white);
    padding: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 60px;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

/* General Sections */
section {
    padding: 60px 0;
}

section>.container>h2,
.about-text h2,
.past-events-col h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* About Section */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-image .placeholder-image {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: var(--card-shadow);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: #eee;
    background-size: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-card:nth-child(1) .team-avatar {
    background-image: url('https://images.unsplash.com/photo-1531384441138-2736e62e0919?ixlib=rb-1.2.1&auto=format&fit=crop&w=200&q=80');
}

.team-card:nth-child(2) .team-avatar {
    background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-1.2.1&auto=format&fit=crop&w=200&q=80');
}

.team-card:nth-child(3) .team-avatar {
    background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=200&q=80');
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.linkedin-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #0077b5;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.event-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.event-card.dark-bg {
    background-color: #1a2238;
    color: #fff;
    position: relative;
}

.event-card.stock-sim {
    background-image: linear-gradient(rgba(26, 34, 56, 0.8), rgba(26, 34, 56, 0.9)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
}

.event-card.finance-quiz {
    background-image: linear-gradient(rgba(26, 34, 56, 0.7), rgba(26, 34, 56, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
}

.event-card.light-bg {
    background-color: var(--bg-white);
}

.event-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card.dark-bg h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.event-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.event-image-top {
    height: 180px;
    background-image: url('https://images.unsplash.com/photo-1540317580384-e5d4380db565?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.event-card.light-bg h3 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.view-all-wrapper {
    text-align: center;
}

/* Bottom Grids Section */
.bottom-grids-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.past-event-img {
    height: 120px;
    border-radius: 8px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.past-event-img:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.past-event-img:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.past-event-img:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.past-event-img:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.past-event-img:nth-child(5) {
    background-image: url('https://images.unsplash.com/photo-1515162816999-a0c47dc192f7?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.past-event-img:nth-child(6) {
    background-image: url('https://images.unsplash.com/photo-1523580494112-071d38458a4c?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
}

.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-card,
.contact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.join-card {
    background: #faf8f5;
}

.join-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.join-card .highlight {
    font-weight: 600;
    margin-bottom: 5px;
}

.join-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-methods .icon {
    width: 32px;
    height: 32px;
    background-color: #ffeaea;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.brand-text {
    color: #e53935;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Featured Event Section */
.featured-card {
    background-color: #1a2238;
    background-image: linear-gradient(to right, rgba(26, 34, 56, 0.95) 40%, rgba(26, 34, 56, 0.6)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: right center;
    border-radius: var(--border-radius);
    padding: 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.featured-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.featured-content .btn {
    margin-top: 15px;
}

.featured-image {
    width: 120px;
    height: 120px;
    background-image: url('https://images.unsplash.com/photo-1578269174936-2709b6aeb913?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Opportunities Section */
.opportunities-list {
    list-style: none;
    padding: 0;
}

.opportunities-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.opportunities-list li::before {
    content: "•";
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -6px;
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.quote-icon.right {
    top: auto;
    bottom: -20px;
    left: auto;
    right: 20px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Follow Us Section */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-icon.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.facebook {
    background-color: #3b5998;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-white);
    padding: 18px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.2s;
}

.faq-item:hover {
    background-color: #fcfcfc;
}

.faq-item .arrow {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {

    .about-inner,
    .bottom-grids-inner {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .primary-nav {
        display: none;
    }
}

@media (max-width: 600px) {

    .team-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        justify-content: space-between;
        gap: 0;
    }

    .stat-item h2 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .featured-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .featured-image {
        align-self: flex-end;
    }
}