/* XRXDesign.com */

/* CSS Reset */

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

/* Global Styles */

a:not(.primary-button):not(.cta-button):not(.nav-links a) {
    text-decoration: underline;
    transition: text-decoration-color 0.2s ease;
}

a:not(.primary-button):not(.cta-button):hover {
    text-decoration-color: #FF6B00;
}

:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --background-light: #f3f4f6;
    --spacing-unit: 2rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-unit);
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

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

.nav-container .nav-links a:not(.current) {
    text-decoration: none !important;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links a:not(.current):hover {
    color: #FF6B00;
    text-decoration: underline;
}

.nav-links .current {
    color: #FF6B00;
    pointer-events: none;
    font-weight: 500;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    margin-bottom: 2rem;
}

/* Banner styles */
.banner-container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.banner-container picture {
    width: 100%;
    display: block;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    margin: 3rem auto 3rem;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    color: #FF6B00;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

/* Buttons */
.primary-button, .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #333333;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.primary-button:hover, .cta-button:hover {
    transform: translateY(-2px);
    background-color: #FF6B00;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}



/* Sections */
.section {
    padding: var(--spacing-unit);
    max-width: 1200px;
    margin: 0 auto;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Book Preview */
.book-preview {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
}

.book-cover {
    max-width: 300px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.features {
    list-style: none;
    margin-top: 1rem;
}

.features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Resources Section */
.resources-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .resource-item {
        flex-direction: row;
        gap: 2rem;
        align-items: start;
    }
}

.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.resource-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.resource-text {
    flex: 1;
}

.resource-text h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.resource-description {
    color: #4b5563;
    line-height: 1.6;
}

/* Author Section */
.event-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .event-item {
        flex-direction: row;
        gap: 1.5rem;
        align-items: start;
    }
}

.event-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.event-details {
    flex: 1;
}

.author-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: var(--spacing-unit);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Reviews Section */
.reviews-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.reviews-content blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    display: block;
    text-align: right;
    font-style: normal;
    font-size: 1rem;
    color: #4a5568;
    margin-top: 1rem;
    margin-left: 33.33%;
}

/* Page Header */
.page-header {
    background-color: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.page-title {
    margin-top: 80px;
    padding: 2rem;
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.page-title h1 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.page-title .subtitle {
    color: #4a5568;
    font-size: 1.1rem;
}

/* Events and Articles */
.events-content,
.articles-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.event-item,
.article-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-date {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.event-description,
.article-description {
    line-height: 1.6;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 0.5rem;
        align-items: center;
    }

    .logo {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .nav-links {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .book-preview {
        flex-direction: column;
        text-align: center;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
