* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Header Section - Full Width */
.header {
    width: 100%;
    background: url('../images/header-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    padding: 40px 0;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
    align-items: end;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.magazine-cover {
    flex-shrink: 0;
    position: relative;
}

.magazine-cover img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.download-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(220,53,69);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgb(233, 46, 65);
    transform: translateX(-50%) translateY(-2px);
}

.header-content {
    flex: 1;
}

.header-content h1 {
    font-size: 2em;
    color: rgb(220,53,69);
    margin-bottom: 10px;
    font-weight: 600;
}

.header-content h2 {
    font-size: 1em;
    color: rgb(220,53,69);
    margin-bottom: 20px;
}

.header-content p {
    font-size: 0.8em;
    line-height: 1.8;
    color: #000000;
}

/* Articles Section - Full Width */
.articles-section {
    padding: 40px;
}

/* Interviews Content */
.interviews-content {
    display: flex;
    gap: 40px;
    padding: 0 40px 40px;
}

.interviews-left {
    flex: 1;
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Section Titles */
.section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: rgb(220,53,69);
    letter-spacing: 2px;
}

/* Articles Container */
.articles-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.article-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-type {
    font-size: 0.9em;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.article-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* Left Column - Large Article */
.article-large-left {
    width: 300px;
    height: 500px;
}

/* Center Column */
.center-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-main-center {
    height: 240px;
}

.bottom-row {
    display: flex;
    gap: 20px;
}

.article-bottom-left,
.article-bottom-right {
    flex: 1;
    height: 240px;
}

/* Right Column */
.right-column {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-right-top {
    height: 240px;
}

.article-right-bottom {
    height: 240px;
}

/* Interviews Grid */
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.interview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.interview-content {
    padding: 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.interview-content p {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.interview-author {
    font-weight: bold;
    color: #3498db;
}

/* Sidebar - Advertise */
.advertise-section {
    background: #2c3e50;
    border-radius: 15px;
    padding: 30px;
    color: white;
}

.advertise-section h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    color: rgb(233, 46, 65);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.media-kit-btn {
    width: 100%;
    background: transparent;
    color: rgb(233, 46, 65);
    border: 2px solid rgb(233, 46, 65);
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.media-kit-btn:hover {
    background: rgb(235, 86, 101);
    color: white;
}
.alert-danger{
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 12px;
    margin-bottom:10px;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 12px;
    margin-bottom:10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
    
    .interviews-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .interviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interview-card {
        height: 380px;
    }
    
    .articles-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .article-large-left {
        width: 100%;
        height: 300px;
    }
    
    .center-column {
        width: 100%;
    }
    
    .article-main-center {
        height: 250px;
    }
    
    .bottom-row {
        flex-direction: column;
    }
    
    .article-bottom-left,
    .article-bottom-right {
        height: 200px;
    }
    
    .right-column {
        width: 100%;
    }
    
    .article-right-top,
    .article-right-bottom {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .articles-section {
        padding: 20px;
    }
    
    .interviews-content {
        padding: 0 20px 20px;
        flex-direction: column;
    }
    
    .articles-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-large-left {
        width: 100%;
        height: 250px;
    }
    
    .center-column {
        width: 100%;
    }
    
    .article-main-center {
        height: 200px;
    }
    
    .bottom-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-bottom-left,
    .article-bottom-right {
        height: 180px;
    }
    
    .right-column {
        width: 100%;
    }
    
    .article-right-top,
    .article-right-bottom {
        height: 180px;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-card {
        height: 350px;
    }
    
    .header-content h1 {
        font-size: 2em;
    }
    
    .article-title {
        font-size: 1em;
    }
    
    .article-arrow {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }
    
    .article-arrow svg {
        width: 20px;
        height: 20px;
    }
} 