/* style/user-community-experience-sharing.css */

/* Base Styles for the page */
.page-user-community-experience-sharing {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for readability on light backgrounds */
    background-color: #f9f9f9; /* Light background for main content */
}

/* Container for responsive layout */
.page-user-community-experience-sharing__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-user-community-experience-sharing__hero {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-community-experience-sharing__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-user-community-experience-sharing__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-user-community-experience-sharing__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-user-community-experience-sharing__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-user-community-experience-sharing__section:last-of-type {
    border-bottom: none;
}

.page-user-community-experience-sharing__section--intro {
    background-color: #ffffff;
}

.page-user-community-experience-sharing__section--types {
    background-color: #f2f7fc; /* Lighter blue-ish background */
}

.page-user-community-experience-sharing__section--stories {
    background-color: #ffffff;
}

.page-user-community-experience-sharing__section--guide {
    background-color: #f2f7fc;
}

.page-user-community-experience-sharing__section--cta {
    background-color: #003366; /* Dark blue background for CTA */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-user-community-experience-sharing__section-title {
    font-size: 2.2em;
    color: #003366; /* Dark blue for section titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-user-community-experience-sharing__section--cta .page-user-community-experience-sharing__section-title {
    color: #FFCC00; /* Gold for CTA section title */
}

.page-user-community-experience-sharing__sub-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-user-community-experience-sharing__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444444;
}

.page-user-community-experience-sharing__section--cta .page-user-community-experience-sharing__paragraph {
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Images within content */
.page-user-community-experience-sharing__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: block; /* Center block images */
}

.page-user-community-experience-sharing__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.page-user-community-experience-sharing__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-user-community-experience-sharing__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}


/* Lists */
.page-user-community-experience-sharing__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-user-community-experience-sharing__list--numbered {
    list-style: decimal;
}

.page-user-community-experience-sharing__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444444;
}

.page-user-community-experience-sharing__list-item strong {
    color: #003366;
}

/* Buttons */
.page-user-community-experience-sharing__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-user-community-experience-sharing__btn--primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFCC00;
}

.page-user-community-experience-sharing__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-user-community-experience-sharing__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-user-community-experience-sharing__btn--secondary:hover {
    background-color: #003366;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-user-community-experience-sharing__section--cta .page-user-community-experience-sharing__btn--secondary {
    color: #FFCC00;
    border-color: #FFCC00;
}
.page-user-community-experience-sharing__section--cta .page-user-community-experience-sharing__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-user-community-experience-sharing__btn--tertiary {
    background-color: #336699; /* Medium blue */
    color: #ffffff;
    border: 2px solid #336699;
}

.page-user-community-experience-sharing__btn--tertiary:hover {
    background-color: #1a4d80; /* Darker medium blue */
    transform: translateY(-2px);
}

.page-user-community-experience-sharing__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Links */
.page-user-community-experience-sharing__link {
    color: #003366; /* Dark blue for inline links */
    text-decoration: none;
    font-weight: bold;
}

.page-user-community-experience-sharing__link:hover {
    text-decoration: underline;
    color: #FFCC00; /* Gold on hover */
}

/* Story Grid */
.page-user-community-experience-sharing__story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-user-community-experience-sharing__story-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-user-community-experience-sharing__story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-user-community-experience-sharing__story-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-user-community-experience-sharing__story-author {
    font-style: italic;
    color: #666666;
    margin-bottom: 10px;
}

.page-user-community-experience-sharing__story-content {
    font-size: 1em;
    color: #555555;
}

/* Clearfix for floated images */
.page-user-community-experience-sharing__section::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-user-community-experience-sharing__hero-title {
        font-size: 2.2em;
    }
    .page-user-community-experience-sharing__section-title {
        font-size: 1.8em;
    }
    .page-user-community-experience-sharing__sub-title {
        font-size: 1.5em;
    }
    .page-user-community-experience-sharing__image--left,
    .page-user-community-experience-sharing__image--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-user-community-experience-sharing__hero {
        padding: 60px 0;
    }
    .page-user-community-experience-sharing__hero-title {
        font-size: 2em;
    }
    .page-user-community-experience-sharing__hero-subtitle {
        font-size: 1.1em;
    }
    .page-user-community-experience-sharing__section {
        padding: 40px 0;
    }
}