/* LGBT Festival Monthly Magazine Styles */

:root {
    /* Pride Color Palette */
    --pride-red: #e40303;
    --pride-orange: #ff8c00;
    --pride-yellow: #ffed00;
    --pride-green: #008018;
    --pride-blue: #0080ff;
    --pride-purple: #8b00ff;
    
    /* Magazine Colors */
    --primary-dark: #2d1b69;
    --secondary-dark: #4a4a4a;
    --accent-gold: #ffd700;
    --light-gray: #f8f9fa;
    --medium-gray: #dee2e6;
    --dark-gray: #343a40;
    --white: #ffffff;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --page-padding: 2rem;
    --section-gap: 3rem;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Navigation */
.magazine-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.logo i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--pride-red), var(--pride-orange), var(--pride-yellow), var(--pride-green), var(--pride-blue), var(--pride-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-btn:hover:not(:disabled) {
    background: var(--pride-blue);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
}

.page-indicator {
    font-weight: 500;
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 25px;
}

/* Magazine Container */
.magazine-container {
    margin-top: 80px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

/* Magazine Pages */
.magazine-page {
    display: none;
    min-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    animation: pageSlideIn 0.5s ease-out;
}

.magazine-page.active {
    display: block;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cover Page */
.cover-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--pride-purple) 100%);
    color: white;
    padding: 3rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.issue-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.magazine-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--pride-red), var(--pride-orange), var(--pride-yellow), var(--pride-green), var(--pride-blue), var(--pride-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cover-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cover-hero {
    position: relative;
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.feature-headline {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-subline {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Page Content */
.page-content {
    padding: 3rem;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 3px solid var(--pride-blue);
    padding-bottom: 2rem;
}

.page-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-dark);
    font-weight: 400;
}

/* Editorial Page */
.editorial-content {
    max-width: 800px;
    margin: 0 auto;
}

.editor-note {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.editor-photo .placeholder-avatar {
    width: 80px;
    height: 80px;
    background: var(--pride-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.editor-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

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

.lead-paragraph {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--primary-dark);
}

.highlight-box {
    background: linear-gradient(135deg, var(--pride-blue), var(--pride-purple));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.highlight-box h4 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box li::before {
    content: "🌈";
    position: absolute;
    left: 0;
}

.signature {
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--medium-gray);
}

/* Community Spotlight */
.spotlight-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.spotlight-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spotlight-item:hover {
    transform: translateY(-5px);
}

.spotlight-item.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.spotlight-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.spotlight-item.featured .spotlight-image {
    height: 400px;
}

.spotlight-content {
    padding: 2rem;
}

.spotlight-content h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.spotlight-role {
    color: var(--pride-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.community-stats {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--pride-green), var(--pride-blue));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.community-stats h4 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Festival Guide */
.festival-hero {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.festival-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.festival-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.festival-hero-overlay h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.festival-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.upcoming-events h3 {
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--pride-blue);
}

.event-date {
    text-align: center;
    background: var(--primary-dark);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-details h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-location {
    color: var(--pride-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.festival-tips {
    background: linear-gradient(135deg, var(--pride-orange), var(--pride-red));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.festival-tips h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    gap: 1.5rem;
}

.tip-item {
    text-align: center;
}

.tip-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tip-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Art & Culture */
.art-feature {
    margin-bottom: 3rem;
}

.featured-artist {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.artist-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.artist-name {
    color: var(--pride-purple);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.artist-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.culture-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--pride-blue);
}

.culture-item h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.culture-item i {
    color: var(--pride-blue);
    margin-right: 0.5rem;
}

.upcoming-cultural-events {
    background: linear-gradient(135deg, var(--pride-purple), var(--pride-blue));
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.upcoming-cultural-events h4 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.upcoming-cultural-events ul {
    list-style: none;
    padding: 0;
}

.upcoming-cultural-events li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.upcoming-cultural-events li::before {
    content: "🎨";
    position: absolute;
    left: 0;
}

/* Pride Stories */
.stories-container {
    display: grid;
    gap: 3rem;
}

.story-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
}

.story-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.story-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.story-byline {
    color: var(--pride-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.mini-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mini-story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--pride-green);
}

.mini-story h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.community-wisdom {
    background: linear-gradient(135deg, var(--pride-yellow), var(--pride-orange));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.community-wisdom h4 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.wisdom-quotes {
    display: grid;
    gap: 2rem;
}

.wisdom-quotes blockquote {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    font-style: italic;
    color: var(--dark-gray);
    border-left: 5px solid var(--pride-purple);
}

.wisdom-quotes cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-style: normal;
}

/* Business Directory */
.business-directory {
    display: grid;
    gap: 3rem;
}

.business-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
}

.business-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.business-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.business-type {
    color: var(--pride-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.business-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.business-details {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.business-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-details i {
    color: var(--pride-blue);
    width: 20px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.business-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--pride-green);
}

.business-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-size: 1.3rem;
}

.business-item .business-type {
    margin-bottom: 1rem;
}

.business-item p {
    margin-bottom: 0.5rem;
}

.support-message {
    background: linear-gradient(135deg, var(--pride-blue), var(--pride-purple));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.support-message h4 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.support-message p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Health & Wellness */
.wellness-content {
    display: grid;
    gap: 3rem;
}

.wellness-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
}

.wellness-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.wellness-text h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.wellness-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.wellness-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wellness-topic {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--pride-green);
}

.wellness-topic h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.wellness-topic i {
    color: var(--pride-green);
    margin-right: 0.5rem;
}

.wellness-topic ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.wellness-topic li {
    margin-bottom: 0.5rem;
}

.support-groups {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.emergency-resources {
    background: linear-gradient(135deg, var(--pride-red), var(--pride-orange));
    color: white;
    padding: 2rem;
    border-radius: 20px;
}

.emergency-resources h4 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.emergency-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.emergency-item h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.emergency-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Resources & Support */
.resources-content {
    display: grid;
    gap: 3rem;
}

.community-centers h3,
.organizations h3,
.online-resources h3,
.apps-tools h3,
.emergency-contact h3 {
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.community-centers h3 i,
.organizations h3 i,
.online-resources h3 i,
.apps-tools h3 i,
.emergency-contact h3 i {
    color: var(--pride-blue);
}

.center-list {
    display: grid;
    gap: 2rem;
}

.center-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--pride-blue);
}

.center-item h4 {
    color: var(--primary-dark);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.center-details {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.center-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.center-details i {
    color: var(--pride-blue);
    width: 20px;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.org-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--pride-green);
}

.org-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.org-item p {
    margin-bottom: 0.5rem;
}

.online-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.resource-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--pride-purple);
}

.resource-category h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.resource-category ul {
    list-style: none;
    padding: 0;
}

.resource-category li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-category li::before {
    content: "🔗";
    position: absolute;
    left: 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.app-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--pride-yellow);
}

.app-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.emergency-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background: linear-gradient(135deg, var(--pride-red), var(--pride-orange));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Back Cover */
.back-cover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--pride-purple) 100%);
    color: white;
    padding: 3rem;
    min-height: 100vh;
}

.back-cover-content {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.magazine-info {
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2rem;
}

.magazine-info h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.subscription-info {
    text-align: center;
}

.subscription-info h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscription-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sub-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sub-option h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.subscribe-text {
    margin-top: 1rem;
    font-weight: 500;
}

.contact-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--accent-gold);
    width: 20px;
}

.social-media {
    margin-top: 1.5rem;
    text-align: center;
}

.social-media h4 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-icons i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.community-features {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.community-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.features-text h4 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.features-text ul {
    list-style: none;
    padding: 0;
}

.features-text li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.credits {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
}

.credits h4 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.credits p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.legal {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .magazine-container {
        padding: 1rem;
    }
    
    .page-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo span {
        display: none;
    }
    
    .magazine-title {
        font-size: 2.5rem;
    }
    
    .cover-subtitle {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 1.5rem;
    }
    
    .cover-page {
        padding: 2rem 1.5rem;
    }
    
    .cover-features {
        grid-template-columns: 1fr;
    }
    
    .featured-artist,
    .business-featured,
    .wellness-feature,
    .story-featured {
        grid-template-columns: 1fr;
    }
    
    .festival-content {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .spotlight-item.featured {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .online-list {
        grid-template-columns: 1fr;
    }
    
    .back-cover-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .magazine-title {
        font-size: 2rem;
    }
    
    .cover-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 1rem;
    }
    
    .cover-page {
        padding: 1.5rem 1rem;
    }
    
    .stats-grid,
    .tips-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-options {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .magazine-nav {
        display: none;
    }
    
    .magazine-page {
        display: block !important;
        page-break-after: always;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
    }
    
    .magazine-page:last-child {
        page-break-after: auto;
    }
    
    body {
        background: white;
    }
    
    .magazine-container {
        margin: 0;
        padding: 0;
        max-width: none;
    }
}