/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #34495e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e1e8ed;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-bar {
    background-color: var(--light-bg);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-light);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ad-disclosure {
    font-style: italic;
}

header {
    background-color: var(--white);
    border-bottom: 3px solid var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.3px;
}

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

/* Magazine Layout Styles */
.hero-magazine {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Multi-column Magazine Sections */
.magazine-section {
    padding: 80px 0;
}

.magazine-section.alt-bg {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.two-column-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
}

.three-column-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.column-third {
    flex: 1;
    min-width: 280px;
}

/* Magazine Cards */
.magazine-card {
    background-color: var(--white);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.magazine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.magazine-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price-tag {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--secondary-color);
}

/* Editorial Content Block */
.editorial-block {
    background-color: var(--white);
    padding: 50px;
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 40px;
}

.editorial-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.editorial-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

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

/* Form Styles */
.form-container {
    background-color: var(--white);
    padding: 50px;
    border: 2px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 50px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Image Containers */
.image-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--light-bg);
    position: relative;
}

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

/* Feature Grid */
.feature-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-year {
    flex: 0 0 120px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-content {
    flex: 1;
    padding: 25px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-button {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
    font-weight: 600;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #b89850;
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-reject:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Contact Info Styles */
.contact-info-box {
    background-color: var(--light-bg);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary-color);
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 150px;
    font-family: 'Arial', sans-serif;
}

.info-value {
    color: var(--text-dark);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.thanks-container .cta-button {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .two-column-layout {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .footer-columns {
        flex-direction: column;
    }

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

    nav ul {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}