/* CSS for architect/bureau detail page */

/* General container */
.architect-detail-page {
    padding: 50px;
}

/* Back link */
.back-link {
    margin-bottom: 20px;
}


.button-back {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: 'IBM Plex Sans' !important;
	background-color: transparent !important;
	color: #F04B4B !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 18px !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius:0px !important;
	border: #F04B4B 1px solid !important;
}

.button-back:before {
    font-size: 17px;
    line-height: 34px;
	font-family: "Font Awesome 6 Free" !important;
	font-weight: 900;
	content: "\f060";
    margin-right: 8px;
}

/* Hero section with zigzag background */
.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.bureau-title {
    font-size: 3em;
    margin: 0;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Main content layout */
.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.content-main {
    flex: 1 1 65%;
}

.content-sidebar {
    flex: 1 1 30%;
}

/* Section styling */
.section {
    margin-bottom: 30px;
}

.section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Contact card */
.contact-card {
	background-color: #EBEBE6;
	padding: 60px 60px;
	border-radius: 0px;
	margin-bottom: 60px;
}

.contact-card h2 {
	font-family: IBM Plex Sans;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 20px;
	line-height: 22px;
	font-weight: 500;
	padding-bottom: 10px;
	border-bottom: 2px solid #ffffff;
}
	

.contact-item {
    margin-bottom: 20px;
}


.contact-item p {
	padding-bottom:0px;
}

.contact-item h3 {
	font-weight: 700 !important;
    margin-bottom: 5px;
	font-family: 'IBM Plex Serif' !important;
	font-style: normal !important;
	font-size: 17px !important;
	line-height: 22px !important;
	color: #2D2337 !important;
}

.contact-item a {
    color: #F04B4B;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Email button */
.contact-button {
    margin-top: 30px;
}

.button.button-primary {
	display: inline-block;
	padding: 12px 25px;
	background-color: #f04b4b;
	color: #fff !important;
	text-decoration: none;
	border-radius: 0px;
	font-weight: 600;
	font-family: 'IBM Plex Sans';
	text-transform: uppercase;
	font-size: 16px;
	transition: background-color 0.2s;
}

.button.button-primary:hover {
    background-color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    
    .content-main, 
    .content-sidebar {
        width: 100%;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .bureau-title {
        font-size: 2.2em;
    }
} 