/**
 * Bytulfan Artists Frontend Styles
 */

/* ============================================
   GRID WRAPPER - 2 COLUMNS
   ============================================ */
.bytulfan-artists-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* ============================================
   SINGLE ARTIST ITEM
   ============================================ */

.bytulfan-portfolio-item {
	background: white;
	border-radius: 8px;
	overflow: hidden;
}

/* ============================================
   CALLIGRAPHY HEADER (COVER PHOTO)
   ============================================ */

.bytulfan-calligraphy-header {
	background-color: #000;
	padding: 0;
	text-align: center;
	overflow: hidden;
}

.bytulfan-calligraphy-banner {
	background: #000;
	padding: 0;
	margin: 0;
	line-height: 0;
}

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

/* ============================================
   CONTENT SECTION
   ============================================ */

.bytulfan-content-section {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
    padding: 40px 20px;
	gap: 40px;
}

/* ============================================
   TEXT CONTENT
   ============================================ */

.bytulfan-text-content {
	flex: 1;
	text-align: right;
}

.bytulfan-subtitle {
	color: #e8956f;
    font-size: 15px;
    margin-bottom: 10px;
	font-weight: 500;
}

.bytulfan-main-title {
    font-weight: bold;
    color: #2c2c2c;
    font-family: "Tajawal", serif !important;
    margin-bottom: 10px;
    font-size: 38px;
}

.bytulfan-description {
	line-height: 1.8;
	color: #666;
	margin-bottom: 40px;
}

/* ============================================
   BUTTON
   ============================================ */

.bytulfan-cta-button {
    display: inline-block;
    background-color: #e8956f;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.bytulfan-cta-button:hover {
	background-color: #d47d57;
    color: #ffffff;
}

.bytulfan-cta-button.gallery {
    background: #f7f3f0;
    color: #666;
}



/* ============================================
   IMAGE CONTENT
   ============================================ */
.bytulfan-content-section img.bytulfan-profile-image {
    max-width: 200px;
    border-radius: 10px;
    width: 200px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - 1 column */
@media (max-width: 968px) {
	.bytulfan-artists-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Mobile */
@media (max-width: 768px) {
    .bytulfan-content-section {
        flex-direction: column-reverse;
        padding: 40px 20px;
    }

    .bytulfan-main-title {
        font-size: 36px;
    }

	.bytulfan-artists-wrapper {
		padding: 15px;
	}

	.bytulfan-artists-grid {
		gap: 30px;
	}

	.bytulfan-content-section {
		padding: 30px 15px;
	}

	.bytulfan-main-title {
		font-size: 28px;
	}

	.bytulfan-subtitle {
		font-size: 16px;
	}

	.bytulfan-description {
		font-size: 16px;
	}

    .bytulfan-content-section img.bytulfan-profile-image {
        max-width: auto;
        border-radius: 10px;
        width: auto;
    }

    .bytulfan-cta-button {
        width: 100%;
        margin-bottom: 10px;
    }
}

