/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

.interview-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.interview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main title style */
.interview-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #e67e22;
    position: relative;
    padding-bottom: 20px;
}

/* Title decoration line */
.interview-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e67e22;
}

/* Interview block container */
.interview-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #e67e22;
}

/* Interview block title */
.interview-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

/* Vertical accent line for h2 */
.interview-block h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #e67e22;
    border-radius: 3px;
}

/* Interview metadata */
.interview-meta {
    display: flex;
    gap: 30px;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Interviewer name style */
.interviewer {
    color: #e67e22;
    font-weight: 600;
}

/* Location style */
.location {
    color: #2c3e50;
    font-style: italic;
}

/* Video container with 16:9 aspect ratio */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Video element style */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Video controls style */
.video-container video::-webkit-media-controls {
    background-color: rgba(0,0,0,0.5);
}

/* Interview description section */
.interview-description {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #e67e22;
}

/* Description text style */
.interview-description p {
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Restaurant information section */
.restaurant-info {
    background: linear-gradient(to right bottom, #fff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Restaurant info title */
.restaurant-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* Restaurant info title decoration */
.restaurant-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #e67e22;
}

/* Restaurant info text */
.restaurant-info p {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Restaurant info strong text */
.restaurant-info strong {
    color: #e67e22;
    font-weight: 600;
    margin-right: 8px;
} 